/* ============================================== */
/* --- GLOBAL RESET & VARIABLES --- */
/* ============================================== */
:root {
    --primary-blue: #426A8D;
    --secondary-blue: #95B8D6;
    --accent-gold: #FFD6A6;
    --text-dark: #35302A;
    --text-grey: #5d7185;
    --text-subtitle: #4A6583; 
    --bg-cream: #FDF9F5;
    --bg-white: #FFFFFF;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-grey);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* ============================================== */
/* --- HERO & HEADINGS --- */
/* ============================================== */
.headline { width: 100%; margin-top: -1px; line-height: 0; }
.headline-image img { width: 100%; height: auto; display: block; }

.info-section {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 1rem 2rem;
    text-align: center;
}

.alternate-bg {
    background-color: #F8FAFC;
    width: 100%;
    padding: 5rem 1.5rem;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--primary-blue);
}

.info-section h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom:0.5rem; line-height: 1.1; }
.info-section h2 { font-size: 2.2rem; margin-bottom: 1rem; color: #426A8D; }
.info-section h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #C78D4E; 
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.intro-paragraph { font-size: 1.15rem; max-width: 800px; margin: 0 auto 3rem; color: var(--text-grey); }
.section-subtitle { margin-bottom: 3rem; font-style: italic; opacity: 0.9; }

/* ============================================== */
/* --- NEIGHBORHOOD CARDS (WITH IMAGES) --- */
/* ============================================== */
.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.neighborhood-card {
    background: #fff;
    border: 1px solid #E6EBF0;
    border-radius: 12px;
    overflow: hidden; /* Keeps image inside rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(66, 106, 141, 0.1);
    border-color: var(--secondary-blue);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body { padding: 1.5rem; }

.neighborhood-card h4 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #426A8D; }

.sub-label {
    font-weight: 1000;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--secondary-blue);
    margin-bottom: 1.2rem;
    letter-spacing: 0.1em;
    display: block;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}
.card-link:hover { border-bottom-color: var(--primary-blue); }

/* ============================================== */
/* --- MANOR SECTION (WITH ANIMATION) --- */
/* ============================================== */
.manor-highlight {
    background-color: var(--bg-cream);
    padding: 5rem 2rem;
    border-radius: 20px;
    margin-bottom: 5rem;
}

.manor-rooms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.room-type-block {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
    text-align: left;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.room-type-block h4 {
    margin-bottom: 0.8rem;
}


.room-type-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.room-type-block.premium { border-color: var(--accent-gold); }

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ============================================== */
/* --- ACCENT GOLD PRIMARY BUTTON --- */
/* ============================================== */

.btn-primary {
    /* Responsive sizing based on your layout */
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(0.7rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    
    /* Using your Accent Gold */
    background-color: #FFD6A6; 
    color: #35302A !important; /* Dark text for better legibility on orange */
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    
    /* Shape & Interaction */
    border: none;
    border-radius: 50px; 
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Centering */
    display: block; 
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #ffc98f; /* A slightly deeper, warmer orange */
    transform: translateY(-2px) scale(1.01);
    /* Shadow adjusted to match the warm gold glow */
    box-shadow: 0 4px 15px rgba(255, 214, 166, 0.6);
    color: #35302A !important;
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(255, 214, 166, 0.6);
    outline-offset: 3px;
}


/* ============================================== */
/* --- DISCOVERY GRID (ICONS) --- */
/* ============================================== */


.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.discovery-item {
    text-align: left;
    padding: 2rem;
    background: #fff;
    border: 1px solid #E6EBF0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.2s ease;
}

/* ============================================== */
/* --- SOFT & ELEGANT HYPERLINKS --- */
/* ============================================== */

.discovery-item a {
    color: var(--primary-blue);
    /* Change from 700 to 500 for a medium, sophisticated weight */
    font-weight: 500; 
    text-decoration: none;
    /* Thinner 1px line with 60% opacity for a softer look */
    border-bottom: 1px solid rgba(255, 214, 166, 0.6); 
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.discovery-item a:hover {
    color: var(--secondary-blue);
    /* The underline becomes solid and matches the text on hover */
    border-bottom-color: var(--secondary-blue); 
    /* Removes the background highlight to keep it clean */
    background-color: transparent; 
}

/* Soften the 'strong' labels as well */
.discovery-item strong {
    color: var(--text-subtitle);
    font-weight: 500;
    text-transform: none; /* Removes the all-caps for a gentler feel */
    font-size: 0.95rem;
    letter-spacing: normal;
}

.discovery-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}
.disco-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.discovery-item h4 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--primary-blue); }

/* ============================================== */
/* --- VIDEO CONTAINER --- */
/* ============================================== */
/* --- Cinematic Wide Video --- */

/* --- Ultra-Wide Cinematic Video --- */
.video-wrapper {
    position: relative;
    /* Correct 16:9 ratio to remove black side-bars */
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;

    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    
    /* This makes the video wider than the text column */
    width: 115%;
    margin-left: -7.5%; /* Centers the oversized video */
    
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    background: #000;
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: none; 
    box-shadow: 0 20px 50px rgba(66, 106, 141, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Fix: Prevent side-scrolling on small screens */
@media (max-width: 1024px) {
    .video-wrapper {
        width: 100%;
        margin-left: 0;
    }
}

/* ============================================== */
/* --- ACCORDIONS (LOGISTICS & FAQ) --- */
/* ============================================== */
.accordion-section {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: left;
}

.accordion-item {
    background: #fff;
    border-bottom: 1px solid #E6EBF0;
    margin-bottom: 0.5rem;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 1rem;
    background: none;
    border: none;
    text-align: left;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-header:hover { color: var(--primary-blue); }

.accordion-header::after {
    content: '+';
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.accordion-item.active .accordion-header::after { content: '-'; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
}

.accordion-content p, .accordion-content li {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-grey);
}
.accordion-content a { color: var(--primary-blue); text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .info-section h1 { font-size: 2.5rem; }
    .manor-highlight { padding: 3rem 1.5rem; border-radius: 0; }
    /* .neighborhood-grid, .discovery-grid { grid-template-columns: 1fr; } */
  .neighborhood-grid {
        /* 1. Force a single column so cards stack */
        grid-template-columns: 1fr; 
        
        /* 2. Center the grid cells themselves */
        justify-items: center; 
        
        /* 3. Ensure no extra space on the sides */
        justify-content: center; 
    }

    .neighborhood-card {
        /* Ensure the card doesn't stretch to the full screen width */
        width: 100%;
        max-width: 400px;
        /* Centers the card block inside the grid cell */
        margin: 0 auto; 
    }
}


.reserveBtn{
    display: none;
}
.hidden {
    display: none !important;
}