/* === VARIABLES & RESET === */
:root {
    --color-dark: #c7bba7;
    --color-dark-secondary: #f5f1eb;
    --color-dark-tertiary: #ebe6df;
    --color-gold: #c7663a;
    --color-gold-light: #d88b5f;
    --color-white: #2d2826;
    --color-gray: #6b5d57;
    --color-gray-light: #8a7c76;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
}

.heading-xl {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
}

.heading-lg {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.01em;
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.text-gold {
    color: var(--color-gold);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}


.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* === FLOATING NAVBAR === */
.floating-navbar {
    position: fixed;
    bottom: 10;
    left: 0;
    width: 80%;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(199, 102, 58, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 20px;
    box-shadow: 0 4px 16px rgba(199, 102, 58, 0.12);
    border-bottom-right-radius: 30px;
    transition: var(--transition);

}

.floating-navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(199, 102, 58, 0.2);
}

.floating-navbar * {
    display: flex;
    justify-content: start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 30px;
}


.floating-navbar li {
    margin: 0 15px;
}

.floating-navbar div {
    display: flex; 
    justify-content: start; 
    align-items: center;
    margin-left: 60px;
}

.floating-navbar a {
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 400;
    font-size: 1rem;
    font-family: monospace;
    transition: color 0.3s ease;
}

.floating-navbar a:hover {
    color: var(--color-gold);
}


.status-alert {
    color: var(--color-white);
    text-decoration: none; 
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .floating-navbar {
        width: 75%;
    }
}

@media (max-width: 768px) {
    .floating-navbar {
        width: auto;
        padding: 10px;
        border-bottom-right-radius: 15px;
        border-top-right-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 0px;
    }

    .floating-navbar ul {
        display: none;
    }

    .floating-navbar img {
        display: none;
    }

    .floating-navbar div {
        display: none;
    }

    .floating-navbar .burger {
        display: block;
        display: flex;
        justify-items: center;
        align-items: center;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}

/* --- Burger-Button --- */
.burger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-gold);
    cursor: pointer;
    margin-left: 20px;
}

/* === Navigation Drawer (Fancy Version) === */
.nav-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-right: 1px solid rgba(199, 102, 58, 0.25);
    padding: 70px 25px 40px;
    box-shadow: 6px 0 20px rgba(0, 0, 0, 0.08);
    transition: left 0.35s cubic-bezier(.4,.0,.2,1);
    z-index: 1100;
}
.nav-drawer.open {
    left: 0;
}

.nav-drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-drawer li {
    margin: 24px 0;
}

.nav-drawer a {
    display: block;
    color: var(--color-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: monospace;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}
.nav-drawer a:hover {
    color: var(--color-gold);
    text-shadow: 0 0 8px rgba(199, 102, 58, 0.3);
}

.nav-drawer li + li {
    border-top: 1px solid rgba(199, 102, 58, 0.15);
    padding-top: 14px;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-gold);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.drawer-close:hover {
    transform: rotate(90deg);
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 40, 38, 0.4);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1050;
}
.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-navbar ul {
        display: none;
    }
    .burger {
        display: block;
    }
}


/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.parallax-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(250, 248, 245, 0.056), rgba(250, 248, 245, 0.16)),
                url('../assets/eating-fish.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(199, 103, 58, 0.057);
    border-radius: 4px;
    padding: 60px 80px;
    transition: var(--transition);
}

.hero-content:hover {
    transform: translate(-50%, -50%) scale(1.02);
}

/* Responsive Glass Box */
@media (max-width: 1024px) {
    .hero-content {
        padding: 50px 60px;
        border-radius: 4px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 50px;
        border-radius: 4px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 35px;
        border-radius: 4px;
        max-width: 92%;
    }
}

@media (max-width: 360px) {
    .hero-content {
        padding: 20px 20px;
        border-radius: 4px;
        max-width: 95%;
    }
}

.restaurant-name {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(250, 248, 245, 0.8);
}

.handwriting {
  font-family: 'Brush Script MT', cursive;
  font-size: 1.1em;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 0.75rem;
    }
}

