/* Hero Section - Fullscreen Fix */
.cbw-hero--fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cbw-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cbw-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.cbw-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.cbw-hero__title {
    font-family: 'Italiana', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cbw-hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cbw-hero__cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cbw-hero__cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cbw-hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cbw-hero__title {
        font-size: 2.5rem;
    }
    
    .cbw-hero__subtitle {
        font-size: 1.125rem;
    }
}
