/* Font declarations */
@font-face {
    font-family: 'Gambado Sans';
    src: url('GambadoSans-Regular.ttf') format('truetype'),
         url('GambadoSans-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lamebrain BRK';
    src: url('LamebrainBRK-Regular.ttf') format('truetype'),
         url('LamebrainBRK-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

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

body {
    background-color: #1d1d1b;
    font-family: 'Gambado Sans', 'Arial Black', 'Helvetica Bold', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    position: relative;
    display: inline-block;
}

.logo-image {
    max-width: 400px;
    height: auto;
    display: block;
    animation: fadeInUp 1.5s ease-out both;
}

.text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.headline {
    font-family: 'Gambado Sans', 'Arial Black', 'Helvetica Bold', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1.5s ease-out 0.5s both;
    margin: 0;
}

.subheading {
    font-family: 'Lamebrain BRK', 'Arial', 'Helvetica', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.1em;
    animation: fadeInUp 1.5s ease-out 0.7s both;
    margin: 0;
    opacity: 0.8;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    text-align: center;
    z-index: 10;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Lamebrain BRK', 'Arial', 'Helvetica', sans-serif;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.7;
}

.instagram-icon {
    width: 20px;
    height: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-image {
        max-width: 300px;
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .subheading {
        font-size: 1rem;
    }
    
    .footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        max-width: 250px;
    }
    
    .headline {
        font-size: 1.5rem;
    }
    
    .subheading {
        font-size: 0.9rem;
    }
    
    .logo-container {
        gap: 2rem;
    }
    
    .footer {
        padding: 1rem;
    }
    
    .instagram-link {
        font-size: 0.9rem;
    }
    
    .instagram-icon {
        width: 18px;
        height: 18px;
    }
}
