/* Erboy Styke Header */
:root {
    --primary-color: #B99B6B;
    /* Gold/Bronze like Erboy */
    --text-dark: #333;
    --text-light: #fff;
    --header-height: 90px;
    --header-scrolled-height: 70px;
}

body {
    padding-top: 0;
    /* Hero covers top */
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #ffffff;
    /* Solid white background */
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    /* If the logo is white, we might need to invert it for the white background. 
       Safest is to try it as is, but if the user provided image has dark text, 
       we assume the logo file is appropriate or we force dark if it was white. 
       Let's assume we need to ensure it's visible. */
}

/* Menu Items */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu li a {
    text-decoration: none;
    color: #333333;
    /* Dark text */
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
}

/* Hover & Active State (Gold) */
.nav-menu li a:hover,
.nav-menu li a.active {
    color: #C19B76;
    /* Gold/Bronze color */
}

/* Underline effect for hover */
.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    color: var(--primary-color) !important;
}

.btn-book-now {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book-now:hover {
    background: #a38659;
    transform: translateY(-2px);
}

/* Language Button */
.btn-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lang:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Mobile Toggle */
.btn-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.btn-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.navbar.scrolled .btn-menu-toggle span {
    background-color: var(--text-dark);
}

@media (max-width: 992px) {
    .nav-menu-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu-container.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav-menu li a {
        font-size: 18px;
        color: #333;
    }

    .btn-menu-toggle {
        display: flex;
        flex-direction: column;
        z-index: 1001;
    }

    .btn-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .btn-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .btn-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-buttons {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Hide reservation button text on mobile, show icon only */
    .btn-book-now {
        padding: 10px 12px;
        font-size: 0;
    }

    .btn-book-now i {
        font-size: 16px;
        margin: 0;
    }

    .btn-lang {
        padding: 8px 10px;
        font-size: 12px;
    }

    .logo-image {
        height: 50px;
    }

    /* Hide hero info widget on mobile */
    .hero-info-widget {
        display: none;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #bf926a, #d4a574);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(191, 146, 106, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #bf926a;
    border: 2px solid #bf926a;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #bf926a;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-image {
    height: 80px;
    /* 2x büyütüldü - 40px'den 80px'e */
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #bf926a;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-reserve {
    background: #bf926a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-reserve:hover {
    background: #d4a574;
}

.btn-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.btn-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-inner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    /* Resetting absolute positioning */
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
    text-align: left;
    /* Ensure left alignment */
    align-self: center;
    /* keep text centered vertically */
}

/* Hero Widget Styles */
.hero-info-widget {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    /* Position Logic: Vertically Centered Flex Item */
    position: relative;
    /* Reset absolute */
    align-self: center;
    /* Center vertically with the text */
    margin: 0;
    /* No offsets */
    z-index: 10;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.hero-info-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('images/kayseri_manzara.jpg');
    background-size: cover;
    background-position: center;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: #f8f9fa;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.story-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #bf926a;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Kayseri Gallery Section */
.kayseri-gallery {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.gallery-item {
    min-width: 350px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.gallery-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    border: 2px solid #bf926a;
    background: transparent;
    color: #bf926a;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #bf926a;
    color: white;
    transform: scale(1.1);
}


/* Hotel Gallery (Grid) */
.hotel-gallery {
    padding: 80px 0;
    background: white;
}

.hotel-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
}

.gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: 16px;
    font-size: 0.95rem;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #2c3e50;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Rooms Section */
.rooms {
    padding: 100px 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.room-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    height: 250px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

.room-content {
    padding: 30px;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.room-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Rooms: Extras */
.room-meta {
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 500;
}

.room-image-single {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url('images/tek.jpg');
}

.room-image-double {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url('images/cift.jpg');
}

.room-image-family {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url('images/aile.jpg');
}

/* Dining Section */
.dining {
    padding: 100px 0;
    background: white;
}

.dining .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dining-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.dining-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.dining-image {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

/* Room Detail Pages */
.room-hero {
    padding: 160px 0 80px;
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
}

.room-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.room-hero .container {
    position: relative;
    z-index: 1;
}

.room-hero-single {
    background-image: url('images/tek.jpg');
}

.room-hero-double {
    background-image: url('images/cift.jpg');
}

.room-hero-family {
    background-image: url('images/aile.jpg');
}

.room-detail {
    padding: 80px 0;
    background: #fff;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.room-detail-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.room-detail-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.amenities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 20px;
}

.amenities li {
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities i {
    color: #27ae60;
}

.room-detail-image {
    height: 380px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}





/* Sustainability Section */
.sustainability {
    padding: 100px 0;
    background: #f8f9fa;
}

.sustainability-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sustainability-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #555;
}

.sustainability-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #bf926a;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #bf926a, #d4a574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item span {
    font-size: 1.1rem;
    color: #2c3e50;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 2px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #bf926a;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #bf926a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Show nav-menu inside active container */
    .nav-menu-container.active .nav-menu {
        display: flex;
    }

    .btn-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
        padding-right: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo-image {
        height: 80px;
    }

    .logo-image {
        height: 50px;
    }

    /* Hide hero info widget */
    .hero-info-widget {
        display: none !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 200px;
    }

    .dining .container,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .room-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .rooms-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .sustainability-stats {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .gallery-item {
        min-width: 280px;
    }

    .gallery-controls {
        margin-top: 30px;
    }

    /* Mobile Reservation Bar */
    .reservation-bar {
        position: relative;
        padding: 20px 15px;
    }

    .reservation-form {
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }

    .res-item {
        width: 100%;
    }

    .res-button {
        width: 100%;
        margin-top: 10px;
    }

    .res-button button {
        width: 100%;
    }

    /* Hero adjustments for mobile */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-bottom: 0;
        flex-direction: column;
    }

    .hero-inner-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 120px 20px 40px;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo-image {
        height: 60px;
    }

    .logo-image {
        height: 60px;
        /* 2x büyütüldü - 30px'den 60px'e */
    }

    .container {
        padding: 0 15px;
    }
}

/* Reservation Bar */
.reservation-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 20px 0;
    z-index: 10;
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-form {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    padding: 0 20px;
}

.res-item {
    flex: 1;
    position: relative;
    z-index: 1;
}

.res-item:focus-within {
    z-index: 100;
}

.res-item label {
    display: block;
    color: #fff;
    font-size: 11px;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.input-wrap {
    background: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 50px;
}

.input-wrap i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.input-wrap input,
.input-wrap select {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    background: transparent;
    cursor: pointer;
}

/* Date Input Fix for Webkit */
.input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.res-button {
    flex: 1;
    max-width: 250px;
}

.res-button button {
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    border-radius: 2px;
}

.res-button button:hover {
    background: #a38659;
}

@media (max-width: 992px) {
    .reservation-form {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .res-item,
    .res-button {
        width: 100%;
        max-width: none;
    }

    .reservation-bar {
        position: relative;
        background: #1a1a1a;
    }
}

/* Info Widget */
.info-widget {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    height: 40px;
    align-items: center;
}

.info-item {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.info-item i {
    color: var(--primary-color);
}

.navbar.scrolled .info-widget {
    border-left-color: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .info-item {
    color: #333;
}

@media (max-width: 1100px) {
    .info-widget {
        display: none;
    }
}

/* Hero Info Widget */
.hero-info-widget {
    position: absolute;
    top: 150px;
    /* Adjusted based on user's box */
    right: 10%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.hero-info-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

/* Cleanup old navbar widget styles if any remain */
.info-widget {
    display: none !important;
}

@media (max-width: 992px) {
    .hero-info-widget {
        top: 100px;
        right: 20px;
        padding: 15px;
    }
}