/* === STATUS ALERT === */
.status-alert {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 15px 30px;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(199, 102, 58, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    transition: var(--transition);
}

.status-alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(199, 102, 58, 0.2);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.open {
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

.status-dot.closed {
    background: #ef4444;
    box-shadow: 0 0 10px #ef4444;
}

/* === BENTO GRID SECTION === */
.bento-section {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 1;
    animation: fadeInUp 0.8s forwards;
}

.section-title h2 {
    color: var(--color-white);
    margin-bottom: 15px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
    animation: shimmer 2s infinite;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.2rem;
    font-weight: 300;
}

/* === ENHANCED BENTO GRID === */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 20px;
    grid-auto-flow: dense;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    background: #f5f1eb;
    opacity: 1;
    animation: fadeInScale 0.6s forwards;
    animation-delay: calc(var(--i) * 0.1s);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Grid Variations */
.bento-item:nth-child(1) { 
    grid-column: span 3; 
    grid-row: span 2;
    --i: 0;
}
.bento-item:nth-child(2) { 
    grid-column: span 2; 
    grid-row: span 1;
    --i: 1;
}
.bento-item:nth-child(3) { 
    grid-column: span 1; 
    grid-row: span 3;
    --i: 2;
}
.bento-item:nth-child(4) { 
    grid-column: span 3; 
    grid-row: span 1;
    --i: 3;
}
.bento-item:nth-child(5) { 
    grid-column: span 2; 
    grid-row: span 1;
    --i: 4;
}
.bento-item:nth-child(6) { 
    grid-column: span 2; 
    grid-row: span 1;
    --i: 5;
}

.bento-item:hover {
    transform: scale(0.98);
    z-index: 10;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.bento-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0.9);
}

.bento-item:hover .bento-content {
    transform: translateY(0);
    opacity: 1;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Overlay Effect */
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(199, 102, 58, 0.1) 0%,
        rgba(199, 102, 58, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(45, 40, 38, 0.3) 50%,
        rgba(45, 40, 38, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0.9;
    transition: var(--transition);
}

.bento-number {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.bento-title {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: #faf8f5;
}

.bento-desc {
    font-size: 0.95rem;
    color: #ebe6df;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 160px;
    }

    .bento-item:nth-child(1) { 
        grid-column: span 2; 
        grid-row: span 2;
    }
    .bento-item:nth-child(3) { 
        grid-column: span 2; 
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 15px;
    }

    .bento-item:nth-child(1),
    .bento-item:nth-child(2),
    .bento-item:nth-child(3),
    .bento-item:nth-child(4),
    .bento-item:nth-child(5),
    .bento-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item:nth-child(1) {
        grid-column: span 2;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item:nth-child(1) {
        grid-column: span 1;
    }
}

/* === LIGHTBOX GALLERY === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 245, 0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: slideIn 0.4s ease;
}

.lightbox.active .lightbox-container {
    animation: slideIn 0.4s ease;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(199, 102, 58, 0.2);
}

.lightbox-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(250,248,245,0.95), transparent);
    border-radius: 0 0 12px 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: translateY(0);
}

.lightbox-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-white);
}

.lightbox-desc {
    font-size: 1rem;
    color: var(--color-gray);
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(250, 248, 245, 0.9);
    border: 2px solid rgba(199, 102, 58, 0.3);
    color: var(--color-white);
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .lightbox-nav {
        top: 70%;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        top: 80%;
    }
}

.lightbox-nav:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(250, 248, 245, 0.9);
    border: 2px solid rgba(199, 102, 58, 0.3);
    color: var(--color-white);
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.lightbox-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(250, 248, 245, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--color-white);
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 102, 58, 0.2);
}

/* === MENU SECTION - RESPONSIVE VERSION === */
.menu-section {
    padding: 100px 20px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.menu-content {
    z-index: 10;
    opacity: 1;
    transform: translateX(-30px);
}

.menu-content.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.menu-content h2 {
    color: var(--color-white);
    margin-bottom: 30px;
}

.menu-text {
    line-height: 1.8;
    color: var(--color-gray);
    margin: 20px 0;
}

.menu-link {
    display: inline-block;
    margin-top: 30px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.menu-link:hover {
    transform: translateX(10px);
}

.menu-preview {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #ebe6df 0%, #f5f1eb 100%);
    border: 1px solid rgba(199, 102, 58, 0.2);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    transform: translateX(30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-preview.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease 0.2s;
}

.menu-preview::before {
    content: 'MENU';
    position: absolute;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(199, 102, 58, 0.08);
    letter-spacing: 0.5em;
    pointer-events: none;
    z-index: 0;
}

.menu-preview img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 2px;
    opacity: 0.8;
    transition: var(--transition);
}

.menu-preview:hover img {
    opacity: 1;
    transform: scale(1.02);
}

.menu-preview:hover .pdf-hint {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pdf-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--color-dark-tertiary);
    color: var(--color-white);
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 400;
    opacity: 1;
    transition: var(--transition);
    letter-spacing: 0.1em;
    z-index: 10;
    border: 3px solid rgba(199, 102, 58, 0.6);
}

/* === TABLET RESPONSIVE (max-width: 1024px) === */
@media (max-width: 1024px) {
    .menu-section {
        padding: 80px 20px;
    }

    .split-container {
        gap: 40px;
    }

    .menu-preview {
        height: 500px;
    }

    .menu-preview::before {
        font-size: 6rem;
    }

    .pdf-hint {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

/* === MOBILE RESPONSIVE (max-width: 768px) === */
@media (max-width: 768px) {
    .menu-section {
        padding: 60px 15px;
    }

    .split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-content {
        transform: translateX(0);
        text-align: center;
    }

    .menu-content h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .menu-text {
        font-size: 1rem;
        margin: 15px 0;
    }

    .menu-link {
        margin-top: 20px;
        font-size: 0.95rem;
    }

    .menu-preview {
        height: 400px;
        transform: translateX(0);
    }

    .menu-preview::before {
        font-size: 4rem;
        letter-spacing: 0.3em;
    }

    .menu-preview img {
        width: 95%;
        height: 95%;
    }

    .pdf-hint {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 0.05em;
    }
}

/* === SMALL MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
    .menu-section {
        padding: 50px 10px;
    }

    .menu-content h2 {
        font-size: 1.75rem;
    }

    .menu-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .menu-preview {
        height: 350px;
    }

    .menu-preview::before {
        font-size: 3rem;
    }

    .pdf-hint {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* === EXTRA SMALL MOBILE (max-width: 360px) === */
@media (max-width: 360px) {
    .menu-preview {
        height: 300px;
    }

    .menu-preview::before {
        content: 'MENU';
        font-size: 2.5rem;
        letter-spacing: 0.2em;
    }

    .pdf-hint {
        width: 80%;
        text-align: center;
        padding: 8px 15px;
        font-size: 0.75rem;
    }
}

/* === OPENING HOURS === */
.hours-section {
    padding: 100px 20px;
    text-align: center;
    background: var(--color-dark-secondary);
}

.hours-section h2 {
    color: var(--color-white);
    margin-bottom: 60px;
}

.hours-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.hour-card {
    background: rgba(235, 230, 223, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 102, 58, 0.2);
    padding: 30px;
    border-radius: 2px;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(20px);
}

.hour-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.hour-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    background: rgba(199, 102, 58, 0.12);
    box-shadow: 0 10px 30px rgba(199, 102, 58, 0.15);
}

.day {
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.time {
    font-size: 1.1rem;
    color: var(--color-white);
}

/* === FAMILY SECTION === */
.family-section {
    padding: 100px 20px;
    background: var(--color-dark);
}

.family-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.family-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    
    background: linear-gradient(135deg, #ebe6df 0%, #f5f1eb 100%);
    border: 1px solid rgba(199, 102, 58, 0.2);
    border-radius: 2px;

    padding: 1rem;
    transition: var(--transition);
}

.family-image:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    background: rgba(199, 102, 58, 0.12);
    box-shadow: 0 10px 30px rgba(199, 102, 58, 0.15);
}

.family-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.family-image::after {
    content: 'Since 1997';
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(250, 248, 245, 0.8);
}

.family-content h2 {
    margin-bottom: 30px;
    color: var(--color-white);
}

.family-text {
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .family-container {
        max-width: 1200px;
        margin: 0 auto;
        display: block;
        grid-template-columns: 0fr 0fr;
        gap: 60px;
        align-items: center;
    }

    .family-image {
        position: relative;
        height: 300px;
        margin-bottom: 30px;
    }
}

/* === FOOTER === */
footer {
    background: var(--color-dark-secondary);
    background-color: var(--color-dark-secondary);
    border-top: 1px solid rgba(199, 102, 58, 0.2);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    background-color: var(--color-dark-secondary);
}

.footer-column h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
    color: var(--color-gray);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(199, 102, 58, 0.15);
    color: var(--color-gray);
}