:root {
    --primary-color: #8B4513;  /* Warm brown for books/education theme */
    --secondary-color: #654321; /* Darker brown for contrast */
    --text-color: #2B1810;     /* Deep brown for text */
    --bg-color: #FFF8F0;       /* Warm off-white background */
    --accent-color: #D2691E;   /* Chocolate accent */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif; /* More book-like typography */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
}

.coming-soon-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(
        rgba(255, 248, 240, 0.95), 
        rgba(255, 248, 240, 0.95)
    );
    position: relative;
}

.coming-soon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/texture-paper.jpg') repeat;
    opacity: 0.1;
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.5px;
}

p {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-style: italic;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
}

.countdown-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: normal;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.8rem;
    font-family: 'Georgia', serif;
}

.countdown-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

.notification-container {
    margin-top: 4rem;
}

.notification-container h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.notification-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.notification-form input[type="email"] {
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.notification-form input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #357abd;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    p {
        font-size: 1.2rem;
    }
    
    .countdown {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
} 