/* ===== IDCO — Styles par section ===== */

/* ── Navbar ── */
nav {
    position: fixed; top: 0; width: 100%; z-index: var(--z-nav);
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0px);
    transition: all 0.5s;
    padding: 0;
}
nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px var(--shadow);
}
.nav-container {
    max-width: 1300px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 50px;
    transition: padding 0.5s;
    gap: 16px;
    position: relative;
}
nav.scrolled .nav-container { padding: 16px 50px; }
.logo {
    display: flex; align-items: center; text-decoration: none; transition: all 0.5s;
    flex-shrink: 0;
}
.logo img {
    height: 80px; width: auto; max-width: min(200px, 28vw);
    object-fit: contain;
    transition: all 0.5s; mix-blend-mode: screen;
}
nav.scrolled .logo img { height: 60px; max-width: min(180px, 28vw); mix-blend-mode: multiply; }
.nav-links {
    display: flex; gap: clamp(14px, 2vw, 36px); list-style: none;
    align-items: center; flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
}
.nav-links a {
    text-decoration: none; color: rgba(255,255,255,0.85);
    font-size: clamp(0.62rem, 1.1vw, 0.75rem); font-weight: 500;
    letter-spacing: clamp(1px, 0.2vw, 2.5px); text-transform: uppercase;
    transition: all 0.4s; position: relative; padding-bottom: 4px;
    white-space: nowrap;
}
nav.scrolled .nav-links a { color: var(--text-light); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    width: 0; height: 1px; background: var(--gold);
    transition: all 0.4s; transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a:focus-visible::after { width: 100%; }
nav.scrolled .nav-links a:hover { color: var(--gold); }
.hamburger {
    display: none; cursor: pointer; flex-direction: column; gap: 6px;
    background: none; border: none; padding: 8px;
}
.hamburger span { width: 28px; height: 1.5px; background: var(--white); transition: 0.4s; display: block; }
nav.scrolled .hamburger span { background: var(--text); }

/* ── Hero ── */
.hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    background: var(--dark);
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 30%, #0d0d0d 100%);
    z-index: 0;
}
.hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.05) 0%, transparent 60%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="%23c9a96e11"/></svg>');
    background-size: 30px 30px; z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 30px; }
.hero-badge {
    display: inline-block; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 10px 28px; border-radius: 50px; margin-bottom: 40px;
    animation: fadeInDown 1s ease 0.2s both;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem; font-weight: 300; color: var(--white);
    letter-spacing: 4px; line-height: 1.1; margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--gold); }
.hero .tagline {
    font-size: 0.9rem; font-weight: 300;
    color: rgba(255,255,255,0.5); letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s both;
}
.hero-btns {
    display: flex; gap: 20px; justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}
.scroll-line {
    position: absolute; bottom: 40px;
    left: 50%; transform: translateX(-50%); z-index: 2;
}
.scroll-line::after {
    content: ''; display: block; width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ── About ── */
#about { background: var(--white); }
.about-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image {
    width: 100%; height: 550px;
    background: linear-gradient(135deg, #e8e0d4, #d4c5a9);
    position: relative; overflow: hidden;
}
.about-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-founder {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(26,26,26,0.75));
    color: #fff; font-size: 0.85rem; font-weight: 500;
}
.about-founder strong { display: block; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; color: var(--gold); }
.about-image-wrapper::after {
    content: ''; position: absolute; top: 30px; left: 30px; right: -30px; bottom: -30px;
    border: 1px solid #c9a96e33; z-index: -1;
}
.about-text h2, .about-text h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem; font-weight: 300; margin-bottom: 24px; color: #222; line-height: 1.3;
}
.about-text h2 em, .about-text h3 em { font-style: italic; color: var(--gold); }
.about-text p { color: var(--text-muted); line-height: 2; margin-bottom: 20px; font-size: 0.9rem; font-weight: 300; }
.about-stats {
    display: flex; gap: 40px; margin-top: 40px;
    padding-top: 40px; border-top: 1px solid var(--border-light);
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 300; color: var(--gold);
    transition: all 0.3s;
}
.stat-label {
    font-size: 0.7rem; color: var(--text-pale); text-transform: uppercase;
    letter-spacing: 2px; margin-top: 4px;
}

