* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1509631179647-0177331693ae?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.erebos {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: #D4AF37;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.girls {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: 0.5em;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: -0.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #0a0a0a;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E5C2 100%);
    border: 2px solid #D4AF37;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-button::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.6s;
}

.cta-button:hover {
    background: transparent;
    color: #D4AF37;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .content {
        padding: 1rem;
    }

    .tagline {
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}