/* Base styles for mobile-first approach */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
    box-sizing: border-box;
    font-size: 16px;
}

.container {
    background: url('images/launching-soon.jpg') no-repeat center center fixed;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.content {
    padding: 10px; /* Reduced padding for mobile */
    border-radius: 10px;
    width: 90%;
    max-width: 1200px;
}

.header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px; /* Reduced margin for mobile */
}

.logo {
    width: 100px; /* Base logo size for mobile */
    height: 100px;
    margin-bottom: 10px;
}

.launching-soon {
    font-family: 'Young Serif', serif;
    font-size: 2.5em; /* Base font size for mobile */
    margin: 0;
}

.productions-title {
    font-family: 'Arimo', sans-serif;
    font-size: 1em; /* Base font size for mobile */
    margin: 5px 0 0 0;
}

.divider {
    width: 80%; /* Base divider width for mobile */
    height: 1px;
    background-color: white;
    border: none;
    margin: 10px auto;
}

.tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6em; /* Base font size for mobile */
    margin: 0;
}

.email-box {
    background-color: #f6c239;
    width: 90%; /* Base email box width for mobile */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    padding: 10px;
    border-radius: 10px;
}

.email-text {
    font-family: 'Raleway', sans-serif;
    color: black;
    font-size: 0.6em; /* Base font size for mobile */
    margin: 0;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Media queries for larger screens (desktop-first) */
@media (min-width: 480px) {
    .logo {
        width: 150px;
        height: 150px;
    }
    .launching-soon {
        font-size: 3em;
    }
    .productions-title {
        font-size: 1.5em;
    }
    .tagline {
        font-size: 0.7em;
    }
    .divider {
        width: 80%;
    }
    .email-text {
        font-size: 0.7em;
    }
}

@media (min-width: 768px) {
    .logo {
        width: 200px;
        height: 200px;
    }
    .launching-soon {
        font-size: 4em;
    }
    .productions-title {
        font-size: 2em;
    }
    .tagline {
        font-size: 0.8em;
    }
    .divider {
        width: 90%;
    }
    .email-text {
        font-size: 0.8em;
    }
}

@media (min-width: 1100px) {
    .logo {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }
    .launching-soon {
        font-family: 'Young Serif', serif;
        font-size: 5.5em;
    }
    .productions-title {
        font-family: 'Arimo', sans-serif;
        font-size: 2.375em;
    }
    .divider {
        width: 800px;
        height: 1px;
        background-color: white;
        border: none;
        margin: 20px auto;
    }
    .tagline {
        font-family: 'Raleway', sans-serif;
        font-size: 1.03125em;
        margin: 0;
    }
    .email-box {
        width: 1080px;
        height: 62px;
        padding: 0;
    }
    .email-text {
        font-family: 'Raleway', sans-serif;
        font-size: 1.03125em;
    }
}