/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #2e2d29;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    position: relative;
}

/* Logo styling */
.logo-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.logo {
    width: 200px;
    height: auto;
}

/* Main content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
}

/* Better Breaks flyer */
.flyer {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Countdown timer */
.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8C1515;
    margin-bottom: 20px;
    text-align: center;
}

#timer {
    color: #8C1515;
}

/* Survey button */
.survey-button {
    background-color: #8C1515;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
    display: inline-block;
}

.survey-button:hover {
    background-color: #6d0f0f;
}

/* Contact section */
.contact-section {
    text-align: center;
    margin-top: 20px;
}

.contact-link {
    color: #8C1515;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #8C1515;
}

.contact-link:hover {
    color: #6d0f0f;
    border-bottom-color: #6d0f0f;
}

.contact-email {
    display: none;
    margin-top: 15px;
    font-size: 1rem;
    color: #2e2d29;
}

.contact-email a {
    color: #8C1515;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        width: 150px;
    }

    .flyer {
        max-width: 90%;
    }

    .countdown {
        font-size: 1.2rem;
    }

    .survey-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 120px;
    }

    .logo-container {
        top: 10px;
        right: 10px;
    }

    .content {
        padding-top: 60px;
    }
}