/* ── Process ── */
#process { background: var(--off-white); position: relative; }
.process-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.process-card {
    text-align: center; padding: 50px 30px;
    background: var(--white); transition: all 0.5s; position: relative;
}
.process-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px var(--shadow); }
.process-number {
    font-family: var(--font-heading);
    font-size: 3.5rem; font-weight: 300; color: #c9a96e22; margin-bottom: 20px; line-height: 1;
}
.process-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 20px; }
.process-card h3, .process-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 500; color: #222; margin-bottom: 12px;
}
.process-card p { font-size: 0.82rem; color: var(--text-pale); line-height: 1.8; font-weight: 300; }

/* ── Book / Portfolio ── */
#book { background: var(--white); }
.book-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.book-card { position: relative; height: 450px; overflow: hidden; cursor: pointer; }
.book-card-bg {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e8ddd0, #d4c5a9) center/cover no-repeat;
    transition: transform 0.8s ease;
}
.book-card:hover .book-card-bg { transform: scale(1.08); }
.book-card-overlay {
    position: absolute; inset: 0;
    background: rgba(26,26,26,0);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: all 0.5s;
}
.book-card:hover .book-card-overlay { background: rgba(26,26,26,0.7); }
.book-card-overlay .card-tag {
    font-size: 0.6rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); opacity: 0; transform: translateY(10px);
    transition: all 0.5s 0.1s; margin-bottom: 10px;
}
.book-card-overlay h3 {
    font-family: var(--font-heading);
    color: white; font-size: 1.6rem; font-weight: 400;
    opacity: 0; transform: translateY(15px);
    transition: all 0.5s 0.15s; margin-bottom: 8px;
}
.book-card-overlay p {
    color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 300;
    opacity: 0; transform: translateY(20px); transition: all 0.5s 0.2s;
}
.book-card:hover .book-card-overlay .card-tag,
.book-card:hover .book-card-overlay h3,
.book-card:hover .book-card-overlay p { opacity: 1; transform: translateY(0); }

/* ── Categories (Decoration / Evenementiel) ── */
.category-section { padding: 120px 50px; position: relative; }
#decoration { background: var(--white); }
#evenementiel { background: var(--off-white); }
.category-header { text-align: center; margin-bottom: 60px; }
.category-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.5vw, 2.8rem); font-weight: 300; color: #222;
    margin-bottom: 16px; line-height: 1.15;
    max-width: 100%; padding: 0 12px;
    overflow-wrap: break-word; hyphens: manual;
}
.category-header h2 em { font-style: italic; color: var(--gold); }
.category-header p {
    color: var(--text-pale); font-size: 0.88rem; font-weight: 300;
    max-width: 550px; margin: 0 auto; line-height: 1.8;
}

