/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0e2a43;      /* deep aegean navy */
    --primary-blue: #2a6d96;      /* mediterranean blue */
    --primary-light: #5ea8cf;     /* clear sea blue */
    --accent-gold: #d2b076;       /* sun-washed gold */
    --logo-border: #e7cea0;       /* soft sandy gold border */
    --white: #ffffff;
    --black: #000000;
    --sand: #f6f0e5;
    --gray-light: #f8f8f8;
    --gray: #e0e0e0;
    --gray-dark: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 8px 20px rgba(16, 47, 75, 0.09);
    --shadow-lg: 0 14px 34px rgba(16, 47, 75, 0.13);
    --radius: 14px;
    --radius-lg: 24px;
    --surface: #fdfaf4;
    --surface-soft: #f5edde;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-brand: 'Cinzel', serif;
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 130px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: #fffdf8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p { margin-bottom: 1rem; color: rgba(0,0,0,0.7); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), #19466b);
    color: var(--white);
    box-shadow: var(--shadow);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0d2840, #12334f);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.9);
}
.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-4px);
}

.btn-block {
    width: 100%;
}

.highlight { color: var(--primary-light); }

/* ===== HEADER (fixed, primary-dark) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(14, 42, 67, 0.93);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - bigger with custom border */
.logo {
    z-index: 1002;
    position: relative;
    margin-left: -18px;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo-image {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--logo-border);
    box-shadow: 0 0 0 4px rgba(210, 176, 118, 0.2);
    flex-shrink: 0;
}
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logo-text-container {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .logo-text-container { white-space: normal; }
}
.logo-main {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 2.4px;
    line-height: 1;
    text-transform: uppercase;
}

.brand-name {
    font-family: var(--font-brand);
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* Keep logo treatment in header/footer unchanged */
.header .logo-main.brand-name,
.footer .logo-main.brand-name {
    font-family: var(--font-brand);
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

/* Section-specific brand styling (outside header/footer) */
.about .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none;
    color: var(--primary-dark);
}

.menu-preview .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
    color: var(--accent-gold);
}

.cta-section .brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: none;
    color: var(--accent-gold);
}
.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Reserve button – using primary-light with primary-dark text */
.book-btn {
    background-color: var(--primary-light) !important;
    color: var(--primary-dark) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    border: 2px solid var(--primary-light) !important;
}
.book-btn:hover {
    background-color: transparent !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
    transform: translateY(-3px);
}

/* Mobile menu overlay */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-dark);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 1001;
    }
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    .nav-item { margin: 0; width: auto; }
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 40px;
    }
    .nav-link:hover { background-color: rgba(255,255,255,0.1); }
    .nav-link::after { display: none; }
    .book-btn {
        font-size: 1.2rem !important;
        padding: 10px 30px !important;
        border-radius: 40px !important;
        margin-top: 0.5rem;
    }
    .book-btn:hover {
        background-color: var(--primary-light) !important;
        color: var(--primary-dark) !important;
        border-color: var(--primary-light) !important;
    }
}

.nav-item { position: relative; }
.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--primary-light); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    border: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}
.hamburger:focus-visible {
    outline: 3px solid rgba(94, 168, 207, 0.85);
    outline-offset: 6px;
    border-radius: 12px;
}
.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: var(--primary-light);
    transition: var(--transition);
}
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 992px) { .hamburger { display: flex; } }

/* ===== HERO - offset ===== */
.hero {
    height: 88vh;
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center 24%;
    filter: contrast(1.18) saturate(1.1) brightness(0.88);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 22, 36, 0.64), rgba(8, 22, 36, 0.26) 42%, rgba(8, 22, 36, 0.1));
    pointer-events: none;
    z-index: 1;
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 28%, rgba(210, 176, 118, 0.22), transparent 54%);
    pointer-events: none;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(120px, 15vh, 200px) 20px 0;
    animation: revealUp 0.9s var(--ease-premium) both;
}
.hero-tagline {
    font-size: 0.95rem;
    letter-spacing: 4.8px;
    color: #b89965;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background-color: rgba(8, 22, 36, 0.42);
    backdrop-filter: blur(1px);
    text-shadow:
        0 2px 6px rgba(9, 24, 37, 0.35),
        0 5px 14px rgba(9, 24, 37, 0.22);
    animation: fadeInUp 1s ease;
}
.hero-title {
    margin-bottom: 1.3rem;
    animation: fadeInUp 1s 0.3s ease both;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.hero-title-brand {
    font-family: var(--font-brand);
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 0.95;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f7f3ea;
    margin-bottom: 1.5rem;
}
.title-line { display: block; }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.92);
    max-width: 680px;
    margin: 0 auto 2.6rem;
    line-height: 1.75;
    animation: fadeInUp 1s 0.6s ease both;
}
.hero-open {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    color: #f7f3ea;
}
.hero-location {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f7f3ea;
    margin: 0 0 1.35rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.35rem;
    animation: fadeInUp 1s 0.9s ease both;
}
.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}
.hero-buttons .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 120%;
    height: 100%;
    background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.22) 50%, transparent 75%);
    transition: left 0.7s var(--ease-premium);
}
.hero-buttons .btn:hover::after {
    left: 130%;
}

