@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap');

@font-face {
    font-family: 'SecondQuotes';
    src: url('assets/SecondQuotesRegular-lxOyV.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'SecondQuotes', sans-serif;
    background-color: #f2efe5;
    background-image: url('assets/background-texture.png');
    background-size: cover;
    background-position: center;
    color: #5a1427;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo img {
    max-width: 250px;
    height: auto;
}

.launching h2 {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 1rem;
}

.message {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    margin: 1rem 0 2rem;
    line-height: 1.5;
}

.notify-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.notify-form input {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid #5a1427;
    font-size: 1rem;
    outline: none;
}

.notify-form input:focus {
    border-color: #701a32;
}

.notify-btn {
    background-color: #5a1427;
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.notify-btn:hover {
    background-color: #701a32;
}

.social-icons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.icon {
    color: #5a1427;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.icon:hover {
    color: #701a32;
}

@media (max-width: 768px) {
    .launching h2 {
        font-size: 3.5rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .notify-form {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .launching h2 {
        font-size: 2.5rem;
    }
    
    .logo img {
        max-width: 140px;
    }
} 