
:root {
    --gold: #D4AF37;
    --gold-light: #f3dba3;
    --gold-dark: #aa8c2c;
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-light-grey: #252525;
    --text-white: #ffffff;
    --text-grey: #b0b0b0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; line-height: 1.2; font-weight: 700; }
h2 { font-size: 2.5rem; text-align: center; color: var(--gold); }
h3 { font-size: 1.4rem; color: var(--text-white); margin-bottom: 0.5rem; }
p { font-size: 1.05rem; color: var(--text-grey); margin-bottom: 1rem; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.section-padding { padding: 100px 0; }


.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    border: none;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    margin-left: 15px;
}
.btn-secondary:hover {
    background-color: var(--gold);
    color: #000;
}

/* --- Navigation --- */
header {
    background-color: rgba(15, 15, 15, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.nav-links a:hover { color: var(--gold); }
.btn-login { border: 1px solid var(--gold); padding: 8px 20px; border-radius: 4px; color: var(--gold) !important; }
.btn-login:hover { background: var(--gold); color: #000 !important; }
.hamburger { display: none; font-size: 1.5rem; color: var(--gold); cursor: pointer; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: url('images/sugar-daddy-belgium.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.hero-buttons { margin-top: 30px; }

/* --- Features (Icons) --- */
.icon-gold { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #333;
    transition: 0.3s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-5px); }

/* --- Lifestyle Section (New) --- */
.lifestyle-section { background-color: var(--bg-light-grey); }
.lifestyle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.lifestyle-item { background: var(--bg-card); overflow: hidden; border-radius: 8px; transition: 0.3s; }
.lifestyle-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.lifestyle-item img { width: 100%; height: 250px; object-fit: cover; transition: 0.5s; }
.lifestyle-item:hover img { transform: scale(1.05); }
.lifestyle-text { padding: 25px; text-align: center; }
.lifestyle-text h3 { color: var(--gold); font-size: 1.3rem; }

/* --- How it works --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.step-number { font-size: 4rem; font-family: var(--font-heading); color: var(--gold); opacity: 0.2; line-height: 1; margin-bottom: 10px; }

/* --- Testimonials (New) --- */
.testimonials { background-color: var(--bg-light-grey); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    border-top: 3px solid var(--gold);
}
.quote-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 20px; }
.testimonial-card p { font-style: italic; font-size: 1rem; color: #ccc; }
.author { margin-top: 20px; border-top: 1px solid #333; padding-top: 15px; }
.author h4 { font-size: 1.1rem; color: #fff; margin-bottom: 2px; }
.author span { font-size: 0.9rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* --- Security Section (New) --- */
.security-section {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/sugar-daddy-dating.jpg');
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
}
.security-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; }
.security-text { flex: 1; min-width: 300px; }
.security-text h2 { color: #fff; text-align: left; }
.security-list li { margin-bottom: 15px; font-size: 1.1rem; display: flex; align-items: center; gap: 10px; }
.security-list i { color: var(--gold); }
.security-badges { display: flex; gap: 30px; color: rgba(255,255,255,0.5); }

/* --- FAQ (New) --- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-item { margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 20px; }
.faq-item h3 { font-family: var(--font-body); font-weight: 700; color: #fff; font-size: 1.2rem; margin-bottom: 10px; }

/* --- CTA --- */
.cta-section { background: linear-gradient(45deg, #111, #222); padding: 120px 0; text-align: center; border-top: 1px solid #333; }

/* --- Footer --- */
footer { background: #000; padding: 70px 0 20px; border-top: 2px solid var(--gold); }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer-col { flex: 1; min-width: 200px; }
.footer-col h3 { color: var(--gold); margin-bottom: 20px; font-size: 1.4rem; }
.footer-col h4 { color: #fff; margin-bottom: 20px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: #888; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); padding-left: 5px; }
.social-links { margin-top: 20px; }
.social-links a { display: inline-block; width: 40px; height: 40px; background: #222; color: #fff; text-align: center; line-height: 40px; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.social-links a:hover { background: var(--gold); color: #000; }
.copyright { text-align: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid #222; font-size: 0.9rem; color: #555; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; }
    .btn-secondary { margin-left: 0; }
    
    .nav-links { display: none; }
    .hamburger { display: block; }
    
    .faq-grid, .security-content { grid-template-columns: 1fr; flex-direction: column; }
    .security-badges { justify-content: center; }
}

/* --- (Mobile Responsiveness) --- */
@media (max-width: 768px) {
    
    .nav-links {
        position: absolute;
        right: 0px;
        top: 60px; 
        background-color: #1a1a1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateY(-150%); 
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--gold);
    }

    
    .nav-links.active {
        transform: translateY(0%);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .hamburger {
        display: block; 
        padding-right: 20px;
    }


    h1 {
        font-size: 2.2rem;     }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
        padding: 0 10px;    }

    .section-padding {
        padding: 60px 0; 
    }

    .container {
        padding: 0 15px;
    }

  
    .hero-content {
        width: 100%;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .btn-secondary {
        margin-left: 0;
    }

   
    .feature-grid, 
    .lifestyle-grid, 
    .testimonial-grid, 
    .steps-grid, 
    .faq-grid, 
    .security-content, 
    .footer-container {
        grid-template-columns: 1fr; 
        display: grid;
        gap: 30px;
    }


    .security-content {
        flex-direction: column;
        text-align: center;
    }
    
    .security-text h2 {
        text-align: center;
    }
    
    .security-list {
        display: inline-block;
        text-align: left;
    }
    
    .security-badges {
        justify-content: center;
        margin-top: 20px;
    }
}


@media (max-width: 380px) {
    h1 { font-size: 1.8rem; }
    .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.9rem; }
}

/* =========================================
    (Sugar Baby, Blog, Article)
   ========================================= */

/* --- 1. Sugar Baby--- */
.baby-hero {
    background-image: url('images/sugar-baby-belgium.jpg'); 
    
}

/* (Grid 2 Column) */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.gold-list {
    margin: 20px 0 30px 0;
}

.gold-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #ddd;
}

.gold-list i {
    color: var(--gold);
    margin-right: 10px;
}

/* --- 2. Blog  --- */
.page-header {
    background-color: #1a1a1a;
    padding: 120px 0 60px; 
    text-align: center;
    border-bottom: 1px solid #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));    gap: 30px;
}

.blog-card {
    background-color: var(--bg-card);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.blog-cat {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h3 a {
    color: #fff;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--gold);
}

.blog-content p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 20px;
    flex-grow: 1; 
}

.read-more {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: #fff;
    gap: 12px;
}


.pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 10px 18px;
    margin: 0 5px;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

.pagination a.active, .pagination a:hover {
    background-color: var(--gold);
    color: #000;
    border-color: var(--gold);
}


.article-container {
    max-width: 800px; 
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs i { font-size: 0.7rem; margin: 0 10px; }
.breadcrumbs span { color: var(--gold); }

.article-header { text-align: center; margin-bottom: 40px; }
.article-header h1 { font-size: 2.8rem; margin-bottom: 20px; color: #fff; }
.meta-info { color: #888; font-size: 0.9rem; }
.meta-info span { margin: 0 10px; }

.featured-image { margin-bottom: 50px; }
.featured-image img { width: 100%; border-radius: 8px; }


.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #dcdcdc; 
    margin-bottom: 2rem;
}

.article-content .lead {
    font-size: 1.3rem;
    color: var(--gold);
    font-family: var(--font-heading);
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #fff;
}

.article-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style: disc; 
    color: #dcdcdc;
}

.article-content ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

blockquote {
    background-color: #1a1a1a;
    border-left: 4px solid var(--gold);
    padding: 30px;
    margin: 40px 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: #fff;
    text-align: center;
}

.share-buttons {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-buttons a {
    font-size: 1.2rem;
    color: #888;
}
.share-buttons a:hover { color: var(--gold); }

.post-navigation { margin-top: 40px; }


.related-posts h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}


@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;         gap: 40px;
    }
    
    .image-content { order: -1; }
    
    .article-header h1 { font-size: 2rem; }
    
    .article-content p { font-size: 1.05rem; }
    
    .blog-grid { grid-template-columns: 1fr; }
}

/* =========================================
   (Roadmap, Myth, Sidebar)
   ========================================= */


.bg-darker {
    background-color: #0d0d0d;
}

/* --- 1. Roadmap  --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px; 
    top: 0;
    bottom: 0;
    width: 2px;
    background: #333;
}

.timeline-item {
    position: relative;
    padding-left: 80px; 
    margin-bottom: 50px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 4px solid var(--bg-dark); 
}

.timeline-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* --- 2. Myths vs Truth (对比卡片) 样式 --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
}

.comparison-card.myth {
    background-color: #1a0f0f; 
    border-color: #442222;
}

.comparison-card.truth {
    background-color: #0f1a12; 
    border-color: #224422;
}

.comparison-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.myth h4 { color: #d45d5d; } 
.truth h4 { color: #5dd478; } 


.small-header {
    padding-top: 100px;
    padding-bottom: 30px;
    background-color: #1a1a1a;
    text-align: left;
}
.breadcrumbs-white { color: #888; font-size: 0.9rem; }

.article-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr; 
    gap: 50px;
    align-items: start; 
}

/* Sidebar Widgets */
.sidebar {
    position: sticky;
    top: 100px; 
}

.widget {
    background: var(--bg-card);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #333;
    border-radius: 8px;
}

.widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

/* Search Widget */
.search-widget form {
    display: flex;
}
.search-widget input {
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 10px;
    width: 100%;
}
.search-widget button {
    background: var(--gold);
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

/* Category Widget */
.category-widget ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
}
.category-widget a {
    display: flex;
    justify-content: space-between;
    color: #ccc;
    font-size: 0.95rem;
}
.category-widget a:hover { color: var(--gold); }
.category-widget span { color: #666; font-size: 0.8rem; }

/* Popular Posts Widget */
.small-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.small-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}
.small-post a {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 700;
}
.small-post a:hover { color: var(--gold); }

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #222, #111);
    border: 1px solid var(--gold);
    text-align: center;
}
.full-width { display: block; width: 100%; text-align: center; }

/* Article Adjustment */
.article-header { text-align: left; } 
.article-main { overflow: hidden; } 
@media (max-width: 900px) {
  
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

   
    .sidebar {
        position: static;
    }

    
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 60px; }
    .timeline-number { width: 40px; height: 40px; font-size: 1rem; }

    /* 4. Comparison Grid */
    .comparison-grid {
        grid-template-columns: 1fr; 
    }
}



/* 1. Profile Grid (Sneak Peek) */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.profile-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.profile-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.profile-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px); 
    transition: 0.5s;
}

.profile-card:hover .profile-img-box img {
    filter: blur(1px); 
    transform: scale(1.05);
}

.blur-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.blur-overlay i {
    font-size: 2rem;
    color: var(--gold);
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 50%;
}

.online-status {
    position: absolute;
    top: 15px; right: 15px;
    width: 12px; height: 12px;
    background-color: #2ecc71; 
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 2;
}

.profile-info {
    padding: 20px;
    text-align: center;
}

.profile-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.profile-info .location {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.profile-info .tag {
    display: inline-block;
    background: #333;
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* 2. Audience Split (Targeting) */
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; 
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
}

.audience-box {
    padding: 60px 40px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.daddy-box {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/sugar-daddy-suit.jpg');
    border-right: 1px solid #333;
}

.baby-box {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/sugar-baby-fashion.jpg');
}

.audience-content {
    text-align: center;
    max-width: 400px;
}

.audience-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.audience-content ul {
    text-align: left;
    margin-bottom: 30px;
    list-style: none;
}

.audience-content ul li {
    margin-bottom: 12px;
    color: #ddd;
    font-size: 1.05rem;
}

.audience-content ul i {
    color: var(--gold);
    margin-right: 10px;
}

/* 3. Perfect Date Section */
.perfect-date {
    background-color: var(--bg-light-grey);
}

.mini-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.mini-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.mini-feat i { font-size: 1.5rem; }
.mini-feat span { color: #fff; font-size: 0.9rem; }

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;     }
    
    .daddy-box {
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    .mini-features {
        justify-content: space-between;
    }
}



@media (max-width: 768px) {

   
    .audience-grid {
        grid-template-columns: 1fr;
        border: none; 
    }

    .audience-box {
        padding: 40px 20px; 
        border-right: none;
        border-bottom: 1px solid #333; 
    }
    
    
    .daddy-box, .baby-box {
        background-blend-mode: overlay;
        background-color: rgba(0,0,0,0.6); 
    }

    
    .perfect-date .grid-2-col {
        display: flex;
        flex-direction: column; 
        gap: 30px;
    }

    .perfect-date .date-image {
        order: -1; 
        width: 100%;
    }

    .mini-features {
        justify-content: space-around; 
        flex-wrap: wrap;
    }

    .mini-feat {
        flex: 1;
        min-width: 80px; 
    }

 
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);         gap: 15px; 
    }

   
    @media (max-width: 400px) {
        .profile-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .profile-img-box {
        height: 200px; 
    }
}


@media (max-width: 768px) {
   
    .roadmap-container {
        flex-direction: column;
        gap: 15px;
    }

    .roadmap-step {
        border-left: 3px solid var(--gold);
        border-bottom: none;
        padding: 15px;
    }

    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 10px;
    }

   
    .hero-brussel-premium h1 {
        font-size: 2.2rem !important;
        padding: 0 10px;
    }

    
    .z-layout-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .z-layout-item .image-content {
        order: -1; 
        margin-bottom: 20px;
    }
    
    .z-layout-item .text-content {
        text-align: center;
    }

    .gold-list {
        display: inline-block;
        text-align: left;
    }
}


.hero-brussel-premium {
    background-image: url('images/brussels-luxury.jpg');
    background-size: cover;
    background-position: center center; 
    background-repeat: no-repeat;
    
    background-attachment: fixed; 
}


@media (max-width: 768px) {
    .hero-brussel-premium {
        
        background-attachment: scroll !important; 
        background-position: center center !important; 
        
        
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

   
    /*  background-position: 50% 50% !important; */
}

/* Specifieke aanpassingen voor de regio-pagina */

/* Maak de hero iets korter op mobiel zodat de tekst direct zichtbaar is */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    /* Zorg dat de tekst en afbeelding goed wisselen op mobiel */
    .z-layout-item {
        display: flex;
        flex-direction: column;
    }
    
    .z-layout-item .image-content {
        order: -1; /* Afbeelding boven de tekst op mobiel */
        margin-bottom: 20px;
    }
}

/* De 'bg-darker' zorgt voor visuele scheiding tussen de vele zwarte secties */
.bg-darker {
    background-color: #0a0a0a;
}

/* Extra styling voor de profielkaarten (al in je css, maar voor de zekerheid) */
.profile-card {
    margin-bottom: 20px;
}

.gold-list {
    list-style: none;
    padding-left: 0;
}

.gold-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.gold-list i {
    color: var(--gold);
    min-width: 20px;
}