/* ===== CSS Variables ===== */
:root {
    --primary-dark: #0a1628;
    --primary-blue: #1a365d;
    --accent-gold: #c9a96e;
    --accent-gold-light: #dfc291;
    --white: #ffffff;
    --off-white: #f8f6f3;
    --text-light: #e8e6e3;
    --text-dark: #2d3748;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* ===== Decorative Elements ===== */
.decorative-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    margin: 20px auto 40px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gallery7.jpg') center/cover no-repeat;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--primary-dark) 100%);
}

/* ===== Fish Animation ===== */
.fish-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.fish {
    position: absolute;
    opacity: 0.6;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.fish-svg {
    width: 100%;
    height: 100%;
}

.fish-1 {
    width: 80px;
    height: 32px;
    top: 20%;
    left: -100px;
    color: var(--accent-gold);
    animation: swimRight 15s linear infinite;
    animation-delay: 0s;
}

.fish-2 {
    width: 60px;
    height: 24px;
    top: 50%;
    left: -80px;
    color: var(--accent-gold-light);
    animation: swimRight 12s linear infinite;
    animation-delay: 3s;
}

.fish-3 {
    width: 50px;
    height: 20px;
    top: 70%;
    left: -70px;
    color: #fff;
    opacity: 0.4;
    animation: swimRight 18s linear infinite;
    animation-delay: 7s;
}

.fish-4 {
    width: 70px;
    height: 28px;
    top: 35%;
    right: -100px;
    color: var(--accent-gold);
    animation: swimLeft 14s linear infinite;
    animation-delay: 2s;
    transform: scaleX(-1);
}

.fish-5 {
    width: 55px;
    height: 22px;
    top: 60%;
    right: -80px;
    color: #fff;
    opacity: 0.5;
    animation: swimLeft 16s linear infinite;
    animation-delay: 5s;
    transform: scaleX(-1);
}

.fish-6 {
    width: 45px;
    height: 18px;
    top: 80%;
    left: -60px;
    color: var(--accent-gold-light);
    animation: swimRight 20s linear infinite;
    animation-delay: 10s;
}

@keyframes swimRight {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(30vw) translateY(-20px);
    }
    50% {
        transform: translateX(60vw) translateY(10px);
    }
    75% {
        transform: translateX(90vw) translateY(-15px);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0);
    }
}

@keyframes swimLeft {
    0% {
        transform: translateX(0) translateY(0) scaleX(-1);
    }
    25% {
        transform: translateX(-30vw) translateY(15px) scaleX(-1);
    }
    50% {
        transform: translateX(-60vw) translateY(-10px) scaleX(-1);
    }
    75% {
        transform: translateX(-90vw) translateY(20px) scaleX(-1);
    }
    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(0) scaleX(-1);
    }
}

/* Bubbles Animation */
.bubbles {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    bottom: -20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rise linear infinite;
}

.bubble:nth-child(1) { left: 10%; width: 10px; height: 10px; animation-duration: 8s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 20%; width: 15px; height: 15px; animation-duration: 10s; animation-delay: 1s; }
.bubble:nth-child(3) { left: 35%; width: 8px; height: 8px; animation-duration: 7s; animation-delay: 2s; }
.bubble:nth-child(4) { left: 50%; width: 12px; height: 12px; animation-duration: 9s; animation-delay: 0.5s; }
.bubble:nth-child(5) { left: 65%; width: 6px; height: 6px; animation-duration: 6s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 80%; width: 14px; height: 14px; animation-duration: 11s; animation-delay: 1.5s; }
.bubble:nth-child(7) { left: 90%; width: 9px; height: 9px; animation-duration: 8s; animation-delay: 2.5s; }

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px 30px;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.7);
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: 5px;
    margin-bottom: 15px;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
}

.about p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.gallery h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.5), transparent);
    pointer-events: none;
}

.gallery-cta-home {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta-home .btn-secondary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.gallery-cta-home .btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* ===== Menu Section ===== */
#menu.menu-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a365d 0%, #2d5a87 20%, #3d7ab0 50%, #5a9fd4 80%, #7ec8e3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Menu Section Wave Top */
.menu-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: -1;
    pointer-events: none !important;
}

