/* Base Styles */
:root {
    --dark-blue: #1a2a3a;
    --very-blue: #042551;
    --cranberry: #c41e3a;
    --gold: #ffd700;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {       
    font-family: 'Raleway', sans-serif;     
    background-color: var(--very-blue);    
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
header {   
    text-align: center;
    padding: 1rem 0;
}

img {
    height: 21vh;
    width: 70vw;
    margin-top: 5vh;
    background-repeat: no-repeat; 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;    
    display: block;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}



/* Main Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 400px);
    text-align: center;
    position: relative;
}

.coming-soon {
    max-width: 600px;
    margin: 0 auto;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--cranberry), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-gray);
}

/* Notify Form */
.notify-section {
    margin-bottom: 3rem;
}

.notify-form {
    margin-top: 1rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

button {
    padding: 0.8rem 1.5rem;
    background-color: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    transition: transform 0.3s ease;
}

button:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    min-height: 20px;
}

.form-message.success {
    color: var(--gold);
}

.form-message.error {
    color: var(--cranberry);
}

/* Social Links */
.social-links {
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.social-icon svg {
    fill: var(--white);
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: whitesmoke;
    /* background: var(--cranberry); */
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: -100px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: var(--cranberry);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    h2 {
        font-size: 3rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}