/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('hero-image.jpg') center center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(255, 20, 147, 0.4) 50%, rgba(0, 191, 255, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
    padding-bottom: 2px;
}

.logo-container {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8),
                 0 0 40px rgba(255, 0, 255, 0.6),
                 0 0 60px rgba(255, 0, 255, 0.4);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    -webkit-text-stroke: 0.25px #fff;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Coming Soon Section */
.coming-soon-section {
    background: #000;
    padding: 80px 0;
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.2em;
    color: #fff;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.countdown-timer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(255, 20, 147, 0.3) 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 255, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
    min-width: 100px;
}

.countdown-number {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    line-height: 1;
}

.countdown-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* Event Boxes */
.event-box {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(255, 20, 147, 0.2) 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 0, 255, 0.3);
}

.event-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.4);
    border-color: rgba(255, 0, 255, 0.8);
}

.event-image-container {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #8a2be2 0%, #ff1493 50%, #00bfff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-img-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('1.png');
    background-size: cover;
    background-position: center;
}

.event-img-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('2.png');
    background-size: cover;
    background-position: center;
}

.event-img-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('3.jpg');
    background-size: cover;
    background-position: center;
}

.event-image-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.event-image-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(40px);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(255, 0, 255, 0.5);
}

.date-icon {
    display: block;
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.8));
}

.date-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: #ff00ff;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #00ffff;
}

.event-info {
    padding: 25px;
}

.event-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1.2;
}

.event-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    letter-spacing: 0.05em;
}

/* Call to Action Section */
.cta-section {
    position: relative;
    height: 600px;
    background: url('cta-image.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.5) 0%, rgba(255, 20, 147, 0.5) 50%, rgba(0, 191, 255, 0.4) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 2rem;
}

/* RSVP Form Styles */
.cta-content-form {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
    width: 100%;
}

.cta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.rsvp-form {
    width: 100%;
}

/* Form Fields */
.form-fields {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.form-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Gender Selection */
.gender-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gender-label {
    flex: 1;
    cursor: pointer;
}

.gender-label input[type="radio"] {
    display: none;
}

.gender-option {
    display: block;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gender-label:hover .gender-option {
    border-color: rgba(255, 255, 255, 0.6);
}

.gender-label input[type="radio"]:checked + .gender-option {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.5) 0%, rgba(255, 20, 147, 0.5) 100%);
    border-color: rgba(255, 0, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.gender-label input[type="radio"]:disabled + .gender-option {
    opacity: 0.6;
    cursor: not-allowed;
}

.rsvp-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.rsvp-btn {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 2rem 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(255, 20, 147, 0.3) 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.rsvp-btn:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.5);
}

.rsvp-btn:active {
    transform: translateY(-5px);
}

.rsvp-btn .emoji {
    font-size: 3rem;
    display: block;
}

.rsvp-btn .text {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.rsvp-yes:hover {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3) 0%, rgba(0, 200, 0, 0.4) 100%);
    border-color: rgba(0, 255, 0, 0.8);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.4);
}

.rsvp-maybe:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.3) 0%, rgba(255, 140, 0, 0.4) 100%);
    border-color: rgba(255, 165, 0, 0.8);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.4);
}

.rsvp-no:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(200, 0, 0, 0.4) 100%);
    border-color: rgba(255, 0, 0, 0.8);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.4);
}

.response-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.response-message.show {
    opacity: 1;
}

.response-message.success {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.3) 0%, rgba(0, 200, 0, 0.4) 100%);
    border: 2px solid rgba(0, 255, 0, 0.6);
    color: #fff;
}

.response-message.error {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3) 0%, rgba(200, 0, 0, 0.4) 100%);
    border: 2px solid rgba(255, 0, 0, 0.6);
    color: #fff;
}

.google-form-container {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.play-button {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.8);
    line-height: 1;
}

.cta-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    color: #fff;
}