.menu-wave-top svg {
    width: 100%;
    height: 100%;
    pointer-events: none !important;
}

/* Menu Fish Decoration */
.menu-fish-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    overflow: hidden;
    z-index: -1;
}

.menu-fish {
    position: absolute;
    opacity: 0.6;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
    pointer-events: none !important;
}

.menu-fish-1 {
    width: 140px;
    height: 70px;
    top: 10%;
    left: -160px;
    color: #ffd93d;
    animation: menuSwimRight 18s linear infinite;
}

.menu-fish-2 {
    width: 120px;
    height: 60px;
    top: 55%;
    left: -140px;
    color: #ff6b6b;
    animation: menuSwimRight 22s linear infinite;
    animation-delay: 4s;
}

.menu-fish-3 {
    width: 100px;
    height: 50px;
    top: 30%;
    right: -120px;
    color: #7dd3c0;
    animation: menuSwimLeft 20s linear infinite;
    animation-delay: 2s;
}

.menu-fish-4 {
    width: 90px;
    height: 45px;
    top: 75%;
    right: -110px;
    color: #ffd93d;
    animation: menuSwimLeft 16s linear infinite;
    animation-delay: 7s;
}

.menu-fish-5 {
    width: 110px;
    height: 55px;
    top: 45%;
    left: -130px;
    color: #ff8e8e;
    animation: menuSwimRight 24s linear infinite;
    animation-delay: 10s;
}

.menu-fish-6 {
    width: 80px;
    height: 40px;
    top: 90%;
    right: -100px;
    color: #7dd3c0;
    animation: menuSwimLeft 19s linear infinite;
    animation-delay: 12s;
}

@keyframes menuSwimRight {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(30vw) translateY(-15px);
    }
    50% {
        transform: translateX(60vw) translateY(10px);
    }
    75% {
        transform: translateX(90vw) translateY(-10px);
    }
    100% {
        transform: translateX(calc(100vw + 120px)) translateY(0);
    }
}

@keyframes menuSwimLeft {
    0% {
        transform: translateX(0) translateY(0) scaleX(-1);
    }
    25% {
        transform: translateX(-30vw) translateY(10px) scaleX(-1);
    }
    50% {
        transform: translateX(-60vw) translateY(-15px) scaleX(-1);
    }
    75% {
        transform: translateX(-90vw) translateY(5px) scaleX(-1);
    }
    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(0) scaleX(-1);
    }
}

/* Menu Bubbles */
.menu-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none !important;
    overflow: hidden;
    z-index: -1;
}

.menu-bubble {
    pointer-events: none !important;
}

.menu-bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(125, 211, 192, 0.5));
    border-radius: 50%;
    animation: menuBubbleRise linear infinite;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.7), 0 0 10px rgba(255, 255, 255, 0.3);
}

.menu-bubble:nth-child(1) { left: 5%; width: 35px; height: 35px; animation-duration: 10s; animation-delay: 0s; }
.menu-bubble:nth-child(2) { left: 15%; width: 25px; height: 25px; animation-duration: 12s; animation-delay: 2s; }
.menu-bubble:nth-child(3) { left: 30%; width: 45px; height: 45px; animation-duration: 8s; animation-delay: 1s; }
.menu-bubble:nth-child(4) { left: 45%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 3s; }
.menu-bubble:nth-child(5) { left: 55%; width: 20px; height: 20px; animation-duration: 9s; animation-delay: 0.5s; }
.menu-bubble:nth-child(6) { left: 70%; width: 38px; height: 38px; animation-duration: 10s; animation-delay: 4s; }
.menu-bubble:nth-child(7) { left: 82%; width: 28px; height: 28px; animation-duration: 13s; animation-delay: 1.5s; }
.menu-bubble:nth-child(8) { left: 92%; width: 22px; height: 22px; animation-duration: 11s; animation-delay: 2.5s; }

@keyframes menuBubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-120vh) scale(0.6);
        opacity: 0;
    }
}

#menu.menu-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

