/* Beautiful Background & Large Text Styling */
body {
    font-family: 'Montserrat', sans-serif; /* A more modern, sleek font */
    /* Beautiful Gradient Background */
    background: linear-gradient(135deg, #6DD5FA 0%, #FF758C 100%); /* Blue to Pink/Orange */
    /* You can try other gradients:
       background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);  // Light Blue
       background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);  // Green to Blue
       background: linear-gradient(135deg, #FAD7A1 0%, #E96D71 100%);  // Soft Orange/Red
    */
    color: #fff; /* White text for contrast */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

/* Import Montserrat font if not already linked in HTML head */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');


.container {
    max-width: 700px; /* Slightly wider container */
    padding: 60px; /* More padding */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white overlay */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); /* More pronounced shadow */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle white border */
}

/* Typography - Larger and more impactful */
h1 {
    font-size: 5em; /* Significantly larger headline */
    margin-bottom: 15px;
    font-weight: 700; /* Bold for impact */
    letter-spacing: 2px; /* Spacing out letters */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Text shadow for depth */
}

.tagline {
    font-size: 1.5em; /* Larger tagline */
    color: rgba(255, 255, 255, 0.9); /* Slightly subdued white */
    margin-bottom: 40px;
    font-weight: 300; /* Lighter weight for readability */
}

/* Subscription Form (Styled for the new background) */
.subscribe-form {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    gap: 15px; /* Increased gap */
}

.subscribe-form input[type="email"] {
    padding: 15px 20px; /* Larger input field */
    border: 1px solid rgba(255, 255, 255, 0.5); /* Lighter border */
    background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
    border-radius: 6px;
    font-size: 1.1em;
    color: #fff;
    flex-grow: 1;
    max-width: 350px;
    outline: none; /* Remove default outline */
}

.subscribe-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Lighter placeholder text */
}

.subscribe-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.8); /* Highlight on focus */
    background-color: rgba(255, 255, 255, 0.25);
}

.subscribe-form button {
    padding: 15px 25px; /* Larger button */
    background-color: #ffffff; /* White button for high contrast */
    color: #000; /* Dark text on button */
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-weight: 600;
}

.subscribe-form button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px); /* Slight lift on hover */
}

/* Footer & Social Links (Styled for the new background) */
.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1em;
    padding: 0 15px;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 40px 25px;
    }
    h1 {
        font-size: 3.5em; /* Adjust for smaller screens */
    }
    .tagline {
        font-size: 1.2em;
    }
    .subscribe-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .subscribe-form input[type="email"],
    .subscribe-form button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.8em;
        letter-spacing: 1px;
    }
    .tagline {
        font-size: 1em;
    }
    .container {
        padding: 30px 15px;
    }
    .footer a {
        padding: 0 8px;
        font-size: 0.85em;
    }
}