/* 🔥 RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🌿 BODY */
body {
    font-family: 'Inter', sans-serif;
    background: #faf8f5;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

/* 🔴 SUBTLE NEPAL INSPIRED BACKGROUND */
.mandala {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(178,34,34,0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* 📦 MAIN CONTAINER */
.container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    z-index: 1;
}

/* 🔤 LOGO */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

/* 🇳🇵 TAGLINE */
.tagline {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

/* 🧠 HEADLINE */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* 📝 DESCRIPTION */
.description {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
}

/* 📩 FORM */
form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ✉️ INPUT */
input[type="email"] {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 260px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

input[type="email"]:focus {
    border-color: #b22222;
    box-shadow: 0 0 0 2px rgba(178,34,34,0.1);
}

/* 🔘 BUTTON */
button {
    padding: 12px 20px;
    background: #b22222;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #8b1a1a;
}

/* 💬 RESPONSE TEXT */
#response-msg {
    font-size: 14px;
    color: #333;
}

/* 📌 FOOTER */
.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #888;
}

/* 📱 RESPONSIVE */
@media (max-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .container {
        padding: 20px;
    }

    input[type="email"] {
        width: 100%;
    }

    form {
        flex-direction: column;
    }

    button {
        width: 100%;
    }
}