#menu .menu-intro {
    max-width: 650px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Menu Content Container - must be above decorations */
#menu .menu-content {
    position: relative;
    z-index: 10;
}

/* Featured Menu Container */
#menu .menu-featured {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

#menu .menu-featured h3 {
    font-size: 1.6rem;
    color: #ffffff;
    text-align: center;
    margin: 50px 0 25px 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

#menu .menu-featured h3:first-child {
    margin-top: 0;
}

/* Menu Grid */
#menu .menu-featured .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 10px;
}

/* Menu Item Card */
#menu .menu-featured .menu-grid .menu-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fcfd 100%);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

#menu .menu-featured .menu-grid .menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e, #1a365d, #c9a96e);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#menu .menu-featured .menu-grid .menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
}

#menu .menu-featured .menu-grid .menu-item:hover::before {
    opacity: 1;
}

/* Menu Item Header - Name and Price */
#menu .menu-item .menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

#menu .menu-item .menu-item-header .item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a1628;
    line-height: 1.3;
    margin: 0;
}

#menu .menu-item .menu-item-header .item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #c9a96e;
    white-space: nowrap;
    flex-shrink: 0;
}

#menu .menu-item .item-desc {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Menu CTA Box */
#menu .menu-cta {
    text-align: center;
    margin-top: 50px;
    padding: 45px 40px;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0a1628 100%);
    border-radius: 20px;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

#menu .menu-cta p {
    font-size: 1.1rem;
    color: #e8e6e3;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

#menu .menu-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Menu Button - Force Clickable */
a.menu-btn {
    display: inline-block !important;
    padding: 16px 40px !important;
    background: #c9a96e !important;
    color: #0a1628 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    transition: all 0.3s ease !important;
}

a.menu-btn:hover {
    background: #d4b87a !important;
    transform: translateY(-2px) !important;
}

/* Menu Section Tablet */
@media (max-width: 992px) {
    #menu .menu-featured .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Menu Section Mobile */
@media (max-width: 768px) {
    #menu.menu-section {
        padding: 70px 0;
    }

    #menu .menu-intro {
        margin-bottom: 40px;
        font-size: 1rem;
        padding: 0 15px;
    }

    #menu .menu-featured h3 {
        font-size: 1.4rem;
        margin: 40px 0 20px 0;
    }

    #menu .menu-featured .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #menu .menu-featured .menu-grid .menu-item {
        padding: 20px;
    }

    #menu .menu-item .menu-item-header {
        flex-direction: column;
        gap: 5px;
    }

    #menu .menu-item .menu-item-header .item-name {
        font-size: 1.05rem;
    }

    #menu .menu-item .menu-item-header .item-price {
        font-size: 0.95rem;
    }

    #menu .menu-item .item-desc {
        font-size: 0.88rem;
    }

    #menu .menu-cta {
        padding: 35px 25px;
        margin-top: 40px;
        margin-left: 15px;
        margin-right: 15px;
    }

    #menu .menu-cta p {
        font-size: 1rem;
    }

    #menu .menu-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #menu .menu-featured .menu-grid .menu-item {
        padding: 18px;
    }

    #menu .menu-item .menu-item-header .item-name {
        font-size: 1rem;
    }
}

.menu-section .btn-secondary {
    border-color: #0a1628;
    color: #0a1628;
}

.menu-section .btn-secondary:hover {
    background-color: #0a1628;
    color: #ffffff;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
}

