/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #fd0051;
    --burgundy: #7e0028;
    --text-dark: #161616;
    --white: #ffffff;
    --cream: #F5F5DC;
    --dark-cream: #8B7355;
}

html {
    height: -webkit-fill-available;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: #000000;
    background-image: url('images/bkg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-container {
    text-align: center;
    padding: 4rem 3rem;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo-image {
    width: 450px;
    height: auto;
    max-width: 90%;
}

.message-section {
    margin-bottom: 4rem;
}

.coming-soon-title {
    font-size: 8rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.32rem;
    margin-bottom: 1rem;
}

.coming-soon-subtitle {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: -0.08rem;
}

.contact-section {
    margin-top: 4rem;
}

.email-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid var(--white);
    transition: opacity 0.3s ease;
    display: inline-block;
    letter-spacing: -0.06rem;
}

.email-link:hover {
    opacity: 0.8;
}

.privacy-section {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.privacy-link {
    font-size: 0.875rem;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.privacy-link:hover {
    opacity: 1;
}

.separator {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coming-soon-title {
        font-size: 6rem;
    }
    
    .logo-image {
        width: 350px;
    }
    
    .email-link {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .coming-soon-container {
        padding: 3rem 2rem;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .logo-image {
        width: 280px;
    }
    
    .coming-soon-title {
        font-size: 4rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.5rem;
    }
    
    .email-link {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .coming-soon-container {
        padding: 2rem 1.5rem;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .logo-section {
        margin-bottom: 1.5rem;
    }
    
    .logo-image {
        width: 200px;
    }
    
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
    
    .email-link {
        font-size: 1rem;
    }
    
    .privacy-section {
        gap: 0.5rem;
    }
    
    .privacy-link {
        font-size: 0.75rem;
    }
    
    .separator {
        font-size: 0.75rem;
    }
}
