/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hind', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.handlee-regular {
  font-family: "Handlee", cursive;
  font-weight: 400;
  font-style: normal;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: "Hind";
    /* Prevent scrolling */
}
button {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.frosted-glass {
    background: #F8F1F140;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);

}

.main-container {
    height: 100vh;
    width: 100vw;
    /* Replace with your actual image path */
    background-image: url('https://images.unsplash.com/photo-1493863641943-9b68992a8d07?q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Darken background slightly for contrast */
.main-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

/* Main Glass Card */
.glass-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    border-radius: 30px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Gradient "Find Your Shoot" */
.gradient-title {
    font-size: 3.2rem;
    font-weight: 500;
    background: linear-gradient(50deg, #D60139 20%, #FED000 50%, #DC7030 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
}

.gradient-title::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    -webkit-text-stroke: 2px white;
    -webkit-text-fill-color: transparent;
    z-index: -1;
}

.gradient-sub {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(50deg, #DC7030 20%, #ffefa6 50%, #f3c8b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    position: relative;
}

.form-parent {
    width:calc(100% - 20px); 
    max-width:500px;
    margin:0 auto;
}
/* Message Box */
.message-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 15px 15px;
    border-radius: 15px;
    margin-bottom: 30px;
    border:none;
    width: 100%;
    color: #000;
    font-weight: 400;
    font-size: 20px;
    outline: none;
}

.message-box::placeholder {
    color: #383838;
}

/* Orange Button */
.waitlist-btn {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: none;
    background: linear-gradient(30deg,#D60139, #FED000, #DC7030);
    color: white;
    font-size: 20px;
    font-weight:400;
    cursor: pointer;
    transition: 0.3s ease;
}

.waitlist-btn:active {
    filter: brightness(1.1);
    transform: translateY(-2px) scale(0.9);
}

/* Floating Social Dock at Bottom */
.social-dock {
    position: absolute;
    bottom: 30px;
    /* Distance from the bottom of the screen */
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    gap: 30px;
    z-index: 2;
}

.social-dock a {
    color: white;
    font-size: 30px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.social-dock a:hover {
    color: #ffcc00;
    transform: scale(1.2);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 600px) {
    .gradient-title {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 30px 20px;
        margin: 10px;
    }

    .social-dock {
        gap: 30px;
        padding: 10px 20px;
    }

    .message-box p {
        font-size: 0.9rem;
    }
}