/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
}

/* Header */
header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

header .logo {
    max-width: 180px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

header .logo:hover {
    transform: scale(1.05);
}

header h1 {
    font-family: 'Merriweather', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

header .tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b5b5b5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}

.coming-soon {
    background-color: #fff;
    padding: 40px 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    transition: transform 0.3s ease;
}

.coming-soon:hover {
    transform: scale(1.02);
}

.coming-soon h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.coming-soon p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.countdown p {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

/* Social Media Links */
.social-media {
    margin-top: 50px;
}

.social-media p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    padding: 12px 25px;
    border: 2px solid #333;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #fff;
    background-color: #000;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

footer p {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .coming-soon h2 {
        font-size: 2rem;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }
}