/* General Body & Typography */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Light background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    background: url('https://via.placeholder.com/1920x1080?text=Forest+Background') no-repeat center center/cover; /* Optional: background image */
    position: relative;
    overflow: hidden; /* Hide overflow from any potential background shifts */
}

/* Overlay for readability */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.coming-soon-container {
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 700px;
    width: 90%;
    z-index: 2; /* Above the overlay */
    position: relative;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #2c5f2d; /* A dark green */
    margin-bottom: 15px;
}

h1 {
    font-size: 2.8em;
    margin-top: 20px;
    margin-bottom: 5px;
}

h2 {
    font-size: 2em;
    color: #4a90e2; /* A blue accent */
    margin-bottom: 25px;
}

h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%; /* Make it circular if your logo fits */
    border: 3px solid #2c5f2d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 8px;
}

.contact-info a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2d70c2;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px; /* Space between input and button */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.subscribe-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 60%;
    max-width: 350px;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
}

.btn {
    display: inline-block;
    background-color: #2c5f2d; /* Dark green */
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
}

.btn:hover {
    background-color: #3c7d3d; /* Lighter green on hover */
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: block; /* For image icons */
    transition: transform 0.3s ease;
}

.social-links img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

/* If using Font Awesome icons */
.social-links .fab {
    font-size: 32px;
    color: #555;
    transition: color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a:hover .fab {
    color: #2c5f2d; /* Green on hover */
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 30px;
    }

    h1 { font-size: 2.2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.3em; }
    p { font-size: 1em; }

    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-form input[type="email"] {
        width: 80%; /* Wider input on smaller screens */
        margin-bottom: 15px; /* Add space between input and button */
    }

    .btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 20px;
    }

    h1 { font-size: 1.8em; }
    h2 { font-size: 1.4em; }
    h3 { font-size: 1.2em; }

    .logo {
        width: 100px;
        height: 100px;
    }

    .subscribe-form input[type="email"],
    .btn {
        width: 90%;
    }
}