.cta-info p {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 29vh;
        background-size: 124% auto;
        background-position: top center;
        background-repeat: no-repeat;
        background-color: #000;
    }
    
    .hero-content   {
    }
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Countdown responsive */
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 1.2rem;
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .event-image-container {
        height: 250px;
    }
    
    .cta-section {
        height: auto;
        min-height: 400px;
    }
    
    .cta-content-form {
        padding: 2rem 1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    /* Form responsive */
    .form-fields {
        gap: 1rem;
    }
    
    .form-input {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }
    
    .gender-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .gender-option {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .rsvp-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rsvp-btn {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .rsvp-btn .emoji {
        font-size: 2rem;
    }
    
    .rsvp-btn .text {
        font-size: 1.2rem;
    }
    
    .response-message {
        font-size: 1rem;
        padding: 1rem;
    }
    
    /* Smaller stars on mobile */
    .hero-section .star-hero-1,
    .hero-section .star-hero-2,
    .hero-section .star-hero-3,
    .hero-section .star-hero-4 {
        font-size: 0.4rem !important;
    }
    
    .logo-container .star-1,
    .logo-container .star-2,
    .logo-container .star-3,
    .logo-container .star-4,
    .logo-container .star-5,
    .logo-container .star-6,
    .logo-container .star-7,
    .logo-container .star-8,
    .logo-container .star-9,
    .logo-container .star-10 {
        font-size: 0.3rem !important;
    }
    
    /* Smaller blobs on mobile - much smaller */
    .blob-1 {
        width: 12px !important;
        height: 12px !important;
    }
    
    .blob-2 {
        width: 10px !important;
        height: 10px !important;
    }
    
    .blob-3 {
        width: 9px !important;
        height: 9px !important;
    }
    
    .blob-4 {
        width: 11px !important;
        height: 11px !important;
    }
    
    .blob-5 {
        width: 10px !important;
        height: 10px !important;
    }
    
    .blob-6 {
        width: 12px !important;
        height: 12px !important;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-number {
        font-size: 3rem;
    }
    
    .cta-info h3 {
        font-size: 1.5rem;
    }
}

/* Decorative Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

/* Sparkle Effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Additional Floating Blobs */
.blob-1, .blob-2, .blob-3, .blob-4, .blob-5, .blob-6 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.blob-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.5) 0%, transparent 70%);
    animation: float 7s ease-in-out infinite;
}

.blob-2 {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, transparent 70%);
    animation: float 9s ease-in-out infinite;
    animation-delay: 1s;
}

.blob-3 {
    bottom: 25%;
    left: 15%;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.45) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.blob-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    animation-delay: 0.5s;
}

.blob-5 {
    top: 25%;
    right: 12%;
    width: 95px;
    height: 95px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.5) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
    animation-delay: 1.5s;
}

.blob-6 {
    bottom: 35%;
    right: 18%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.4) 0%, transparent 70%);
    animation: float 7.5s ease-in-out infinite;
    animation-delay: 3s;
}

/* Decorative Blobs - More floating elements */
.hero-content::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
    z-index: -1;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
    z-index: -1;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite;
    z-index: -1;
}

/* Twinkling Stars */
.hero-section .star-hero-1,
.hero-section .star-hero-2,
.hero-section .star-hero-3,
.hero-section .star-hero-4 {
    position: absolute;
    font-size: 2rem;
    color: #fff;
    animation: sparkle 1.8s ease-in-out infinite;
    z-index: 3;
}

.hero-section .star-hero-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.hero-section .star-hero-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.hero-section .star-hero-3 {
    top: 40%;
    left: 8%;
    animation-delay: 1.8s;
}

.hero-section .star-hero-4 {
    top: 35%;
    right: 12%;
    animation-delay: 0.7s;
}

.logo-container {
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.logo-container .star-1,
.logo-container .star-2,
.logo-container .star-3,
.logo-container .star-4,
.logo-container .star-5,
.logo-container .star-6,
.logo-container .star-7,
.logo-container .star-8,
.logo-container .star-9,
.logo-container .star-10 {
    position: absolute;
    color: #fff;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.logo-container .star-1 {
    top: -30%;
    left: 5%;
    animation-delay: 0.5s;
}

.logo-container .star-2 {
    top: -20%;
    right: 10%;
    animation-delay: 1.5s;
}

.logo-container .star-3 {
    top: 50%;
    left: -5%;
    animation-delay: 2s;
}

.logo-container .star-4 {
    top: 50%;
    right: -5%;
    animation-delay: 0.8s;
}

.logo-container .star-5 {
    top: -25%;
    left: 50%;
    animation-delay: 2.5s;
}

.logo-container .star-6 {
    top: 10%;
    left: -10%;
    animation-delay: 1.2s;
}

.logo-container .star-7 {
    top: 10%;
    right: -10%;
    animation-delay: 3s;
}

.logo-container .star-8 {
    top: 80%;
    left: 15%;
    animation-delay: 0.3s;
}

.logo-container .star-9 {
    top: 80%;
    right: 15%;
    animation-delay: 2.2s;
}

.logo-container .star-10 {
    top: 60%;
    left: 50%;
    animation-delay: 1.7s;
}