.contact-grid {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    background: var(--primary-dark);
    text-align: center;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.footer p {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hero {
        min-height: 100vh;
    }

    .about,
    .gallery,
    .menu-section,
    .contact {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }

    .decorative-line {
        margin: 15px auto 30px;
    }

    .about p,
    .menu-intro {
        font-size: 1rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeIn 1s ease forwards;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    font-weight: 400;
    color: var(--text-light);
    margin-top: 10px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== Menu Tabs ===== */
.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.menu-tab {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== Menu Categories ===== */
.menu-category {
    display: none;
    text-align: left;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 15px;
}

.category-note {
    text-align: center;
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin: 40px 0 20px;
    text-align: center;
    font-family: var(--font-heading);
}

/* ===== Menu Grid ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.menu-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.item-price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
}

.item-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ===== Sides Grid (compact) ===== */
.sides-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.side-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.side-item .item-name {
    font-size: 1rem;
}

.side-item .item-price {
    font-size: 0.9rem;
}

/* ===== Allergy Notice ===== */
.allergy-notice {
    margin-top: 50px;
    padding: 20px;
    background: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
    border-radius: 8px;
}

/* ===== Contact Links ===== */
.contact-item a {
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-gold-light);
}

.contact-cta-home {
    text-align: center;
    margin-top: 40px;
}

.contact-cta-home .btn-secondary {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.contact-cta-home .btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* ===== Mobile Menu Styles ===== */
@media (max-width: 768px) {
    .menu-nav {
        gap: 8px;
    }

    .menu-tab {
        padding: 10px 16px;
        font-size: 11px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item-header {
        flex-direction: column;
        gap: 5px;
    }

    .sides-grid {
        grid-template-columns: 1fr;
    }

    .menu-category h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .menu-tab {
        padding: 8px 12px;
        font-size: 10px;
        border-radius: 20px;
    }

    .item-name {
        font-size: 1rem;
    }

    .item-price {
        font-size: 0.85rem;
    }
}

/* ===== Booking Section ===== */
.booking {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.booking h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
}

.booking-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a365d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.booking-form .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    margin-top: 10px;
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-response.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

/* Form Field Hints */
.field-hint {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* Form Validation Styles */
.form-group input.valid,
.form-group select.valid {
    border-color: #28a745 !important;
    background-color: #f8fff9;
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
}

.form-group input.valid:focus,
.form-group select.valid:focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.form-group input.invalid:focus,
.form-group select.invalid:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.error-message {
    display: block;
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 5px;
    font-weight: 500;
}

/* Validation icons */
.form-group input.valid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2328a745' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input.invalid {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    border: 1px solid #f5c6cb;
}

/* Booking Mobile Responsive */
@media (max-width: 768px) {
    .booking {
        padding: 70px 0;
    }

    .booking-form {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .booking-form {
        padding: 25px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* ===== Booking Page Specific ===== */
.booking-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('photo2.jpeg') center/cover no-repeat;
    opacity: 0.25;
}

.booking-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--primary-dark) 100%);
}

.booking-page {
    padding: 80px 0;
    background: var(--off-white);
}

.booking-intro {
    text-align: center;
    margin-bottom: 50px;
}

.booking-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
}

.booking-intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.booking-page .booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: var(--accent-gold);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 5px 0;
}

.info-card a {
    color: var(--accent-gold);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--primary-blue);
}

/* Active nav link */
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .booking-hero {
        height: 35vh;
        min-height: 250px;
    }

    .booking-page {
        padding: 50px 0;
    }

    .booking-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .booking-page .booking-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

/* ===== Cooked Fish SVG (Plated Fish) ===== */
.cooked-fish {
    position: absolute;
    opacity: 0.5;
}

.cooked-fish-svg {
    width: 100%;
    height: 100%;
}

.cooked-fish-1 {
    width: 90px;
    height: 45px;
    top: 25%;
    left: -120px;
    color: var(--accent-gold);
    animation: swimRight 16s linear infinite;
    animation-delay: 1s;
}

.cooked-fish-2 {
    width: 70px;
    height: 35px;
    top: 45%;
    right: -100px;
    color: var(--accent-gold-light);
    animation: swimLeft 13s linear infinite;
    animation-delay: 4s;
    transform: scaleX(-1);
}

/* ===== Gallery Page Specific ===== */
.gallery-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('photo1.jpeg') center/cover no-repeat;
    opacity: 0.25;
}

.gallery-page {
    padding: 80px 0;
    background: var(--off-white);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
}

.gallery-intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-dark);
    color: var(--white);
}

/* Gallery Grid Page */
.gallery-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item-page {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-page:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-page:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    padding: 60px 40px;
    background: var(--primary-dark);
    border-radius: 16px;
    color: var(--white);
}