/* ===== ABOUT ===== */
.about {
    padding: 96px 0;
    background: #fffdf8;
    border-top: 1px solid rgba(42, 109, 150, 0.22);
    border-bottom: 1px solid rgba(42, 109, 150, 0.22);
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-label {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}
.section-title {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    letter-spacing: 0.4px;
}
.section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.section-subtitle {
    font-size: 1.2rem;
    color: rgba(9, 24, 37, 0.68);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 72px;
    align-items: center;
}
.about-image-container { position: relative; }
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateZ(0);
    transition: transform 0.8s var(--ease-premium), box-shadow 0.8s var(--ease-premium);
}
.about-image-main:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 56px rgba(10, 33, 52, 0.22);
}
.about-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.about-image:hover .about-img { transform: scale(1.02); }
.image-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}
.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}
.about-text > p {
    margin-bottom: 2.2rem;
    font-size: 1.1rem;
    line-height: 1.85;
    color: rgba(9, 24, 37, 0.78);
}
.highlight-box {
    background-color: var(--surface-soft);
    padding: 1.6rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--accent-gold);
    margin-bottom: 2.8rem;
}
.highlight-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}
.highlight-author {
    font-weight: 600;
    color: var(--black);
    text-align: right;
}
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.info-card {
    padding: 1.25rem 1.3rem;
    background-color: #fff;
    border-radius: var(--radius);
    transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium), border-color 0.3s ease;
    border: 1px solid rgba(46, 112, 148, 0.18);
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.info-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-dark);
}
.info-details p { margin-bottom: 0; color: rgba(0,0,0,0.7); }

/* ===== CARDS / EXPERIENCES ===== */
.menu-preview {
    padding: 96px 0;
    /* Alternating background: BLUE section */
    background: linear-gradient(180deg, #0f2c45, #153b59);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
}
.menu-preview .section-label,
.menu-preview .section-title,
.menu-preview .section-subtitle {
    color: var(--white);
}
.menu-preview .section-subtitle { color: rgba(255,255,255,0.82); }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 0;
}
.menu-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.55s var(--ease-premium), box-shadow 0.55s var(--ease-premium);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 3px solid var(--accent-gold);
}
.menu-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.menu-item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-item:hover .menu-img { transform: scale(1.05); }
.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}
.menu-item-content {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.menu-item-header { margin-bottom: 1rem; }
.menu-item-header h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--primary-dark);
}
.menu-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-left: auto;
}
.menu-item-content p {
    margin-bottom: 1rem;
    color: rgba(9, 24, 37, 0.76);
    line-height: 1.75;
}
.menu-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}
.tag {
    background-color: #f4e8d4;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.card-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, transform 0.35s var(--ease-premium);
    margin-top: auto;
}
.card-link:hover { border-bottom-color: var(--primary-light); }
.menu-item:hover .card-link { transform: translateX(2px); }

