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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f6f2;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1507878866276-a947ef722fee?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 1px solid #e0e0e0;
}

.content {
    text-align: center;
    padding: 40px 20px;
}

.logo {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #d4af37;
}

.logo-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.separator {
    width: 100px;
    height: 3px;
    background-color: #d4af37;
    margin: 20px auto;
}

.message {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #555;
    font-weight: 300;
}

.timer {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.timer-item {
    margin: 10px 20px;
    text-align: center;
}

.timer-item span {
    display: block;
}

.timer-item span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact {
    margin-top: 40px;
}

.contact p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.contact-link {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #d4af37;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-link:hover {
    background-color: #d4af37;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
        width: 95%;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .message {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .timer {
        flex-wrap: wrap;
    }
    
    .timer-item {
        margin: 10px;
    }
    
    .timer-item span:first-child {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .logo-inner {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .timer-item {
        margin: 5px;
    }
    
    .timer-item span:first-child {
        font-size: 1.8rem;
    }
}
