/* ============================================
   GUWAHATI HEIGHTS - Premium Restaurant CSS
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-cream: #F5F0E8;
    --color-cream-light: #FAF8F5;
    --color-beige: #E8DFD4;
    --color-gold: #C9A962;
    --color-gold-light: #D4BC7A;
    --color-gold-dark: #B8984F;
    --color-charcoal: #2C2C2C;
    --color-charcoal-light: #3D3D3D;
    --color-warm-white: #FFFEF9;
    --color-text: #4A4A4A;
    --color-text-light: #6B6B6B;
    --color-overlay: rgba(20, 18, 15, 0.7);
    --color-overlay-light: rgba(20, 18, 15, 0.4);

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;

    /* Shadows */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ============================================
   BASE STYLES
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream-light);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-cream);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--color-gold);
    animation: preloaderProgress 2s ease-in-out forwards;
}

@keyframes preloaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-charcoal) !important;
    padding: 12px 25px !important;
    border-radius: 3px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid var(--color-cream);
}

.btn-secondary:hover {
    background: var(--color-cream);
    color: var(--color-charcoal);
    transform: translateY(-3px);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.section-label.light {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--color-cream);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(20, 18, 15, 0.5) 0%,
        rgba(20, 18, 15, 0.6) 50%,
        rgba(20, 18, 15, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 600;
    color: var(--color-cream);
    letter-spacing: 0.05em;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease 0.5s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    opacity: 0;
    animation: heroFadeIn 1s ease 0.7s forwards;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.divider-icon {
    color: var(--color-gold);
    font-size: 1rem;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-beige);
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease 0.9s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 1s ease 1.1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: heroFadeIn 1s ease 1.5s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cream);
    opacity: 0.7;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    animation: scrollIndicator 1.5s ease-in-out infinite;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollIndicator {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: var(--section-padding) 0;
    background: var(--color-cream-light);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-gold);
    border-radius: 5px;
    z-index: -1;
    display: none;
}

@media (min-width: 1200px) {
    .about-image-accent {
        display: block;
    }
}

.about-content {
    padding-left: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--color-text);
}

.about-text strong {
    color: var(--color-charcoal);
}

.about-features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-beige);
}

.about-feature {
    text-align: center;
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.feature-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

/* ============================================
   AMBIENCE SECTION
   ============================================ */

.ambience {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.ambience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ambience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ambience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
}

.ambience-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.ambience-text {
    font-size: 1.2rem;
    color: var(--color-beige);
    font-weight: 300;
}

/* ============================================
   MENU SECTION
   ============================================ */

.menu {
    padding: var(--section-padding) 0;
    background: var(--color-warm-white);
    overflow: hidden;
}

.menu-grid {
    display: flex;
    justify-content: center;
}

.menu-card {
    max-width: 500px;
    background: var(--color-cream-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-overlay {
    opacity: 1;
}

.menu-card-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
}

.menu-card-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
}

.menu-card-info {
    padding: 25px;
    text-align: center;
}

.menu-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.menu-card-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--color-cream);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.experience {
    padding: var(--section-padding) 0;
    background: var(--color-cream-light);
    overflow: hidden;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.experience-card {
    background: var(--color-warm-white);
    padding: 50px 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.experience-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
    border-radius: 50%;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.experience-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: var(--section-padding) 0;
    background: var(--color-charcoal);
    overflow: hidden;
}

.gallery .section-title,
.gallery .section-subtitle {
    color: var(--color-cream);
}

.gallery .section-subtitle {
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item-large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay-light);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-cream);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    padding: 100px 0;
    background: var(--color-warm-white);
    overflow: hidden;
}

.quote-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--color-gold);
    line-height: 0.5;
    opacity: 0.3;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-charcoal);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-author {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--section-padding) 0;
    background: var(--color-cream-light);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-radius: 50%;
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-reservation {
    padding: 35px;
    background: var(--color-warm-white);
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
}

.contact-reservation h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.contact-reservation p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 25px;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.map-wrapper iframe {
    display: block;
    max-width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-charcoal);
    padding: 60px 0 30px;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-cream);
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
    font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        height: 450px;
    }

    .about-content {
        padding-left: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-large);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-features {
        flex-direction: column;
        gap: 25px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ambience {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-scroll {
        display: none;
    }

    .experience-card {
        padding: 35px 25px;
    }

    .contact-item {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   GSAP ANIMATION CLASSES
   ============================================ */

/* Main wrapper to prevent overflow */
main, section, header, footer, article, aside, nav {
    max-width: 100vw;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
}

.fade-in.active {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}
