.nomad-hero-06afb7da {
    position: relative;
    width: 100%; /* Adapts to Elementor section width */
    min-height: 600px;
    height: clamp(600px, 90vh, 1080px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0f2747;
}

/* Reduced height on mobile */
@media (max-width: 767px) {
    .nomad-hero-06afb7da { 
        height: clamp(500px, 75vh, 800px); 
    }
}

.nomad-hero-media {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 1;
}

.nomad-hero-media img, 
.nomad-hero-media video {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Pause video if reduced motion is preferred */
@media (prefers-reduced-motion: reduce) {
    .nomad-hero-media video {
        display: none;
    }
    .nomad-hero-media {
        /* User can rely on poster image */
        background-size: cover;
        background-position: center;
    }
}

.nomad-hero-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 39, 71, 0.3), rgba(15, 39, 71, 0.45));
    z-index: 2;
}

.nomad-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #f6f3ec;
    max-width: 1200px;
    width: 100%;
}

.nomad-eyebrow {
    font-family: sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600;
    color: #f6f3ec;
}

.nomad-title {
    font-family: 'Playfair Display', 'Cormorant', 'Times New Roman', serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin: 0 0 24px;
    color: #ffffff;
}

.nomad-title i, 
.nomad-title em {
    color: #bfa06a;
    font-style: italic;
    font-weight: normal;
}

.nomad-subtitle {
    font-family: sans-serif;
    font-size: clamp(16px, 2vw, 20px);
    max-width: 640px;
    margin: 0 0 40px;
    line-height: 1.5;
    color: #f6f3ec;
}

.nomad-actions {
    display: flex;
    gap: 16px;
    flex-direction: row;
}

/* Stack buttons on mobile */
@media (max-width: 767px) {
    .nomad-actions { 
        flex-direction: column; 
        width: 100%; 
        max-width: 320px; 
    }
    .nomad-btn {
        width: 100%;
    }
}

.nomad-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.nomad-btn-primary {
    background-color: #ff6b6b;
    color: #ffffff;
    border: none;
}

.nomad-btn-primary:hover,
.nomad-btn-primary:focus {
    background-color: #f55a5a;
    color: #ffffff;
}

.nomad-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #f6f3ec;
}

.nomad-btn-secondary:hover,
.nomad-btn-secondary:focus {
    background-color: #f6f3ec;
    color: #0f2747;
}