.gallery-cta h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 15px;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 20px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 35vh;
        min-height: 250px;
    }

    .gallery-page {
        padding: 50px 0;
    }

    .gallery-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .gallery-cta {
        padding: 40px 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 15px 10px;
        font-size: 24px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }
}

/* ===== Contact Page Specific ===== */
.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('photo2.jpeg') center/cover no-repeat;
    opacity: 0.2;
}

.contact-page {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-dark);
}

.contact-intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-card .address {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-card .phone-number a,
.contact-card .email a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    transition: color 0.3s ease;
}

.contact-card .phone-number a:hover,
.contact-card .email a:hover {
    color: var(--primary-blue);
}

.contact-card .contact-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.directions-link:hover {
    color: var(--primary-blue);
}

/* Hours List */
.hours-list {
    text-align: left;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed span:last-child {
    color: #e74c3c;
    font-weight: 600;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 25px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

.map-address {
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px 30px;
    text-align: center;
}

.map-address p {
    margin: 5px 0;
}

.transport-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--accent-gold);
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-form-section h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Social & Delivery Section */
.social-delivery-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.social-box,
.delivery-box {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.social-box h3,
.delivery-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.social-box p,
.delivery-box p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}

.delivery-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.delivery-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 180px;
}

.delivery-link:hover {
    transform: translateY(-4px);
}

.delivery-link img {
    height: 24px;
    width: auto;
}

.delivery-link svg {
    height: 24px;
    width: auto;
    flex-shrink: 0;
}

