@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
    position: relative;
}

.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.container {
    width: 100%;
    padding: 20px 40px 40px 40px;
    position: relative;
    z-index: 1;
}

header {
    animation: fadeInDown 1s ease-out;
}

.main-title {
    font-family: 'Instrument Serif', serif;
    font-size: 120px;
    font-weight: 400;
    color: white;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.2;
}

.header-content {
    text-align: left;
}

.tagline {
    font-size: 15px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.3;
    margin-bottom: 10px;
    width: 230px;
}

.app-store-link {
    display: inline-block;
    transition: transform 0.3s ease;
}



.app-store-badge {
    height: auto;
    width: 160px;
}




/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 56px;
    }
    
    .tagline {
        font-size: 16px;
        width: 200px;
    }
    
    .app-store-badge {
        width: 140px;
    }
    
    .container {
        padding: 30px 30px 30px 30px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 42px;
    }
    
    .tagline {
        font-size: 14px;
        width: 80%;
    }
    
    .app-store-badge {
        width: 120px;
    }
    
    .container {
        padding: 20px 20px;
    }
}

.legal-links {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
}

