/* =====================================================
   FIVE STUDIOS - CSS
   ===================================================== */

/* CSS Variables */
:root {
    --fs-sage-green: #8B9A8B;
    --fs-sage-light: #A8B5A8;
    --fs-sage-dark: #6B7A6B;
    --fs-oak-wood: #C5B799;
    --fs-oak-light: #DDD4C0;
    --fs-cream: #F8F6F2;
    --fs-white: #FFFFFF;
    --fs-charcoal: #2C2C2C;
    --fs-black: #1A1A1A;
    --fs-text-muted: #6B6B6B;
    --fs-brown: #5C4A3D;
    --fs-brown-dark: #4A3C32;
    --fs-error: #dc3545;
    --fs-success: #28a745;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--fs-charcoal);
    line-height: 1.7;
    background: var(--fs-white);
}

.five-studios-page {
    overflow-x: hidden;
}

/* Language Toggle */
.fs-lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.fs-lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--fs-text-muted);
    border-radius: 26px;
    transition: all 0.3s ease;
}

.fs-lang-btn.active {
    background: var(--fs-sage-dark);
    color: white;
}

.fs-lang-btn:hover:not(.active) {
    color: var(--fs-charcoal);
}

/* Language visibility */
.five-studios-page[data-lang="de"] .lang-en,
.five-studios-page[data-lang="en"] .lang-de {
    display: none !important;
}

/* Hero Section */
.fs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(92, 74, 61, 0.85) 0%, rgba(107, 122, 107, 0.9) 100%),
                url('https://hotel-atlantis.net/wp-content/uploads/2026/01/FiveStudios1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
}

.fs-hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    z-index: 2;
}

.fs-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fs-white);
    margin-bottom: 25px;
}

.fs-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 500;
    color: var(--fs-white);
    line-height: 1.15;
    margin: 0 0 15px 0;
}

.fs-hero h1 span {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 0.55em;
    opacity: 0.9;
}

.fs-hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
}

.fs-btn-primary {
    display: inline-block;
    background: var(--fs-white);
    color: var(--fs-brown);
    padding: 15px 38px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fs-btn-primary:hover {
    background: var(--fs-oak-light);
    color: var(--fs-charcoal);
    transform: translateY(-2px);
}

/* Intro Section */
.fs-intro {
    padding: 100px 20px;
    background: var(--fs-white);
    text-align: center;
}

.fs-intro-inner {
    max-width: 900px;
    margin: 0 auto;
}

.fs-section-label {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--fs-sage-green);
    margin-bottom: 18px;
    font-weight: 600;
}

.fs-intro h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--fs-charcoal);
    line-height: 1.3;
    margin: 0 0 25px 0;
}

.fs-intro-text {
    font-size: 1.05rem;
    color: var(--fs-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

.fs-highlights {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.fs-highlight-item {
    text-align: center;
}

.fs-highlight-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--fs-sage-green);
    line-height: 1;
}

.fs-highlight-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fs-text-muted);
    margin-top: 8px;
}

/* Gallery Section */
.fs-gallery {
    padding: 100px 20px;
    background: var(--fs-cream);
}

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

.fs-gallery-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--fs-charcoal);
    margin: 0;
}

.fs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
}

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

.fs-gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

/* Amenities Section */
.fs-amenities {
    padding: 100px 20px;
    background: var(--fs-white);
}

.fs-amenities-inner {
    max-width: 1150px;
    margin: 0 auto;
}

.fs-amenities-header {
    text-align: center;
    margin-bottom: 50px;
}

.fs-amenities-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--fs-charcoal);
    margin: 0;
}

.fs-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.fs-amenity-card {
    padding: 32px;
    background: var(--fs-cream);
    border-radius: 4px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.fs-amenity-card:hover {
    background: var(--fs-white);
    border-color: var(--fs-sage-light);
    box-shadow: 0 15px 40px rgba(139, 154, 139, 0.1);
    transform: translateY(-5px);
}

.fs-amenity-icon {
    width: 48px;
    height: 48px;
    background: var(--fs-sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fs-amenity-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--fs-white);
    fill: none;
    stroke-width: 1.5;
}

.fs-amenity-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--fs-charcoal);
    margin: 0 0 10px 0;
}

