:root {
    --pale-pink: #fdf2f4;
    --dark-text: #5a4a4a;
    --accent-pink: #f8d7da;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
}

.hero-bg {
    height: 100vh;
    width: 100%;
    background: url('assets/background.jpg') no-repeat center center; /* Ensure this matches your file name */
    background-size: cover;
    display: flex;
    flex-direction: column; /* Stacks logo on top of card */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 30px; /* Space between logo and the glass card */
    text-align: center;
}

.main-logo {
    max-width: 350px; /* Adjust this width to fit your logo design */
    height: auto;
    /* Optional: adds a soft shadow to the logo if it's a transparent PNG */
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1)); 
}

/* Ensure the glass card doesn't get pushed too far down on mobile */
@media (max-width: 480px) {
    .main-logo {
        max-width: 140px;
    }
    .glass-card {
        padding: 40px 25px;
    }
}

/* The Frosted Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.pre-title {
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.tagline {
    margin-bottom: 30px;
    font-weight: 300;
}

/* Form Styling */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    outline: none;
    text-align: center;
}

button {
    padding: 12px;
    background: var(--dark-text);
    color: white;
    border: none;
    border-radius: 25px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #443a3a;
    transform: translateY(-2px);
}

.footer-links {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-links a {
    color: var(--dark-text);
    text-decoration: none;
    display: block;
    margin-top: 10px;
    opacity: 0.7;
}

/* Animation */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.site-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.site-footer p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--dark-text);
    text-transform: uppercase;
    opacity: 0.6;
}

/* Ensure footer stays at the bottom on very small screens */
@media (max-height: 600px) {
    .site-footer {
        position: relative;
        padding-top: 20px;
        bottom: 10px;
    }
}