/* ── Parallax divider ── */
.parallax-divider {
    height: 400px;
    background: linear-gradient(rgba(26,26,26,0.75), rgba(26,26,26,0.75)),
                linear-gradient(135deg, #2c2c2c, var(--dark));
    background-attachment: fixed; background-size: cover;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.parallax-content { max-width: 700px; padding: 0 30px; }
.parallax-content blockquote {
    font-family: var(--font-heading);
    font-size: 2rem; font-weight: 300; color: var(--white);
    font-style: italic; line-height: 1.6; margin-bottom: 20px;
}
.parallax-content cite {
    font-style: normal; font-size: 0.7rem; color: var(--gold);
    letter-spacing: 4px; text-transform: uppercase;
}

/* ── Reservation ── */
#reservation { background: var(--white); }
.calendar-container { max-width: 550px; margin: 0 auto; text-align: center; }
.calendar-widget { background: var(--white); padding: 36px; box-shadow: 0 10px 50px var(--shadow); margin-bottom: 30px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cal-header h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; color: #222; }
.cal-nav {
    background: none; border: 1px solid var(--border);
    width: 38px; height: 38px; cursor: pointer; color: var(--gold);
    transition: all 0.3s; font-size: 0.85rem;
}
.cal-nav:hover:not(.cal-nav-disabled) { background: var(--gold); color: white; border-color: var(--gold); }
.cal-nav-disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.cal-days-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 12px; }
.cal-days-header span { font-size: 0.65rem; color: var(--text-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
    border: none; background: none; color: var(--text);
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--off-white); color: var(--gold); }
.cal-day.selected { background: var(--gold); color: white; }
.cal-day.today { border: 1px solid var(--gold); }
.cal-day.disabled { color: #ddd; cursor: default; }
.cal-day.cal-day--ferme {
    background: #e8e8e8;
    color: #999;
    cursor: not-allowed;
    border-radius: 4px;
}
.cal-day.cal-day--dispo {
    background: #f5f0e8;
    color: #444;
    border-radius: 4px;
    border: 1px solid #e8dcc8;
}
.cal-day.cal-day--dispo:hover:not(.disabled) {
    background: #ede4d6;
    color: var(--gold);
    border-color: var(--gold);
}
.cal-day.cal-day--dispo.selected {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}
.cal-legend-swatch {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 4px;
    border: 1px solid #ddd;
}
.cal-legend-swatch--dispo { background: #f5f0e8; border-color: #e8dcc8; }
.cal-legend-swatch--ferme { background: #e8e8e8; border-color: #ccc; }
.cal-day.empty { cursor: default; }
.booking-form {
    background: var(--white); padding: 36px;
    box-shadow: 0 10px 50px var(--shadow);
    max-width: 550px; margin: 0 auto; animation: fadeInUp 0.4s ease;
}
.booking-form h3 {
    font-family: var(--font-heading);
    text-align: center; margin-bottom: 24px; color: #222; font-size: 1.3rem; font-weight: 400;
}
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.time-slot {
    padding: 8px 20px; border: 1px solid var(--border); background: var(--white);
    cursor: pointer; font-size: 0.8rem; transition: all 0.3s; color: var(--text-light);
}
.time-slot--dispo {
    background: #f5f0e8;
    border-color: #e8dcc8;
    color: #444;
}
.time-slot--dispo:hover { border-color: var(--gold); color: var(--gold); }
.time-slot--ferme {
    background: #e8e8e8;
    border-color: #ddd;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.85;
}
.time-slot:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.time-slot.selected { background: var(--gold); color: white; border-color: var(--gold); }
.time-slots-empty { margin-top: 0; }
.booking-form input, .booking-form select {
    width: 100%; padding: 14px 18px; margin-bottom: 14px;
    border: 1px solid var(--border); font-family: inherit; font-size: 0.85rem;
    outline: none; transition: border-color 0.3s; color: var(--text);
}
.booking-form input:focus, .booking-form select:focus { border-color: var(--gold); }
.booking-submit {
    width: 100%; padding: 16px; background: var(--gold);
    color: white; border: none; font-size: 0.7rem; font-weight: 600;
    cursor: pointer; letter-spacing: 3px; text-transform: uppercase;
    transition: all 0.4s; margin-top: 8px;
}
.booking-submit:hover { background: var(--gold-hover); }
.booking-submit:disabled { background: #ddd; cursor: not-allowed; }

/* ── Contact ── */
#contact { background: var(--dark); color: var(--white); position: relative; }
#contact .section-label { color: var(--gold); }
#contact .section-title { color: var(--white); }
#contact .section-title em { color: var(--gold); }
#contact .section-desc { color: rgba(255,255,255,0.4); }
.contact-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info-list { list-style: none; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
.contact-info-list i { font-size: 1rem; color: var(--gold); width: 20px; text-align: center; margin-top: 4px; }
.contact-info-list .info-content h3, .contact-info-list .info-content h4 {
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px;
    color: rgba(255,255,255,0.6); margin-bottom: 8px; font-weight: 500;
}
.contact-info-list .info-content p { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.7; font-weight: 300; }
.contact-info-list .info-content a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.contact-info-list .info-content a:hover { color: #e0c48a; }
.social-links { display: flex; gap: 14px; margin-top: 30px; }
.social-links a {
    width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4); font-size: 0.95rem;
    transition: all 0.4s; text-decoration: none;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: white; transform: translateY(-3px); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: #ddd; padding: 16px 20px; font-family: inherit; font-size: 0.85rem;
    outline: none; transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.contact-form select { color: var(--text-pale); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form button {
    padding: 18px; background: var(--gold); color: white; border: none;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    cursor: pointer; transition: all 0.4s;
}
.contact-form button:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ── Partenaires ── */
#partenaires { background: var(--off-white); padding: 80px 50px; }
.partners-grid {
    max-width: 1000px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px 50px;
}
.partners-grid img {
    max-height: 56px; max-width: 160px; width: auto; height: auto;
    object-fit: contain; filter: grayscale(0.4); opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s;
}
.partners-grid a:hover img { filter: grayscale(0); opacity: 1; }

/* ── Catalogue fiches ── */
.fiches-catalog { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.fiches-category { margin-bottom: 36px; }
.fiches-category h3 {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 500;
    color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light);
}
.fiches-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.fiche-link {
    display: flex; align-items: center; gap: 16px; padding: 20px 22px;
    background: #fff; border: 1px solid #e8e0d4; text-decoration: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.fiche-link:hover { border-color: var(--gold); box-shadow: 0 8px 24px var(--shadow); }
.fiche-link i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; width: 28px; text-align: center; }
.fiche-link-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: #222; margin-bottom: 3px; }
.fiche-link-desc { font-size: 0.75rem; color: #999; font-weight: 300; line-height: 1.4; }

/* ── Google Maps ── */
.map-container { width: 100%; height: 400px; filter: grayscale(0.8) contrast(1.1); transition: filter 0.5s; }
.map-container:hover { filter: grayscale(0) contrast(1); }
.map-container iframe { width: 100%; height: 100%; border: none; }
.map-cta { text-align: center; padding: 18px 20px 28px; background: var(--dark); }
.map-cta a {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--gold); text-decoration: none; font-size: 0.9rem; font-weight: 500;
    border: 1px solid rgba(201,169,110,0.4); border-radius: 999px; padding: 10px 22px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.map-cta a:hover { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }

/* ── Footer ── */
footer { background: var(--dark-bg); text-align: center; padding: 40px 50px; }
footer p { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 2px; font-weight: 300; }
footer span { color: var(--gold); }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
footer a:hover { color: var(--gold); }

/* ── Pricing section ── */
#pricing { background: var(--white); }
#testimonials { background: var(--white); }
#faq { background: var(--off-white); }

/* ── Back to top ── */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--gold); color: white;
    border: none; font-size: 1rem; cursor: pointer;
    z-index: var(--z-back-to-top);
    opacity: 0; visibility: hidden; transition: all 0.4s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold-hover); transform: translateY(-3px); }

/* ── WhatsApp ── */
.whatsapp-btn {
    position: fixed; bottom: 30px; left: 30px;
    width: 56px; height: 56px;
    background: #25d366; color: var(--white);
    border: none; border-radius: 50%;
    font-size: 1.6rem; cursor: pointer;
    z-index: var(--z-whatsapp);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.4s;
    display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ── Fiche card ── */
.fiche-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-md);
    border-color: var(--gold);
}

/* Menu burger : largeur intermediaire (tablette / petit ecran) ou les liens
   "Decoration" / "Evenementiel" debordent sur le logo ou hors ecran */
@media (max-width: 1100px) {
    .nav-container { padding: 16px 24px; }
    nav.scrolled .nav-container { padding: 14px 24px; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column; padding: 30px; gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        align-items: stretch;
        max-height: min(70vh, 520px);
        overflow-y: auto;
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        color: var(--text-light);
        white-space: normal;
        text-align: center;
        padding: 8px 0;
    }
    nav.scrolled .nav-links a { color: var(--text-light); }
    .nav-links a:hover { color: var(--gold); }
    .hamburger { display: flex; }
}

/* Responsive sections */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .book-grid { grid-template-columns: repeat(2, 1fr); }
    .parallax-divider { background-attachment: scroll; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero-btns { flex-direction: column; align-items: center; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { height: 350px; }
    .about-image-wrapper::after { display: none; }
    .process-grid { grid-template-columns: 1fr; }
    .book-grid { grid-template-columns: 1fr; }
    .book-card { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .map-container { height: 300px; }
    .parallax-divider { height: 300px; }
    .parallax-content blockquote { font-size: 1.4rem; }
}