.fs-amenity-card p {
    color: var(--fs-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Section */
.fs-pricing {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--fs-brown) 0%, var(--fs-sage-dark) 100%);
    position: relative;
}

.fs-pricing-inner {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fs-pricing-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--fs-white);
    margin: 0 0 12px 0;
}

.fs-pricing-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0 0 45px 0;
}

.fs-price-card {
    background: var(--fs-white);
    border-radius: 8px;
    padding: 45px 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.fs-price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}

.fs-price-from {
    font-size: 14px;
    color: var(--fs-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fs-price-amount {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--fs-brown);
}

.fs-price-period {
    font-size: 15px;
    color: var(--fs-text-muted);
}

.fs-price-note {
    font-size: 14px;
    color: var(--fs-sage-green);
    margin: 0 0 28px 0;
    font-weight: 500;
}

.fs-price-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-bottom: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(139, 154, 139, 0.2);
}

.fs-price-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--fs-charcoal);
}

.fs-price-feature svg {
    width: 16px;
    height: 16px;
    stroke: var(--fs-sage-green);
    flex-shrink: 0;
}

.fs-btn-book {
    display: inline-block;
    background: var(--fs-brown);
    color: var(--fs-white);
    padding: 16px 45px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.fs-btn-book:hover {
    background: var(--fs-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 74, 61, 0.4);
}

/* Promo Banner */
.fs-promo {
    background: var(--fs-cream);
    padding: 50px 20px;
    text-align: center;
    border-top: 3px solid var(--fs-oak-wood);
    border-bottom: 3px solid var(--fs-oak-wood);
}

.fs-promo-inner {
    max-width: 700px;
    margin: 0 auto;
}

.fs-promo h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    color: var(--fs-brown);
    margin: 0 0 12px 0;
}

.fs-promo p {
    color: var(--fs-text-muted);
    font-size: 1rem;
    margin: 0;
}

.fs-promo strong {
    color: var(--fs-sage-green);
}

/* =====================================================
   BOOKING FORM SECTION
   ===================================================== */
.fs-booking {
    padding: 100px 20px;
    background: var(--fs-white);
}

.fs-booking-inner {
    max-width: 900px;
    margin: 0 auto;
}

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

.fs-booking-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--fs-charcoal);
    margin: 0 0 15px 0;
}

.fs-form-note {
    color: var(--fs-text-muted);
    font-size: 0.95rem;
}

.required-star {
    color: var(--fs-error);
    font-weight: 600;
}

.fs-booking-form {
    background: var(--fs-cream);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.fs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.fs-form-group {
    display: flex;
    flex-direction: column;
}

.fs-form-group.fs-form-small {
    grid-column: span 1;
}

.fs-form-group.fs-form-full {
    grid-column: span 2;
}

.fs-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--fs-charcoal);
    margin-bottom: 8px;
}

.fs-form-group input,
.fs-form-group select,
.fs-form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(139, 154, 139, 0.3);
    border-radius: 4px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: var(--fs-charcoal);
    background: var(--fs-white);
    transition: all 0.3s ease;
}

.fs-form-group input:focus,
.fs-form-group select:focus,
.fs-form-group textarea:focus {
    outline: none;
    border-color: var(--fs-sage-green);
    box-shadow: 0 0 0 3px rgba(139, 154, 139, 0.15);
}

.fs-form-group input::placeholder,
.fs-form-group textarea::placeholder {
    color: rgba(107, 107, 107, 0.6);
}

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

.fs-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='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Checkbox Styling */
.fs-form-checkbox {
    margin-top: 10px;
}

.fs-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.6;
    color: var(--fs-text-muted);
}

