/* Genel Ayarlar */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}
a {
    text-decoration: none;
    color: inherit;
}

/* Menü (Header) */
header {
    background-color: #ffffff;
    color: #2c3e50;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border-bottom: 1px solid #f1f5f9;
}
.menu-btn {
    display: none;
    font-size: 1.8rem;
    color: #e67e22;
    cursor: pointer;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 100px;
    width: auto;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}
nav ul li a {
    transition: all 0.3s;
    font-weight: 500;
}
nav ul li a:not(.btn) {
    color: #2c3e50;
}
nav ul li a:not(.btn):hover {
    color: #e67e22;
}

/* Hero Bölümü */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
}
.btn {
    padding: 12px 30px;
    background-color: #e67e22;
    color: white;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}
.btn:active {
    transform: translateY(0);
}

/* Sayfa Bölümleri */
.section {
    padding: 4rem 5%;
    text-align: center;
}
.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* Galeri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}
.gallery-item:hover {
    transform: scale(1.03);
}

/* Odalar */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: left;
    border: 1px solid #eee;
}
.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.room-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.room-content {
    padding: 20px;
}
.room-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}
.room-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 50px;
}
.room-price {
    color: #e67e22;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Restoran Menü Sekmeleri */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 25px;
    background: #e2e8f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s;
}
.tab-btn.active, .tab-btn:hover {
    background: #e67e22;
    color: white;
}
.menu-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.menu-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #cbd5e0;
    padding: 15px 0;
    gap: 20px;
}
.menu-item:last-child {
    border-bottom: none;
}
.menu-item h4 {
    color: #2d3748;
    font-size: 1.15rem;
}
.menu-item p {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 5px;
}
.menu-price {
    font-weight: bold;
    color: #e67e22;
    font-size: 1.2rem;
    white-space: nowrap;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İletişim Formu */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
.contact-box {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 8px rgba(230, 126, 34, 0.2);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 5% 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3 {
    margin-bottom: 15px;
    color: #e67e22;
}
.footer-section p, .footer-section a {
    color: #bdc3c7;
    margin-bottom: 10px;
    display: block;
}
.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #bdc3c7;
    transition: color 0.3s;
    display: inline-block;
}
.social-links a:hover {
    color: #e67e22;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    padding-top: 15px;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* WhatsApp Canlı Destek Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }
    .menu-btn {
        display: block;
    }
    nav {
        width: 100%;
    }
    nav ul {
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 15px;
        padding-top: 0;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
    }
    nav ul.show {
        max-height: 500px;
        opacity: 1;
        padding-top: 15px;
    }
    nav ul li a {
        font-size: 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}