/* Keep the original hero split layout for non-full-width */
.hero-split-bd {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

/* Full width hero section - only when .full-width-hero is added */
.hero-split-bd.full-width-hero {
    display: block;  /* Override flex for full-width */
    position: relative;
    width: 100%;
    min-height: 80vh;
    margin-bottom: 60px; /* Keep consistent margin */
}

/* Hero image for full-width layout */
.hero-split-bd.full-width-hero .hero-image-bd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split-bd.full-width-hero .hero-image-bd img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show entire image */
    object-position: center center;
}

/* Hero text overlays the image for full-width */
.hero-split-bd.full-width-hero .hero-text-bd {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Optional: dark overlay for better readability */
.hero-split-bd.full-width-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
}

/* ============ CONTENT SECTION - KEEP ORIGINAL STYLES ============ */

/* Container should NOT be affected by hero changes */
.container-bd {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Content block styles - These should remain unchanged */
.content-block-bd {
    position: relative; /* Reset positioning */
    z-index: 2; /* Ensure content is above any absolute positioned elements */
    background: transparent; /* Or your original background */
}

/* Blog content styles - These should work as before */
.blog-body-content {
    /* Your original blog content styles */
}

.content-block-bd .intro-lead {
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    font-style: italic;
}

.content-block-bd .main-text {
    color: #bbb;
    line-height: 2;
    font-size: 1.1rem;
}

/* ============ HERO IMAGE FOR REGULAR LAYOUT ============ */
/* This only applies when NOT using full-width-hero */
.hero-split-bd:not(.full-width-hero) .hero-image-bd img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.hero-split-bd:not(.full-width-hero) .hero-text-bd {
    text-align: center;
}

.hero-split-bd:not(.full-width-hero) .hero-text-bd h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.hero-split-bd:not(.full-width-hero) .hero-text-bd .subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Back link styles */
.back-link {
    margin-top: 60px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.back-link .btn-outline {
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

.back-link .btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.premium-blog{
    padding:80px 20px;
    background:#0d0d0d;
}

.blog-container{
    max-width:900px;
    margin:auto;
}

.intro-lead{
    font-size:1.3rem;
    line-height:1.8;
    margin-bottom:50px;
    color:#ddd;
}

.blog-text{
    font-size:1.1rem;
    line-height:1.9;
    margin-bottom:40px;
    color:#ccc;
}

.blog-image-full{
    margin:60px 0;
}

.blog-image-full img{
    width:100%;
    border-radius:20px;
}

.blog-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin:60px 0;
}

.split-img img{
    width:100%;
    border-radius:20px;
}

.split-text{
    font-size:1.2rem;
    line-height:1.8;
    color:#ddd;
}

.blog-quote{
    font-size:1.5rem;
    font-style:italic;
    text-align:center;
    margin:80px 0;
    color:var(--gold);
}

@media(max-width:768px){
    .blog-split{
        grid-template-columns:1fr;
    }
}

.lazy-image img{
    width:100%;
    border-radius:20px;
    transition:filter 0.5s ease;
    filter:blur(15px);
}

.lazy-image img.loaded{
    filter:blur(0);
}

.luxury-blog{
padding:100px 20px;
background:#0a0a0a;
}

.luxury-container{
max-width:900px;
margin:auto;
}

.luxury-intro{
font-size:1.4rem;
line-height:1.9;
color:#eee;
margin-bottom:70px;
}

.luxury-text{
font-size:1.15rem;
line-height:2;
color:#ccc;
margin-bottom:50px;
position:relative;
}

.luxury-text:first-letter{
font-size:3rem;
float:left;
margin-right:12px;
color:var(--gold);
}

.luxury-fullscreen-image{
margin:80px 0;
}

.luxury-fullscreen-image img{
width:100%;
border-radius:22px;
filter:blur(15px);
transition:all .6s ease;
}

.luxury-fullscreen-image img.loaded{
filter:blur(0);
}

.luxury-quote{
font-size:1.8rem;
text-align:center;
font-style:italic;
margin:90px 0;
color:var(--gold);
}

.luxury-gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:80px;
}

.luxury-gallery-item img{
width:100%;
border-radius:16px;
filter:blur(12px);
transition:.6s;
}

.luxury-gallery-item img.loaded{
filter:blur(0);
}

.luxury-author{
text-align:center;
margin-top:100px;
}

.reveal{
opacity:0;
transform:translateY(40px);
transition:.7s;
}

.reveal.visible{
opacity:1;
transform:none;
}

@media(max-width:768px){
.luxury-gallery-grid{
grid-template-columns:1fr;
}
}