.fs-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.fs-checkmark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--fs-white);
    border: 2px solid rgba(139, 154, 139, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.fs-checkbox-label input[type="checkbox"]:checked ~ .fs-checkmark {
    background: var(--fs-sage-green);
    border-color: var(--fs-sage-green);
}

.fs-checkmark::after {
    content: '';
    display: none;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.fs-checkbox-label input[type="checkbox"]:checked ~ .fs-checkmark::after {
    display: block;
}

.fs-checkbox-label strong {
    color: var(--fs-charcoal);
    display: block;
    margin-bottom: 5px;
}

.fs-checkbox-label a {
    color: var(--fs-sage-green);
    text-decoration: underline;
}

.fs-checkbox-label a:hover {
    color: var(--fs-sage-dark);
}

/* Form Submit */
.fs-form-submit {
    margin-top: 35px;
    text-align: center;
}

.fs-btn-submit {
    display: inline-block;
    background: var(--fs-brown);
    color: var(--fs-white);
    padding: 18px 60px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.fs-btn-submit:hover {
    background: var(--fs-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 74, 61, 0.4);
}

.fs-btn-submit:disabled {
    background: var(--fs-text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Message */
.fs-form-message {
    margin-top: 25px;
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.fs-form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--fs-success);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.fs-form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--fs-error);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Contact Section */
.fs-contact {
    padding: 100px 20px;
    background: var(--fs-charcoal);
}

.fs-contact-inner {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.fs-contact-info h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 500;
    color: var(--fs-white);
    margin: 0 0 18px 0;
}

.fs-contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 28px 0;
    line-height: 1.8;
}

.fs-contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fs-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fs-contact-item:hover {
    color: var(--fs-oak-wood);
}

.fs-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--fs-oak-wood);
    fill: none;
    flex-shrink: 0;
}

.fs-contact-item small {
    display: block;
    font-size: 11px;
    opacity: 0.6;
    margin-top: 2px;
}

.fs-contact-map {
    background: var(--fs-brown);
    border-radius: 8px;
    padding: 28px;
    text-align: center;
}

.fs-map-placeholder {
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.fs-map-placeholder svg {
    width: 44px;
    height: 44px;
    stroke: rgba(255, 255, 255, 0.4);
    fill: none;
}

.fs-location-text {
    color: var(--fs-white);
    font-size: 14px;
}

.fs-location-text strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 5px;
}

/* Footer */
.fs-footer {
    background: var(--fs-black);
    padding: 30px 20px;
    text-align: center;
}

.fs-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fs-footer-links {
    margin-bottom: 15px;
}

.fs-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 4px;
}

.fs-footer-links a:hover {
    color: var(--fs-oak-wood);
}

.fs-footer-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 12px;
}

.fs-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

/* Lightbox */
.fs-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fs-lightbox.active {
    display: flex;
}

.fs-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.fs-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    line-height: 1;
    transition: background 0.3s ease;
}

.fs-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fs-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: background 0.3s ease;
}

