* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: url('../img/background.jpg') no-repeat top center/cover;
    background-size: cover;
    color: #fff;
    position: relative;
}

/* Black overlay background */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Container Settings */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

/* Header Section */
header {
    padding: 50px 0;
    color: #fff;
}

header h1 {
    font-size: 50px;
    font-weight: bold;
    margin: 20px 0;
}

header p {
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto;
}

/* Countdown Section */
.countdown {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.countdown-item {
    margin: 0 20px;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: #000;
    padding: 25px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.countdown p {
    font-size: 20px;
    color: #fff;
}

/* Social Media Section */
.social-media {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media p {
    font-size: 18px;
    margin-right: 20px;
}

.social-icons a {
    font-size: 25px;
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}

.social-icons a:hover {
    color: #f04e23;
}

/* About Section */
.about {
    background-color: green;
    width: 100%;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
    box-sizing: border-box;
}

.about h2, .contact h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 800px;
    margin: 20px auto;
}

/* Subscription Section (Formerly Contact Section) */
.contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-form-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-form-right input,
.contact-form-right button {
    width: 80%;
    max-width: 400px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form-right button {
    background-color: #f04e23;
    color: #fff;
    cursor: pointer;
}

.contact-form-right button:hover {
    background-color: #d74219;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 30px;
    }

    .countdown-item {
        margin: 10px 10px;
        font-size: 30px;
    }

    .contact-box {
        flex-direction: column;
        align-items: center;
    }

    .countdown p {
        font-size: 10px;
    } 
}
