:root {
    --bg-color: #1a1a1a; /* Charcoal Black */
    --text-color: #f4f4f4; /* Off White */
    --accent-pink: #ff007f; /* Rani Pink */
    --accent-yellow: #ffbf00; /* Marigold */
    --font-heading: 'Rozha One', serif; /* Indian-style serif */
    --font-body: 'Poppins', sans-serif; /* Modern geometric */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Decoration --- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    top: -50px;
    left: -50px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-yellow);
    bottom: -100px;
    right: -100px;
}

/* --- Nav --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.dot {
    color: var(--accent-pink);
}

.socials a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-left: 20px;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--accent-yellow);
}

/* --- Main Layout --- */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 50px;
}

/* --- Text Section --- */
.text-section {
    flex: 1;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    font-weight: 600;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 20px 0;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-pink);
    font-style: italic;
}

.subtext {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 500px;
}

/* --- Form --- */
.signup-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
}

input[type="email"] {
    flex: 1;
    padding: 15px;
    border: 2px solid #333;
    background: transparent;
    color: white;
    font-family: var(--font-body);
    border-radius: 5px;
    outline: none;
}

input[type="email"]:focus {
    border-color: var(--accent-pink);
}

button {
    padding: 15px 30px;
    background: var(--accent-pink);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: transform 0.2s, background 0.2s;
}

button:hover {
    background: var(--accent-yellow);
    color: black;
    transform: translateY(-2px);
}

.hidden {
    display: none;
}

#success-msg {
    margin-top: 15px;
    color: var(--accent-yellow);
    font-weight: 600;
}

/* --- Visual Section --- */
.visual-section {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-frame {
    width: 350px;
    height: 500px;
    border: 2px solid var(--accent-yellow);
    padding: 15px;
    position: relative;
    border-radius: 100px 100px 0 0; /* Arch shape (Mehraab) */
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 90px 90px 0 0;
    filter: grayscale(20%);
    transition: filter 0.5s;
}

.image-frame:hover img {
    filter: grayscale(0%);
}

.sticker {
    position: absolute;
    background: var(--accent-pink);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    transform: rotate(-10deg);
    bottom: 40px;
    right: -30px;
    box-shadow: 5px 5px 0px black;
    font-size: 0.9rem;
}

/* --- Marquee --- */
.marquee-container {
    background: var(--accent-yellow);
    color: black;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-family: var(--font-heading);
    border-top: 2px solid black;
}

.marquee-content {
    display: inline-block;
    animation: marquee 15s linear infinite;
}

.marquee-content span {
    padding-right: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    h1 {
        font-size: 3rem;
    }

    .subtext {
        margin: 20px auto 30px auto;
    }

    .signup-form {
        flex-direction: column;
        margin: 0 auto;
    }

    .image-frame {
        width: 280px;
        height: 400px;
    }
    
    .blob {
        opacity: 0.4;
    }
}