.fs-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fs-lightbox-prev { left: 20px; }
.fs-lightbox-next { right: 20px; }

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Tablet breakpoint - 1024px */
@media (max-width: 1024px) {
    .fs-intro,
    .fs-gallery,
    .fs-amenities,
    .fs-pricing,
    .fs-booking,
    .fs-contact {
        padding: 80px 20px;
    }

    .fs-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fs-gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .fs-contact-inner {
        gap: 50px;
    }

    .fs-price-amount {
        font-size: 3rem;
    }

    .fs-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile breakpoint - 768px */
@media (max-width: 768px) {
    /* Language toggle positioning */
    .fs-lang-toggle {
        top: 15px;
        right: 15px;
    }

    /* Increased touch target for language buttons */
    .fs-lang-btn {
        padding: 12px 18px;
        min-height: 44px;
        min-width: 44px;
    }

    /* Hero adjustments */
    .fs-hero {
        min-height: 85vh;
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .fs-btn-primary {
        padding: 16px 32px;
        min-height: 48px;
    }

    /* Section padding reduction */
    .fs-intro,
    .fs-gallery,
    .fs-amenities,
    .fs-pricing,
    .fs-booking,
    .fs-contact {
        padding: 60px 16px;
    }

    /* Gallery - 2 columns on tablet-small */
    .fs-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .fs-gallery-item,
    .fs-gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    /* Amenities grid adjustment */
    .fs-amenities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fs-amenity-card {
        padding: 24px 20px;
    }

    /* Pricing adjustments */
    .fs-price-amount {
        font-size: 2.5rem;
    }

    .fs-price-card {
        padding: 35px 25px;
    }

    .fs-price-features {
        gap: 10px 20px;
    }

    /* Contact section */
    .fs-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .fs-contact-details {
        align-items: center;
    }

    /* Increased touch target for contact links */
    .fs-contact-item {
        padding: 10px 0;
        min-height: 44px;
    }

    /* Form adjustments */
    .fs-form-grid {
        grid-template-columns: 1fr;
    }

    .fs-form-group.fs-form-small,
    .fs-form-group.fs-form-full {
        grid-column: span 1;
    }

    .fs-booking-form {
        padding: 30px 20px;
    }

    /* Increased touch targets for form inputs */
    .fs-form-group input,
    .fs-form-group select,
    .fs-form-group textarea {
        padding: 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        min-height: 50px;
    }

    .fs-checkbox-label {
        font-size: 13px;
        padding: 8px 0;
    }

    .fs-checkmark {
        width: 26px;
        height: 26px;
    }

    /* Lightbox navigation - larger touch targets */
    .fs-lightbox-close,
    .fs-lightbox-nav {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .fs-lightbox-prev { left: 10px; }
    .fs-lightbox-next { right: 10px; }

    /* Promo section */
    .fs-promo {
        padding: 40px 16px;
    }

    .fs-promo h3 {
        font-size: 1.4rem;
    }
}

/* Small mobile breakpoint - 480px */
@media (max-width: 480px) {
    /* Further reduce padding */
    .fs-intro,
    .fs-gallery,
    .fs-amenities,
    .fs-pricing,
    .fs-booking,
    .fs-contact {
        padding: 50px 12px;
    }

    /* Gallery - single column */
    .fs-gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .fs-highlights {
        gap: 25px;
        flex-direction: column;
    }

    .fs-highlight-number {
        font-size: 2.4rem;
    }

    /* Pricing further scaled down */
    .fs-price-amount {
        font-size: 2.2rem;
    }

    .fs-price-card {
        padding: 28px 18px;
    }

    .fs-price-features {
        flex-direction: column;
        gap: 12px;
    }

    /* Full-width buttons */
    .fs-btn-submit,
    .fs-btn-book {
        width: 100%;
        padding: 18px 24px;
        min-height: 54px;
    }

    .fs-btn-primary {
        display: block;
        width: calc(100% - 40px);
        max-width: 300px;
        text-align: center;
    }

    /* Form padding */
    .fs-booking-form {
        padding: 24px 16px;
    }

    /* Contact map */
    .fs-contact-map {
        padding: 20px;
    }

    /* Footer */
    .fs-footer {
        padding: 25px 12px;
    }

    /* Lightbox - smaller padding for more image space */
    .fs-lightbox {
        padding: 10px;
    }

    .fs-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
    .fs-hero {
        padding-top: max(80px, env(safe-area-inset-top));
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .fs-lang-toggle {
        top: max(20px, env(safe-area-inset-top));
        right: max(20px, env(safe-area-inset-right));
    }

    .fs-footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }

    .fs-lightbox {
        padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    }

    @media (max-width: 768px) {
        .fs-lang-toggle {
            top: max(15px, env(safe-area-inset-top));
            right: max(15px, env(safe-area-inset-right));
        }

        .fs-hero {
            padding-top: max(60px, env(safe-area-inset-top));
        }
    }
}
