/* ===== HERO FULLWIDTH SECTION ===== */
.fourseasons-hero-fullwidth {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: var(--hero-height, 100vh);
    min-height: var(--hero-min-height, 600px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-bg {
    background-size: contain;
    transition: background-size 0.3s ease;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1137px;
    width: 100%;
    margin: 0 auto;
    padding-right: 0;
    padding-left: var(--hero-content-left, 0);
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100%;
    padding-bottom: var(--hero-content-bottom, 4rem);
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 600px;
    margin-left: var(--hero-content-ml, 0);
    transform: translate(var(--hero-content-shift-x, 0), var(--hero-content-shift, 0));
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #E9E4DC;
    color: #2B2B2B;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-button:hover {
    background: #ffffff;
    color: #2B2B2B;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Horizontal Layout */
.hero-content.horizontal {
    flex-direction: row;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-content.horizontal .hero-title {
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

.hero-content.horizontal .hero-subtitle {
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

.hero-content.horizontal .hero-button {
    flex-shrink: 0;
    margin-top: 0;
}

/* Individual Element Layouts */
.hero-content.horizontal .hero-title.inline,
.hero-content.horizontal .hero-title.inline-block {
    margin-right: 1rem;
}

.hero-content.horizontal .hero-subtitle.inline,
.hero-content.horizontal .hero-subtitle.inline-block {
    margin-right: 1rem;
}

.hero-content.horizontal .hero-button.inline,
.hero-content.horizontal .hero-button.inline-block {
    margin-right: 1rem;
}

/* Block elements in horizontal layout */
.hero-content.horizontal .hero-title.block,
.hero-content.horizontal .hero-subtitle.block,
.hero-content.horizontal .hero-button.block {
    width: 100%;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 1137px;
        padding: 0 2rem; /* add safe padding only on smaller screens */
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        max-width: 1137px;
        padding: 0 2rem;
        padding-bottom: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Tablet: Adjust horizontal layout */
    .hero-content.horizontal {
        gap: 1.5rem;
    }
    
    .hero-content.horizontal .hero-title {
        font-size: 1.8rem;
        min-width: 180px;
    }
    
    .hero-content.horizontal .hero-subtitle {
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .fourseasons-hero-fullwidth {
        height: 30vh;
        min-height: 500px;
        --hero-content-left: 0;
    }
    
    .hero-container {
        max-width: 1137px;
        padding: 0 1.5rem;
        padding-bottom: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Mobile: Force vertical layout */
    .hero-content.horizontal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
        margin-left: 0;
        transform: translate(0, 0);
    }

    .hero-content.horizontal .hero-title,
    .hero-content.horizontal .hero-subtitle {
        flex: none;
        min-width: auto;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .fourseasons-hero-fullwidth {
        height: 30vh;
        min-height: 400px;
        --hero-content-left: 0;
    }
    
    .hero-container {
        max-width: 1137px;
        padding: 0 1rem;
        padding-bottom: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
        margin-left: 0;
        transform: translate(0, 0);
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}