/* ===== FEATURE SECTION ===== */
.feature-section {
    padding: 96px 0;
    background: #fffdf8;
    border-top: 1px solid rgba(42, 109, 150, 0.22);
    border-bottom: 1px solid rgba(42, 109, 150, 0.22);
}
.feature-section.alt-bg {
    background: linear-gradient(180deg, #0f2c45, #153b59);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.feature-section.alt-bg .section-label,
.feature-section.alt-bg .section-title,
.feature-section.alt-bg .section-subtitle {
    color: var(--white);
}
.feature-section.alt-bg .brand-name {
    color: var(--accent-gold);
}
.feature-section.alt-bg .section-subtitle { color: rgba(255,255,255,0.82); }
.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.feature-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}
.feature-content.reverse > * {
    direction: ltr;
}
.feature-text {
    padding: 2rem;
}
.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}
.feature-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    color: rgba(9, 24, 37, 0.78);
}
.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.8s var(--ease-premium), box-shadow 0.8s var(--ease-premium);
}
.feature-image:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 56px rgba(10, 33, 52, 0.22);
}
.feature-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.feature-image:hover .feature-img { transform: scale(1.02); }

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #0f2c45, #153b59);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.gallery-section .section-label,
.gallery-section .section-title,
.gallery-section .section-subtitle {
    color: var(--white);
}
.gallery-section .brand-name {
    color: var(--accent-gold);
}
.gallery-section .section-subtitle { color: rgba(255,255,255,0.82); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.55s var(--ease-premium), box-shadow 0.55s var(--ease-premium);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 44px rgba(10, 33, 52, 0.2);
}
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item { height: 250px; }
}

/* ===== COCKTAIL HOUR SECTION ===== */
.cocktail-hour {
    padding: 96px 0;
    background: linear-gradient(180deg, #0f2c45, #153b59);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.cocktail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.cocktail-text .section-label {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.cocktail-text .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}
.cocktail-text .brand-name {
    color: var(--accent-gold);
}
.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.time-badge i {
    font-size: 1.2rem;
}
.cocktail-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.cocktail-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
}
.feature i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}
.cocktail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.8s var(--ease-premium), box-shadow 0.8s var(--ease-premium);
}
.cocktail-image:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 56px rgba(10, 33, 52, 0.22);
}
.cocktail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.cocktail-image:hover img {
    transform: scale(1.02);
}
@media (max-width: 992px) {
    .cocktail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cocktail-features {
        gap: 1rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0e2a43 0%, #19466b 100%);
}
.cta-section .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.8rem;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn { min-width: 200px; }

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #102f4b, #0e2940);
    color: var(--white);
    padding: 80px 0 34px;
}
.footer-main {
    display: grid;
    grid-template-columns: 0.9fr 0.8fr 0.8fr 0.8fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
    align-items: start;
}
/* Desktop layout override */
@media (min-width: 992px) {
    .footer-col:first-child {
        margin-left: -60px;
    }
    .footer-col:nth-child(2) {
        margin-left: 30px;
    }
    .footer-col:last-child {
        margin-right: -30px;
    }
}
.footer-col {
    min-width: 0;
}
.footer-col:not(:first-child) {
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.footer-logo .logo-image {
    height: 140px;
    width: 140px;
    border: 3px solid var(--logo-border);
}
.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.4rem;
    line-height: 1.75;
    max-width: 100%;
    word-wrap: break-word;
}
.footer .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;        /* ensures wrapping on very small screens */
    justify-content: flex-start; /* aligns left; can be center if desired */
}

/* Footer social icons - explicit bubble styling with perfect centering */
.footer .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.2);  /* slightly more opaque */
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;           /* ensures icon is vertically centered */
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;       /* fallback centering */
}
.footer .social-link:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
    letter-spacing: 1px;
}
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    display: inline-block;
    line-height: 1.6;
}
.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 1rem;
}
.footer-hours span:first-child { color: rgba(255,255,255,0.7); }
.footer-hours span:last-child {
    color: var(--white);
    font-weight: 600;
}
.contact-info .contact-item {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.contact-info .contact-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 4px;
    min-width: 16px;
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(198, 166, 107, 0.6), transparent);
    margin-bottom: 10px;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}
.footer-legal a:hover { color: var(--primary-light); }

/* ===== WHATSAPP BUTTON (fixed bottom right) ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: transform 0.4s var(--ease-premium), background-color 0.25s ease;
    border: none;
}
.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-2px);
    background-color: #20b859;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes revealUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero buttons float up animation */
