﻿.full-width-breakout {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: var(--hero-bg);
}

/* Hero section */
.hero-full-section {
    background-color: var(--hero-bg);
    padding: 6rem 2rem 5rem;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Two-column layout */
.hero-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    flex-wrap: wrap;
}

/* Text block */
.hero-left {
    flex: 1 1 540px;
    min-width: 300px;
}

    .hero-left h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 1.25rem;
        color: var(--hero-text);
    }

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--hero-text);
    margin-bottom: 2.25rem;
}

/* CTA button */
.hero-button {
    background-color: var(--hero-button-bg);
    color: var(--hero-text);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.25rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

    .hero-button:hover {
        background-color: var(--hero-button-hover-bg);
        color: var(--hero-button-hover-text) !important;
    }

/* Hero image */
.hero-right {
    flex: 1 1 500px;
    min-width: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-section-image {
    max-width: 150%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 0.5rem;
    transform: scale(1.0);
}

/* Tenant theme overrides */
.tenant-theme .hero-left h1,
.tenant-theme .hero-subtitle {
    color: var(--hero-theme-title) !important;
}

.tenant-theme .hero-button {
    color: var(--hero-text) !important;
}

body > .container,
body > main > .container,
body > .tenant-theme {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.hero-full-section .hero-button:hover,
.hero-full-section .hero-button:focus-visible {
    color: var(--hero-button-hover-text) !important;
    background-color: var(--hero-button-hover-bg) !important;
    transition: background-color 0.3s, color 0.3s;
}
