@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #000000;
    --text-color: #FFFFFF;
    --text-muted: #888888;
    --accent-color: #FFFFFF;
    /* Using white as primary accent */
    --gold-color: #D4AF37;
    /* Keeping gold just for the stars */

    --font-primary: 'Inter', 'Lato', sans-serif;
    --font-logo: 'Great Vibes', cursive;
    /* Approximate script font */

    --max-width: 1200px;
    --spacing-container: 4%;
}

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

/* Critical: Prevent any horizontal scrolling on Safari */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Improve behaviour on Safari/iOS */
::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

/* Enforce consistent base font-size to avoid browser auto-zoom on some Safari configs */
html, body {
    font-size: 16px;
}

/* Prevent horizontal scrolling which can cause Safari to zoom */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    max-width: 100%;
}

/* Prevent specific sections from causing horizontal overflow */
.gallery,
.booking-guide,
.faq,
.maps-section,
.about-section,
footer {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Ensure all major containers respect viewport width */
main, section, article {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Prevent the logo from causing layout overflow which can trigger zooming */
.logo {
    margin-left: 0; /* remove negative offset that could create horizontal overflow */
}

.logo img {
    max-height: 80px !important;
    height: auto !important;
    width: auto !important;
    display: block;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure main and sections don't overflow */
main, section, article, nav, footer {
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Typography Defaults */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.65);
    padding: 0.5rem 1.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2001;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 0;
    flex-shrink: 0;
}



.logo img {
    max-height: 35px;
    height: auto;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    align-items: center;
    white-space: nowrap;
}

.nav-links li {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1; /* consistent vertical alignment */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links a:hover {
    color: red;
}

.book-btn {
    background-image: url('images/book-now-Button.png');
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: transparent;
    color: #000000 !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    flex-shrink: 0;
    min-width: fit-content;
}

.book-btn:hover {
    transform: scale(1.05);
    /* Slight button zoom */
    background-size: 120% 120%;
    /* Background image zoom */
    text-decoration: underline;
}

/* Ensure nav items don't overflow container on wide fonts/zoom */
header, nav, .nav-links {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 2002;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0; /* use inset to avoid 100vw/100vh overflow issues on mobile/Safari */
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    width: 100%;
    margin: 3rem auto 2.5rem;
    padding: 0 var(--spacing-container);
    text-align: left;
    max-width: var(--max-width);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Inter', var(--font-primary);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-description {
    color: #b0b0b0;
    font-size: 1.25rem;
    font-family: 'Inter', var(--font-primary);
    font-weight: 500;
    opacity: 0.75;
    max-width: 900px;
    margin-bottom: 3rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Gallery Grid */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 0;
    width: 100%;
    margin: 0 auto 2.5rem;
    padding: 0;
    max-width: var(--max-width);
    overflow: hidden;
    box-sizing: border-box;
}

.gallery-item {
    aspect-ratio: 38 / 50;
    overflow: hidden;
    position: relative;
    background-color: #111;
}

/* Fallback for browsers without aspect-ratio support (older Safari)
   Uses percentage padding to preserve visual ratio */
@supports not (aspect-ratio: 1/1) {
    .gallery-item {
        height: 0;
        padding-bottom: calc(100% * 50 / 38);
        overflow: hidden;
    }

    .about-image .image-wrap,
    .about-image .image-wrap img {
        height: auto;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: grayscale(100%);
}

/* Fade the bottom row (items 4-6) slightly */
.gallery .gallery-item:nth-child(n+4) img {
    opacity: 0.6;
}

.gallery .gallery-item:nth-child(n+4):hover img {
    opacity: 1;
}

/* Fade the first 3 gallery items on gallery pages */
.gallery .gallery-item:nth-child(-n+3) img {
    opacity: 0.6;
}

.gallery .gallery-item:nth-child(-n+3):hover img {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.gallery-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonial {
    text-align: center;
    padding: 4rem var(--spacing-container) 5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.stars {
    color: var(--gold-color);
    font-size: 3rem;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
}

.testimonial-quote {
    font-size: 2.688rem;
    font-weight: 700;
    font-family: 'Inter', var(--font-primary);
    line-height: 1.35;
    max-width: 980px;
    margin: 0 auto 2.5rem;
    color: #f5f5f5;
}

.testimonial-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-pill {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.125rem;
    font-family: 'Inter', var(--font-primary);
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 130px;
    text-align: center;
}

.btn-white {
    background-color: #FFFFFF;
    color: #111;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

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

.btn-outline {
    background-color: #111;
    color: #FFFFFF;
    border: 1px solid #444;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-outline:hover {
    border-color: #FFFFFF;
    background-color: #1a1a1a;
}

/* Footer & Other Sections (Simple styles for context) */
.booking-guide,
.faq,
.maps-section {
    padding: 4rem var(--spacing-container);
    max-width: 100%;
    margin: 0 auto;
    border-top: 1px solid #111;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* About Page */
.post-meta {
    color: #b0b0b0;
    font-family: 'Inter', var(--font-primary);
    font-size: clamp(0.9rem, 0.6vw + 0.8rem, 1.1rem);
    font-weight: 500;
    opacity: 0.75;
    margin-bottom: 0.5rem;
}

.about-section {
    padding: 4rem var(--spacing-container);
    max-width: 100%;
    margin: 0 auto;
    border-top: 1px solid #111;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-width: var(--max-width);
    max-height: 300px;
    object-fit: cover;
    margin: 0 auto;
}

.section-title {
    font-family: 'Inter', var(--font-primary);
    font-size: clamp(1.5rem, 1.6vw + 1rem, 2.1rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-text {
    color: #b4b4b4;
    font-family: 'Inter', var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    opacity: 0.75;
    line-height: 1.65;
    margin: 0;
}

.about-text h2 {
    font-family: 'Inter', var(--font-primary);
    font-size: clamp(1.5rem, 1.6vw + 1rem, 2.1rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-text p {
    color: #b4b4b4;
    font-family: 'Inter', var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    opacity: 0.75;
    line-height: 1.65;
    margin: 0;
}

.about-image .image-wrap {
    width: 100%;
    aspect-ratio: 38 / 50;
    background: #000;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Allow studio exterior image to display in full */
.about-section[aria-label="Today"] .about-image .image-wrap,
.about-section[aria-label="Dzisiaj"] .about-image .image-wrap,
.about-section[aria-label="Origins"] .about-image .image-wrap,
.about-section[aria-label="Początki"] .about-image .image-wrap {
    aspect-ratio: auto;
    height: auto;
}

.about-section[aria-label="Today"] .about-image img,
.about-section[aria-label="Dzisiaj"] .about-image img,
.about-section[aria-label="Origins"] .about-image .image-wrap,
.about-section[aria-label="Początki"] .about-image img {
    height: auto;
    object-fit: contain;
}

/* Allow business card artwork to display in full */
.about-section[aria-label="Artist"] .about-image .image-wrap,
.about-section[aria-label="Artysta"] .about-image .image-wrap {
    aspect-ratio: auto;
    height: auto;
    overflow: visible;
}

.about-section[aria-label="Artist"] .about-image img,
.about-section[aria-label="Artysta"] .about-image img {
    height: auto;
    object-fit: contain;
    max-height: none;
}

.booking-guide {
    text-align: center;
}

.booking-guide h2 {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Inter', var(--font-primary);
    margin-bottom: 2.5rem;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
    text-align: left;
}

.booking-steps .step {
    border-top: 1px solid #333;
    padding-top: 1.25rem;
}

.booking-steps .step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Inter', var(--font-primary);
    margin-bottom: 0.75rem;
}

.booking-steps .step p {
    color: #b4b4b4;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', var(--font-primary);
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

/* FAQ */
.faq {
    text-align: center;
}

/* Google Maps */
.maps-section h2 {
    font-family: 'Inter', var(--font-primary);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}


.faq h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    border-top: 1px solid #252525;
    padding-top: 1.4rem;
}

.faq-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.75;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
footer {
    background-color: #000;
    padding: 5rem var(--spacing-container) 2rem;
    color: #b4b4b4;
    font-size: 0.95rem;
    margin-top: 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}

.footer-credit {
    text-align: center;
    padding: 2rem 0 1rem;
    color: #555;
    font-size: 0.875rem;
}

.footer-credit p {
    margin: 0;
}

.footer-credit .conturre {
    color: #ff6600;
    text-decoration: none;
}

.footer-credit .conturre:hover {
    text-decoration: underline;
}

.footer-top-line {
    height: 1px;
    background: #1f1f1f;
    max-width: var(--max-width);
    margin: 0 auto 3rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    box-sizing: border-box;
    overflow-x: hidden;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.footer-brand> :not(.footer-logo-img) {
    margin-left: 30px;
}

.footer-logo-img {
    width: 180px;
    max-width: 100%;
    height: auto;
}

.tagline {
    color: #7a7a7a;
    font-size: 1.05rem;
    margin-top: -0.5rem;
}

.social-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.social-row h5,
.footer-menu h5,
.footer-contact h5 {
    color: #f5f5f5;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.social-icons {
    display: flex;
    gap: 0.85rem;
}

.icon-btn {
    color: #f5f5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
    background-color: #f5f5f5;
    color: #000;
    border-color: #f5f5f5;
}

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

.footer-menu ul {
    list-style: none;
    margin-top: 1.5rem;
}

.footer-links li+li {
    margin-top: 0.75rem;
}

.footer-links a {
    color: #b4b4b4;
    font-weight: 400;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    color: #b4b4b4;
}

.footer-contact p,
.footer-contact address {
    margin: 0.6rem 0;
    line-height: 1.6;
    font-style: normal;
}

.footer-contact address {
    margin-top: 1.4rem;
}

.footer-contact a {
    color: #b4b4b4;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact .address-name {
    display: inline-block;
    color: #f5f5f5;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 0.6rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 3002;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    display: block;
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: 1px solid #000;
    line-height: 1;
    transition: all 0.2s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    z-index: 2;
}

.close-modal:hover,
.close-modal:focus-visible {
    background: #000;
    color: #fff;
    border-color: #000;
    outline: 2px solid #000;
    outline-offset: 2px;
}



/* Booking Guide Modal */
.booking-guide-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 0 0;
    z-index: 3001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.booking-guide-modal.active {
    display: flex;
}

.booking-guide-modal-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 1.25rem 1.5rem 2.5rem;
    text-align: center;
    margin: 0;
    min-height: 100vh;
}

.booking-guide-modal-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: 'Inter', var(--font-primary);
    margin-bottom: 1.6rem;
    margin-top: 0.25rem;
    padding-top: 0;
    color: #fff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.booking-steps-modal {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
    text-align: left;
    margin-bottom: 3rem;
}

.booking-steps-modal .step-modal {
    border-top: 1px solid #333;
    padding-top: 1.25rem;
}

.booking-steps-modal .step-modal h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Inter', var(--font-primary);
    margin-bottom: 0.75rem;
    color: #fff;
}

.booking-steps-modal .step-modal p {
    color: #b4b4b4;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', var(--font-primary);
    line-height: 1.6;
    margin: 0;
}

.booking-buttons-modal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.close-booking-guide {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    border: 2px solid #fff;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-booking-guide:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .booking-steps-modal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .booking-guide-modal-content h2 {
        font-size: 2rem;
    }

    /* Tablet: 1024px and below */
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Force text to appear before images on mobile */
    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .testimonial-quote {
        font-size: 1.8rem;
    }

    .booking-steps {
        grid-template-columns: 1fr;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Mobile: 768px and below */
    
    :root {
        --spacing-container: 5%;
    }
    
    /* Typography */
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .testimonial-quote {
        font-size: 1.25rem;
    }

    .stars {
        font-size: 2rem;
    }

    /* Show hamburger menu on mobile */
    .hamburger {
        display: flex;
    }

    /* Header & Navigation */
    header {
        padding: 0.75rem 3%;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .logo {
        margin-left: 0;
        max-width: 50%;
    }

    .logo img {
        max-height: 50px;
        width: auto;
        max-width: 100%;
    }

    nav {
        gap: 0;
    }

    /* Hide navigation links by default on mobile */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 90vw;
        max-width: 340px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 1.5rem 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        z-index: 2000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 1rem;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
        box-sizing: border-box;
    }

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

    .nav-links li {
        width: 100%;
        overflow-x: hidden;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
        width: 100%;
    }

    .book-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        background-size: cover;
        text-align: center;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: auto !important;
        min-width: 120px;
        margin: 0.25rem 0;
        white-space: nowrap;
    }

    .book-btn:hover {
        background-size: 110% 110%;
    }

    /* Gallery */
    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        margin-bottom: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: 1 / 1;
    }

    /* Sections */
    .hero {
        margin: 1.5rem auto 1.5rem;
        padding: 0 var(--spacing-container);
    }

    .booking-guide,
    .faq,
    .maps-section,
    .about-section {
        padding: 2rem var(--spacing-container);
    }

    /* Booking Steps */
    .booking-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-steps .step h3 {
        font-size: 1.1rem;
    }

    .booking-steps .step p {
        font-size: 0.9rem;
    }

    .booking-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-pill {
        width: 100%;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
    }

    /* FAQ */
    .faq h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

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

    .faq-list {
        gap: 1rem;
    }

    /* Testimonial */
    .testimonial {
        padding: 2rem var(--spacing-container) 2.5rem;
    }

    .testimonial-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonial-buttons .btn-pill {
        width: 100%;
    }

    /* Footer */
    footer {
        padding: 3rem var(--spacing-container) 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand> :not(.footer-logo-img) {
        margin-left: 0;
    }

    .footer-logo-img {
        width: 200px;
    }

    .footer-menu,
    .footer-contact {
        text-align: left;
    }

    /* Modal */
    .modal {
        padding: 1rem;
    }

    .close-modal {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 1rem;
        right: 1rem;
    }

    /* Booking Guide Modal */
    .booking-guide-modal {
        padding: 60px 0 0;
    }

    .booking-guide-modal-content {
        padding: 1rem 1rem 2rem;
    }

    .booking-guide-modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .booking-steps-modal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .booking-steps-modal .step-modal h3 {
        font-size: 1.1rem;
    }

    .booking-steps-modal .step-modal p {
        font-size: 0.9rem;
    }

    .booking-buttons-modal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .booking-buttons-modal .btn-pill {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Small Mobile: 480px and below */
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-text {
        font-size: 0.9rem;
    }

    .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .stars {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .post-meta {
        font-size: 0.85rem;
    }

    /* Header */
    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 0.3rem 0.4rem;
    }

    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Booking/FAQ titles */
    .booking-guide h2,
    .faq h2,
    .maps-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .booking-steps .step h3,
    .faq-item h3 {
        font-size: 1rem;
    }

    .booking-steps .step p,
    .faq-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .booking-guide,
    .faq,
    .maps-section,
    .about-section {
        padding: 1.5rem var(--spacing-container);
    }

    /* Footer */
    .footer-logo-img {
        width: 150px;
        max-width: 100%;
    }

    .footer-contact address {
        font-size: 0.9rem;
    }

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

    /* Gallery - single column for very small screens */
    .gallery {
        grid-template-columns: 1fr;
    }

    /* Improve touch targets */
    .hamburger {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
    }

    /* Ensure all content fits */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    main,
    section {
        overflow-x: hidden;
    }
}