:root {
    --primary-color: #a31d58; /* Based on the logo's deep pink/maroon */
    --secondary-color: #6c757d;
    --accent-color: #f8f9fa;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --success-color: #28a745;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 40px 0; /* Increased padding for better focus on logo */
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative; /* Changed from sticky to allow more space in hero */
    z-index: 1000;
    text-align: center;
}

.logo {
    height: 180px; /* Increased size */
    width: auto;
    display: block;
    margin: 0 auto; /* Center horizontally */
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

h1 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light-text);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.time-block {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-color);
}

.time-block span:first-child {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.time-block .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--light-text);
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #8a184a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 29, 88, 0.3);
}

.btn-secondary {
    background-color: #333;
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #000;
}

/* Notify Form */
.notify-section {
    margin-top: 60px;
    padding: 30px;
    background: rgba(255,255,255,0.5);
    border-radius: 15px;
    display: inline-block;
}

.notify-section p {
    margin-bottom: 15px;
    font-weight: 600;
}

.notify-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 1rem;
}

.notify-form input:focus {
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 15px;
    font-weight: 600;
    height: 24px;
}

.form-message.success {
    color: var(--success-color);
}

.form-message.error {
    color: #dc3545;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.contact h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .time-block {
        min-width: 80px;
        padding: 15px;
    }
    
    .time-block span:first-child {
        font-size: 1.8rem;
    }
    
    .logo {
        height: 120px; /* Slightly smaller on mobile but still prominent */
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input, .notify-form button {
        width: 100%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