.hero-buttons .btn {
    -webkit-animation: floatUpFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation: floatUpFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.hero-buttons .btn:nth-child(1) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.hero-buttons .btn:nth-child(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

/* Hover lift effect for hero buttons */
.hero-buttons .btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(14, 42, 67, 0.25);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
    will-change: opacity, transform;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .hero-slide { background-position: center 20%; }
    .hero-content { padding: clamp(145px, 18vh, 240px) 20px 0; }
    .hero-slide { filter: contrast(1.22) saturate(1.12) brightness(0.86); }
    .hero-bg::before { background: linear-gradient(to top, rgba(8, 22, 36, 0.68), rgba(8, 22, 36, 0.28) 44%, rgba(8, 22, 36, 0.1)); }
    .hero-buttons { margin-top: 0.55rem; }
    .header .container { padding-left: 14px; padding-right: 24px; }
    .nav-menu { gap: 1.65rem; }
}
@media (max-width: 1200px) {
    .footer-main { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-col:not(:first-child) {
        padding-left: 0;
        border-left: none;
    }
}
@media (max-width: 992px) {
    .container { padding: 0 22px; }
    .about-content { grid-template-columns: 1fr; gap: 44px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .feature-content { grid-template-columns: 1fr; gap: 40px; }
    .feature-content.reverse { direction: ltr; }
    .map-container { min-height: 380px; }
    .hero { margin-top: 0; min-height: 640px; height: 82vh; }
    .cta-section { padding: 64px 0; }
    .cta-title { font-size: 2rem; }
}
@media (max-width: 768px) {
    .hero { margin-top: 0; min-height: 590px; height: 80vh; }
    .hero-content { padding: clamp(96px, 12vh, 150px) 20px 0; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-title-brand { font-size: clamp(2.2rem, 12vw, 4.1rem); letter-spacing: 2.8px; }
    .hero-tagline { font-size: 0.78rem; letter-spacing: 3.2px; }
    .hero-open { font-size: 1.2rem; letter-spacing: 1.9px; }
    .hero-location { font-size: 0.85rem; letter-spacing: 2.2px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .cta-section { padding: 50px 0; }
    .cta-section .container { padding: 2rem 1.5rem; margin: 0 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 1rem; }
    .menu-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-main { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        margin-bottom: 30px; 
    }
    .footer .footer-col { 
        text-align: center; 
        padding: 0 10px;
    }
    .footer-col:not(:first-child) {
        padding-left: 10px;
        padding-right: 10px;
        border-left: none;
    }
    .footer-logo .logo-wrapper { align-items: center; }
    .footer .social-links { justify-content: center; }
    .footer-hours li { 
        flex-direction: row; 
        justify-content: space-between;
        align-items: center; 
        gap: 1rem;
        padding: 0.8rem 0;
    }
    .footer-hours span:first-child,
    .footer-hours span:last-child {
        white-space: nowrap;
    }
    .contact-info .contact-item { 
        justify-content: center; 
        flex-direction: row; 
        align-items: flex-start; 
        gap: 10px; 
        flex-wrap: wrap;
        word-break: break-word;
    }
    .contact-info .contact-item i { margin-top: 4px; }
    .footer-description {
        max-width: 100%;
        padding: 0 10px;
    }
    .logo-image { height: 90px; width: 90px; }
    .logo-main { font-size: 1.5rem; letter-spacing: 1.6px; }
    .logo-sub { font-size: 0.72rem; letter-spacing: 1.5px; }
    .logo { margin-left: -8px; }
}
@media (max-width: 576px) {
    .container { padding: 0 14px; }
    .header { padding: 10px 0; }
    .hero { margin-top: 0; min-height: 530px; height: 78vh; }
    .logo-wrapper { gap: 10px; }
    .logo-image { height: 74px; width: 74px; }
    .logo-main { font-size: 1.2rem; letter-spacing: 1.1px; }
    .logo-sub { font-size: 0.62rem; letter-spacing: 1px; }
    .logo { margin-left: -2px; }
    .nav-link { font-size: 1.2rem; }
    .hero-title { font-size: clamp(1.8rem, 8.5vw, 2.4rem); }
    .hero-title-brand { font-size: clamp(1.9rem, 12.5vw, 3.1rem); letter-spacing: 1.6px; margin-bottom: 1rem; }
    .hero-tagline { font-size: 0.72rem; letter-spacing: 2.4px; margin-bottom: 0.8rem; }
    .hero-open { font-size: 1rem; letter-spacing: 1.5px; }
    .hero-location { font-size: 0.74rem; letter-spacing: 1.8px; }
    .hero-subtitle { font-size: 0.95rem; line-height: 1.6; margin-bottom: 2.1rem; }
    .hero-buttons .btn { max-width: 320px; }
    .section-header { margin-bottom: 46px; }
    .section-subtitle { font-size: 1.03rem; }
    .about-content { gap: 28px; }
}
