/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from Reference Images */
    --primary-blue: #1a4b6b;
    --secondary-blue: #2c5f7f;
    --accent-teal: #4a9b9b;
    --warm-beige: #f5f1e8;
    --cream: #faf8f3;
    --dark-navy: #0f2a3d;
    --gold-accent: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --text-headers: #707070;
    --text-body: #6f6f6f;
    --overlay-dark: rgba(15, 42, 61, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.9);
}

/* Typography System - Elegant Sans-Serif Font System */
body {
    font-family: 'Inter', sans-serif; /* Primary font for all text */
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    background-color: var(--warm-beige)
}

/* Primary Headings - Bold Weight */
h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 800; /* Extra bold for main headlines */
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2, .feature-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800; /* Bold for section headlines */
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Secondary Headings - Medium Weight */
h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 800; /* Semibold for important subheadings */
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h4, h5, h6, .nav-menu li a {
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium weight for minor headings */
    line-height: 1.3;
}

/* Special Elements with Unique Styling */
.cta-brochure, .spec-label {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Accent Elements */
blockquote, cite, .hero-subtitle, .spec-value {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
}

/* Fine Typography Adjustments */
.small-text {
    font-size: 0.875rem;
    font-weight: 400;
}

.large-text {
    font-size: 1.125rem;
    font-weight: 400;
}

.extra-bold {
    font-weight: 700;
}

.light-text {
    font-weight: 300;
}

.container {
    margin: 0 auto;
}

.cta-brochure {
    display: flex;
    width: fit-content;
    justify-content: center;
    justify-self: center;
    align-self: center;
    background-color: var(--accent-teal);
    color: white;
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    border-radius: 30px;
    border: none;
    text-decoration: none;
    font-weight: 900;
    transition: background-color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 106, 113, 0.2);
}

.cta-brochure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    transform: skewX(-15deg);
    z-index: 1;
}

.cta-brochure:hover::before {
    transform: translateX(200%) skewX(-15deg);
}

.cta-brochure:hover {
    overflow: hidden;
    background-color: var(--accent-teal);
    color: white;
    box-shadow: 0 10px 30px rgba(184, 140, 93, 0.15);
}

/* Shared Section Title Styles */

/* Read More functionality */
.extra-content {
    opacity: 0;
    display: none;
    transition: opacity 0.4s ease;
    pointer-events: none; /* avoid select when hidden */
}

.extra-content.visible {
    display:inline-block;
    opacity: 1;
    pointer-events: auto;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-teal);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 0.5rem;
    font-size: 1.3rem;
}

/* Shared Section Title Styles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.4rem;
    color: #707070;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-brochure {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .selector-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .versions-section h2,
    .gallery-section h2,
    .amenities-section h2 {
        font-size: 2rem;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
}
