@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
/* Example font */

/* --- Basic Reset & Defaults --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Use your preferred font */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* Example gradient background */
    /* Or use a background image: */
    /* background: url('background.jpg') no-repeat center center fixed; */
    /* background-size: cover; */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent background for content */
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
}

/* --- Header --- */
header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Optional Logo Styling */
.logo {
    max-width: 150px;
    margin-bottom: 15px;
}

/* --- Main Content --- */
main h2 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 600;
    color: #f0e68c;
    /* Light yellow accent */
}

main .subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

/* --- Subscribe Section --- */
.subscribe {
    margin-top: 30px;
    margin-bottom: 30px;
}

.subscribe h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.subscribe form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    gap: 10px;
    /* Space between input and button */
    margin-bottom: 10px;
}

.subscribe input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 25px;
    /* Pill shape */
    font-size: 1em;
    flex-grow: 1;
    /* Take available space */
    min-width: 200px;
    /* Minimum width before wrapping */
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.subscribe input[type="email"]::placeholder {
    color: #888;
}

.subscribe button[type="submit"] {
    padding: 12px 25px;
    background-color: #f0e68c;
    /* Match accent color */
    color: #4a40a3;
    /* Darker color from gradient */
    border: none;
    border-radius: 25px;
    /* Pill shape */
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscribe button[type="submit"]:hover {
    background-color: #eadd70;
    /* Slightly darker hover */
    transform: scale(1.05);
}

.subscribe .privacy {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* --- Social Media Links --- */
.social-links {
    margin-top: 30px;
}

.social-links h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 400;
}

.social-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    /* Space between icons */
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5em;
    /* Adjust size as needed */
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    /* Needed for transform */
}

/* If using text instead of icons: */
.social-links a {
    font-size: 1em;
    font-weight: bold;
    border: 1px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    /* Vertically center text */
    text-align: center;
}


.social-links a:hover {
    color: #f0e68c;
    /* Accent color on hover */
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    main h2 {
        font-size: 2.5em;
    }

    main .subtitle {
        font-size: 1.1em;
    }

    .subscribe form {
        flex-direction: column;
        /* Stack input and button vertically */
        align-items: stretch;
        /* Make input/button full width */
    }

    .subscribe input[type="email"],
    .subscribe button[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 1.8em;
    }

    main h2 {
        font-size: 2em;
    }

    main .subtitle {
        font-size: 1em;
    }

    .social-links a {
        font-size: 1.3em;
        /* Adjust icon size */
    }

    /* Text link adjustments */
    .social-links a {
        width: 35px;
        height: 35px;
        line-height: 33px;
        font-size: 0.9em;
    }
}