.hero-module {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.hero-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-subtitle {
    font-family: 'Great Vibes', 'Pacifico', cursive;
    font-size: 2rem;
    color: #cd7f32;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    letter-spacing: 12px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    position: relative;
    z-index: 3;
}

.hero-tagline {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.4s backwards;
    position: relative;
    display: inline-block;
}

.hero-tagline .ampersand-bg {
    font-family: 'Great Vibes', 'Pacifico', cursive;
    color: #cd7f32;
    font-size: 12rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: 0;
    font-weight: 400;
    line-height: 1;
}

.hero-tagline .text-front {
    position: relative;
    z-index: 1;
    display: block;
}

.hero-description {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.cta-button.primary {
    background-color: #cd7f32;
    color: #000000;
    border: 2px solid #cd7f32;
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.5);
}

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #cd7f32;
    color: #cd7f32;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 2s ease-out 1s backwards;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #cd7f32);
    margin: 0 auto;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 5rem;
        letter-spacing: 10px;
    }
    
    .hero-tagline {
        font-size: 2rem;
        letter-spacing: 6px;
    }
    
    .hero-tagline .ampersand-bg {
        font-size: 10rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-module {
        background-attachment: scroll;
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    
    .hero-tagline .ampersand-bg {
        font-size: 7rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .hero-tagline .ampersand-bg {
        font-size: 5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
    }
}