.delivery-link.deliveroo {
    background: linear-gradient(135deg, #00ccbc 0%, #00b8a9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 204, 188, 0.3);
}

.delivery-link.deliveroo:hover {
    box-shadow: 0 8px 25px rgba(0, 204, 188, 0.5);
    background: linear-gradient(135deg, #00d9c8 0%, #00ccbc 100%);
}

.delivery-link.justeat {
    background: linear-gradient(135deg, #ff8000 0%, #ff6b00 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.delivery-link.justeat:hover {
    box-shadow: 0 8px 25px rgba(255, 128, 0, 0.5);
    background: linear-gradient(135deg, #ff9020 0%, #ff8000 100%);
}

/* Home Page Delivery Section */
.delivery-section-home {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.delivery-section-home h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.delivery-section-home p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.delivery-buttons-home {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .delivery-buttons-home {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .delivery-link {
        min-width: 220px;
        padding: 14px 28px;
    }
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 35vh;
        min-height: 250px;
    }

    .contact-page {
        padding: 50px 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .social-delivery-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-links,
    .delivery-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link,
    .delivery-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .map-address {
        padding: 15px 20px;
    }
}

/* ===== Enhanced Mobile Responsive Fixes ===== */

/* Global Mobile Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    /* Better touch targets */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-top: 8px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hero-content {
        padding: 15px 20px;
    }
}

/* Menu Tabs - Horizontal Scroll on Mobile */
@media (max-width: 768px) {
    .menu-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px;
        padding: 10px 0;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .menu-nav::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .menu-nav {
        gap: 6px;
    }

    .menu-tab {
        padding: 8px 14px;
        font-size: 11px;
    }
}

/* Gallery Grid Mobile */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-grid-page {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item-page {
        aspect-ratio: 16/10;
    }

    .gallery-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 5px 0;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .gallery-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 11px;
    }
}

/* Lightbox Mobile Improvements */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 70%;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 12px 8px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 28px;
    }

    .lightbox-caption {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 6px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Contact Cards Mobile */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .hours-row {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

/* Booking Info Cards Mobile */
@media (max-width: 768px) {
    .booking-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-card h3 {
        font-size: 1.1rem;
    }

    .info-card p {
        font-size: 0.9rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
}

/* Form Improvements on Mobile */
@media (max-width: 768px) {
    .booking-form,
    .contact-form {
        padding: 25px 18px;
        margin: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .booking-form .btn,
    .contact-form .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Social & Delivery Section Mobile */
@media (max-width: 768px) {
    .social-delivery-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-box,
    .delivery-box {
        padding: 25px 20px;
    }

    .social-box h3,
    .delivery-box h3 {
        font-size: 1.2rem;
    }

    .social-box p,
    .delivery-box p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .social-links,
    .delivery-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .social-link {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        padding: 12px 20px;
    }

    .delivery-link {
        width: 100%;
        max-width: 220px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Delivery Section Home Mobile */
@media (max-width: 768px) {
    .delivery-section-home {
        padding: 60px 0;
    }

    .delivery-section-home h2 {
        font-size: 1.6rem;
    }

    .delivery-section-home p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .delivery-buttons-home {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .delivery-buttons-home .delivery-link {
        width: 100%;
        max-width: 250px;
    }
}

/* Map Section Mobile */
@media (max-width: 768px) {
    .map-section h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .map-container {
        border-radius: 12px;
    }

    .map-container iframe {
        height: 280px;
    }

    .map-address {
        padding: 15px;
    }

    .map-address p {
        font-size: 0.9rem;
    }

    .transport-info {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

/* Hero Sections Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        margin-bottom: 8px;
    }

    .hero .tagline {
        font-size: 0.95rem;
        margin-bottom: 12px;
        letter-spacing: 3px;
    }

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

    .hero-content {
        padding: 20px 15px !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .booking-hero,
    .gallery-hero,
    .contact-hero {
        height: 30vh;
        min-height: 220px;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        color: #ffffff !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-content .tagline {
        font-size: 0.9rem !important;
        margin-bottom: 15px;
        color: #ffffff !important;
        display: block !important;
        visibility: visible !important;
    }

    .booking-hero .hero-content,
    .gallery-hero .hero-content,
    .contact-hero .hero-content {
        position: relative !important;
        z-index: 100 !important;
    }

    .booking-hero .hero-content h1,
    .gallery-hero .hero-content h1,
    .contact-hero .hero-content h1 {
        font-size: 1.8rem !important;
        color: #ffffff !important;
        margin-bottom: 10px !important;
    }

    .booking-hero .hero-content .tagline,
    .gallery-hero .hero-content .tagline,
    .contact-hero .hero-content .tagline {
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* Very Small Mobile - Page Titles */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem !important;
    }

    .booking-hero .hero-content h1,
    .gallery-hero .hero-content h1,
    .contact-hero .hero-content h1 {
        font-size: 1.5rem !important;
    }

    .hero-content .tagline,
    .booking-hero .hero-content .tagline,
    .gallery-hero .hero-content .tagline,
    .contact-hero .hero-content .tagline {
        font-size: 0.8rem !important;
    }

    .booking-hero,
    .gallery-hero,
    .contact-hero {
        min-height: 180px !important;
    }
}

/* Menu Items Mobile */
@media (max-width: 768px) {
    .menu-item {
        padding: 18px;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .item-name {
        font-size: 1rem;
    }

    .item-price {
        font-size: 0.9rem;
    }

    .item-desc {
        font-size: 0.85rem;
    }

    .category-note {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .menu-category h3 {
        font-size: 1.4rem;
    }

    .subsection-title {
        font-size: 1.1rem;
        margin: 30px 0 15px;
    }

    .side-item {
        padding: 12px 15px;
    }

    .side-item .item-name {
        font-size: 0.9rem;
    }

    .side-item .item-price {
        font-size: 0.85rem;
    }
}

/* Gallery CTA Mobile */
@media (max-width: 768px) {
    .gallery-cta {
        padding: 35px 20px;
        border-radius: 12px;
    }

    .gallery-cta h3 {
        font-size: 1.3rem;
    }

    .gallery-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Contact Section (Home) Mobile */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-info {
        gap: 25px;
    }

    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer-logo {
        height: 45px;
        width: 45px;
        margin-bottom: 15px;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

/* Allergy Notice Mobile */
@media (max-width: 768px) {
    .allergy-notice {
        margin-top: 40px;
        padding: 15px;
        font-size: 0.8rem;
        border-radius: 6px;
    }
}

/* Intro Sections Mobile */
@media (max-width: 768px) {
    .booking-intro,
    .gallery-intro,
    .contact-intro {
        margin-bottom: 35px;
    }

    .booking-intro p,
    .gallery-intro p,
    .contact-intro p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Fish Animation - Hide on very small screens to improve performance */
@media (max-width: 480px) {
    .fish-4,
    .fish-5,
    .fish-6 {
        display: none;
    }

    .fish-1,
    .fish-2,
    .fish-3 {
        opacity: 0.4;
    }

    .fish-1 {
        width: 60px;
        height: 24px;
    }

    .fish-2 {
        width: 45px;
        height: 18px;
    }

    .fish-3 {
        width: 35px;
        height: 14px;
    }
}

/* Bubbles - Reduce on mobile */
@media (max-width: 480px) {
    .bubble:nth-child(5),
    .bubble:nth-child(6),
    .bubble:nth-child(7) {
        display: none;
    }
}

/* Hero Buttons Mobile */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 14px 20px;
    }
}

/* Navigation Mobile Improvements */
@media (max-width: 768px) {
    .nav-links {
        padding-top: 80px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        background: rgba(201, 169, 110, 0.1);
        border-radius: 8px;
    }
}

/* Contact Content wrapper */
@media (max-width: 768px) {
    .contact-content,
    .booking-content {
        gap: 30px;
    }
}

/* Contact Form Section Mobile */
@media (max-width: 768px) {
    .contact-form-section {
        margin: 0 auto 40px;
    }

    .contact-form-section h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
}

/* Directions Link Mobile */
@media (max-width: 768px) {
    .directions-link {
        font-size: 0.9rem;
        margin-top: 12px;
    }
}

/* ===== Menu Section Ocean Theme Mobile ===== */
@media (max-width: 768px) {
    #menu.menu-section {
        padding: 80px 0 60px;
    }

    .menu-wave-top {
        height: 40px;
    }

    /* Reduce fish size on mobile */
    .menu-fish-1 {
        width: 80px;
        height: 40px;
    }

    .menu-fish-2 {
        width: 70px;
        height: 35px;
    }

    .menu-fish-3,
    .menu-fish-4 {
        width: 60px;
        height: 30px;
    }

    /* Hide some fish on mobile for performance */
    .menu-fish-5,
    .menu-fish-6 {
        display: none;
    }

    /* Smaller bubbles on mobile */
    .menu-bubble:nth-child(1) { width: 25px; height: 25px; }
    .menu-bubble:nth-child(2) { width: 18px; height: 18px; }
    .menu-bubble:nth-child(3) { width: 30px; height: 30px; }
    .menu-bubble:nth-child(4) { width: 22px; height: 22px; }
    .menu-bubble:nth-child(5) { width: 15px; height: 15px; }
    .menu-bubble:nth-child(6),
    .menu-bubble:nth-child(7),
    .menu-bubble:nth-child(8) {
        display: none;
    }

    #menu.menu-section h2 {
        font-size: 2rem;
    }

    #menu .menu-intro {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 35px;
    }

    #menu .menu-featured h3 {
        font-size: 1.4rem;
        margin: 35px 0 20px;
    }

    #menu .menu-cta {
        margin: 40px 15px 0;
        padding: 30px 20px;
        border-radius: 16px;
    }

    #menu .menu-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    #menu .menu-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #menu.menu-section {
        padding: 60px 0 50px;
    }

    .menu-wave-top {
        height: 30px;
    }

    /* Even smaller fish on very small screens */
    .menu-fish-1 {
        width: 60px;
        height: 30px;
    }

    .menu-fish-2 {
        width: 50px;
        height: 25px;
    }

    .menu-fish-3,
    .menu-fish-4 {
        display: none;
    }

    /* Reduce fish opacity on small screens */
    .menu-fish {
        opacity: 0.4;
    }

    #menu.menu-section h2 {
        font-size: 1.7rem;
    }

    #menu .menu-intro {
        font-size: 0.9rem;
    }

    #menu .menu-featured h3 {
        font-size: 1.2rem;
    }

    #menu .menu-cta {
        margin: 30px 10px 0;
        padding: 25px 15px;
    }
}
