:root {
    --slate-blue: #708090; 
    --cream: #FFFDD0;     
    --soft-gray: #f4f4f4;
    --white: #ffffff;
    --text-dark: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    scroll-behavior: smooth;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: var(--slate-blue);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.announcement-bar span {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* --- NAVIGATION --- */
nav {
    background: var(--white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--slate-blue);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-blue);
    margin-left: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- HERO --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('https://images.unsplash.com/photo-1513245533132-aa7f7058274a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; max-width: 600px; margin-bottom: 30px; font-weight: 300; }

.cta-button {
    background-color: var(--white);
    color: var(--slate-blue);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.4s;
    border: 1px solid var(--white);
}
.cta-button:hover { background-color: transparent; color: var(--white); }

/* --- PHILOSOPHY SECTION --- */
.section { padding: 100px 10%; text-align: center; }

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
    margin-top: 50px;
}

.about-text { flex: 1.2; }
.about-image {
    flex: 1;
    width: 50%;
    border-radius: 5px;
    box-shadow: 15px 15px 0 var(--slate-blue);
}

h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    color: var(--slate-blue); 
    margin-bottom: 25px; 
}

.accent-text {
    color: var(--slate-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

/* --- SECTION BASE --- */
.section { padding: 80px 10%; text-align: center; }
h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--slate-blue); margin-bottom: 25px; }
.accent-text { color: var(--slate-blue); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 3px; display: block; margin-bottom: 10px; }

/* --- PHILOSOPHY PILLARS --- */
.pillars { background-color: var(--soft-gray); }
.pillar-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
.pillar { background: var(--white); padding: 50px 30px; border-bottom: 4px solid var(--cream); transition: 0.3s; }
.pillar:hover { transform: translateY(-5px); border-bottom-color: var(--slate-blue); }
.pillar h3 { font-family: 'Playfair Display', serif; color: var(--slate-blue); margin-bottom: 15px; }

/* --- GALLERY STYLE --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#adults {
    background-color: var(--soft-gray);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- POLICIES SECTION --- */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
    margin-top: 50px;
}

.policy-card {
    background-color: var(--soft-gray);
    padding: 35px;
    border-radius: 4px;
}

.policy-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--slate-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.policy-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

/* --- PAYMENT SECTION --- */
.payment-section {
    padding: 100px 10%;
    background-color: var(--soft-gray);
    text-align: center;
}

.payment-container {
    max-width: 900px;
    margin: 40px auto 0;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-top: 30px;
}

.payment-method h3 {
    font-family: 'Playfair Display', serif;
    color: #9CAF88; /* Sage */
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-style: italic;
}

.method-list {
    list-style: none;
    padding: 0;
}

.method-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #7D746D;
    display: flex;
    align-items: center;
}

.method-list li::before {
    content: "•";
    color: #E5C3C6; /* Rose */
    margin-right: 10px;
    font-weight: bold;
}

.important-notice {
    grid-column: 1 / -1;
    background-color: #FFFDF0; /* Very soft highlight */
    padding: 25px;
    border-left: 4px solid #E5C3C6; /* Rose accent */
    margin-top: 10px;
}

.important-notice h4 {
    color: #7D746D;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.important-notice p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.cash-highlight {
    color: #9CAF88;
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .payment-grid { grid-template-columns: 1fr; }
    .payment-container { padding: 30px; }
}

/* --- LINKS SECTION --- */
.custom-hub-section {
        padding: 80px 10%;
        text-align: center;
        background-color: #F9F7F2; /* Warm Sand */
    }

.hub-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #9CAF88; /* Sage */
    margin-bottom: 10px;
    font-weight: 400;
    font-style: italic;
}

.hub-subtitle {
    color: #E5C3C6; /* Rose */
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 30px;
}

.links-wrapper {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.boutique-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 20px 35px;
    text-decoration: none;
    color: #7D746D; /* Taupe */
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(156, 175, 136, 0.2);
}

.boutique-button:hover {
    background-color: #ffffff;
    border-color: #9CAF88;
    color: #9CAF88;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(156, 175, 136, 0.1);
}

.boutique-button span.arrow {
    color: #E5C3C6; /* Rose */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.boutique-button:hover span.arrow {
    transform: translateX(5px);
}

/* --- FOOTER --- */
footer { background: var(--text-dark); color: var(--white); padding: 60px 10% 40px; text-align: center; }
.footer-contact { margin: 20px 0; font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: var(--cream); text-decoration: none; }
.social-links { margin-bottom: 25px; }
.social-links a { color: var(--white); text-decoration: none; margin: 0 15px; font-size: 0.75rem; letter-spacing: 2px; opacity: 0.7; }


@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section { padding: 50px 5%; }
}
