@font-face {
    font-family: 'Made Mirage';
    src: url('./assets/fonts/Mirage/MADE Mirage Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #E5E1FA 0%, #D8D2F0 25%, #C7BEE8 50%, #B8A8E0 75%, #A899D8 100%);
    background-attachment: fixed;
    font-family: 'Made Mirage', serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.content {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-text {
    font-family: 'Made Mirage', serif;
    font-size: clamp(4.5rem, 12vw, 8rem);
    font-weight: normal;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000;
    margin-bottom: 3rem;
    text-align: left;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.4s ease-out 0.1s forwards;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    font-weight: 300;
    color: #000;
    text-align: center;
    margin: 0;
    display: inline-block;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.3) 25%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.3) 75%, 
        rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    animation: fadeInUpScale 0.3s ease-out 0.3s forwards;
}

.subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpScale {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .content {
        max-width: 100%;
    }
    
    .hero-text {
        line-height: 95%;
        margin-bottom: 2rem;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: clamp(4.5rem, 12vw, 6.5rem);
        line-height: 100%;
        letter-spacing: -0.04em;
        max-width: 95%;
    }
    
    .subtitle {
        font-size: clamp(0.9rem, 3vw, 1.3rem);
        padding: 6px 20px;
    }
}
