* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
  
    background-color: #0A0A0A; 
    color: #fff; 
}

/* --- COLOR PALETTE ---
   #0A0A0A: Midnight Black (Background)
   #E6E6FA: Platinum/Silver (Light Accent 1)
   #00FFFF: Aqua/Cyan (Vibrant Accent 2)
   #8A2BE2: Blue Violet/Deep Magenta (Vibrant Accent 3)
*/


.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

#fireworksVideo {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 
}


.registration-container {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 50px auto;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.95); 
    border-radius: 20px;
   
    border: 3px solid #8A2BE2; 
    
}


.party-header h1 {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    font-size: 3em; 
    white-space: nowrap;
    
    
    color: #ffd900; 
    
    margin-bottom: 25px;
    padding-bottom: 20px;
   
    border-bottom: 3px solid #E6E6FA; 
}

.event-details {
    margin-bottom: 35px;
    padding: 25px;
  
    border: 2px solid #8A2BE2; 
    border-radius: 15px;
   
    background-color: rgba(138, 43, 226, 0.1); 
    transition: background-color 0.3s;
}

.event-details:hover {
    background-color: rgba(138, 43, 226, 0.2); 
}

.event-details h2 {
    color: #ffd900; 
    margin-bottom: 12px;
    font-size: 1.8em;
}

.event-details p {
    line-height: 1.7;
    font-size: 1.15em;
    color: #E6E6FA; 
}


#registrationForm {
    padding: 20px 0;
}

.form-title {
    font-size: 2.5em;
    color: #E6E6FA; 
    text-align: center;
    margin-bottom: 30px;
   
}

.selection-fieldset {
    border: none;
    margin-bottom: 30px;
    padding: 15px;
    text-align: center;
}

.selection-fieldset legend {
    font-size: 1.5em;
    font-weight: 900;
    color: #ffd900; 
    margin-bottom: 15px;
}


.radio-group label {
    background: #1a1a1a;
    padding: 12px 25px;
    border-radius: 30px;
    margin: 0 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    border: 2px solid #E6E6FA;
    font-weight: bold;
    letter-spacing: 1px;
}

.radio-group input[type="radio"]:checked + label {
    background-color: #8A2BE2; 
    color: #fff;
    font-weight: bold;
    transform: scale(1.05); 
    border-color: #ffd900; 
}

.radio-group input[type="radio"] {
    display: none;
}

.form-group {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #333; 
    border-left: 5px solid #8A2BE2; 
    border-radius: 12px;
    background-color: #0A0A0A; 
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #E6E6FA; /* Platinum label text */
    text-transform: uppercase;
    font-size: 0.95em;
}

.form-group input:not([type="checkbox"]), .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #8A2BE2; /* Magenta border */
    border-radius: 8px;
    background-color: #050505;
    color: #fff;
    font-size: 1.1em;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #ffd900; /* Aqua focus border */
    outline: none;
}

/* Default radio group label style */
.radio-group label {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 20px;
    margin: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hide the default radio button */
.radio-group input[type="radio"] {
    display: none;
}

/* Highlight selected option */
.radio-group input[type="radio"]:checked + span,
.radio-group input[type="radio"]:checked ~ label {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

/* Hover effect */
.radio-group label:hover {
    background: rgba(255, 215, 0, 0.2);
}

.payment-section {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    color: #fff;
}

.payment-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.payment-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.qr-section {
    text-align: center;
}

.qr-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 3px solid #FFD700;
}

.bank-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 250px;
}

.upload-section {
    margin-top: 30px;
}

.upload-section input[type="file"] {
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.required-note {
    background-color: rgba(0, 255, 255, 0.1);
    color: #ffd900;
    padding: 20px;
    border-left: 5px solid #E6E6FA;
    border-radius: 5px;
    font-style: italic;
    font-weight: 500;
}

.consent-checkbox label {
    display: inline;
    font-size: 1em;
    color: #fff;
    text-transform: none;
}

.event-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.event-logos img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.event-logos img:hover {
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .event-logos img {
        height: 60px;
    }
}
.event-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
}

.event-logos img {
    width: 150px;                /* Adjust logo size as needed */
    height: 150px;
    object-fit: contain;
    background: #fff;            /* White circle background */
    border-radius: 50%;          /* Makes it circular */
    padding: 15px;               /* Space inside the circle */
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2); /* Subtle glow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-logos img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4); /* Golden glow on hover */
}

@media (max-width: 768px) {
    .event-logos {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin: 20px 0;
    }

    .event-logos img {
        width: 70px;
        height: 70px;
        padding: 10px;
        background: #fff;
        border-radius: 50%;
        object-fit: contain;
        box-shadow: 0 2px 10px rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 480px) {
    .event-logos {
        gap: 10px;
    }

    .event-logos img {
        width: 60px;
        height: 60px;
        padding: 8px;
    }
}
.family-members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 600px) {
  .family-members-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Number of Kids Dropdown --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 0.5px;
}

#kids {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #FFD700; /* Gold border */
    border-radius: 8px;
    background-color: #111; /* Dark background */
    color: #FFD700; /* Gold text */
    font-size: 16px;
    font-weight: 500;
    outline: none;
    appearance: none; /* Removes default arrow style */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23FFD700' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#kids:hover {
    border-color: #fff;
}

#kids:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

#adults {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #FFD700; /* Gold border */
    border-radius: 8px;
    background-color: #111; /* Dark background */
    color: #FFD700; /* Gold text */
    font-size: 16px;
    font-weight: 500;
    outline: none;
    appearance: none; /* Removes default arrow style */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23FFD700' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#adults:hover {
    border-color: #fff;
}

#adults:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}



@media (max-width: 600px) {
    #kids {
        font-size: 15px;
        padding: 12px;
    }
}
upload-section {
   
    width: 90%;
    max-width: 400px;
    margin: 20px auto; 
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;

    /* Centers inline content (like text and the input field's label) */
    text-align: center;
}

.upload-section label {
    display: block; /* Makes the label take up its own line */
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
}

.upload-section input[type="file"] {
    /* File inputs are tricky. Making them display: block ensures they stack */
    display: block;
    margin: 0 auto; /* Centers the block-level input element */
    padding: 10px;
    width: 50%; /* Take full width of the container for a better touch target */
    box-sizing: border-box;
}

/* Optional: Media query for screens smaller than 600px, though the above CSS works well for all sizes (mobile-first approach) */
@media (max-width: 600px) {
    .upload-section {
        width: 95%; /* Use slightly more width on very small screens */
        padding: 15px;
    }
    .upload-section input[type="file"] {
   
    width: 100%; /* Take full width of the container for a better touch target */
    
}
}
.submit-button {
    width: 100%;
    padding: 20px;
    
   
    background: linear-gradient(90deg, #e2bd2b, #e26906); 
    background-size: 200% auto;
    
    color: #000; /* Black text on bright button */
    border: none;
    border-radius: 10px; 
    font-size: 1.8em;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    margin-top: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.submit-button:hover {
    background-position: right center; /* Move gradient */
    color: #000;
    transform: translateY(-3px) scale(1.01);
    /* Subtle border effect on hover, NO GLOW */
    border: 2px solid #E6E6FA; 
}

.submit-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) { 
    body {
        font-size: 14px;
        background-color: #000;
    }

    .registration-container {
        margin: 20px;
        padding: 25px;
        border-width: 2px;
        border-radius: 15px;
    }

    .party-header h1 {
        font-size: 1.9em;
        line-height: 1.3;
        white-space: normal;
        border-bottom-width: 2px;
    }

    .party-header .sub-heading {
        font-size: 1.2em;
        text-align: center;
        color: #E6E6FA;
        margin-top: 5px;
        font-weight: 600;
    }

    .event-details {
        padding: 15px;
    }

    .event-details h2 {
        font-size: 1.4em;
        text-align: center;
    }

    .event-details p {
        font-size: 1em;
        text-align: left;
        line-height: 1.5;
    }

    .form-title {
        font-size: 1.8em;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .selection-fieldset {
        padding: 10px;
    }

    .radio-group label {
        padding: 10px 18px;
        margin: 8px 8px;
        font-size: 0.9em;
        display: inline-block;
    }

    .form-group {
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .form-group label {
        font-size: 0.9em;
    }

    .form-group input:not([type="checkbox"]),
    .form-group textarea {
        font-size: 1em;
        padding: 12px;
    }

    .required-note {
        padding: 15px;
        font-size: 0.9em;
    }

    .consent-checkbox label {
        font-size: 0.9em;
        display: inline-block;
        line-height: 1.4;
    }

    .submit-button {
        padding: 15px;
        font-size: 1.3em;
        letter-spacing: 2px;
        border-radius: 8px;
    }

    #fireworksVideo {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .party-header h1 {
        font-size: 1.6em;
    }

    .form-title {
        font-size: 1.6em;
    }

    .radio-group label {
        display: block;
        width: 100%;
        margin: 8px 0;
    }

    .form-group input:not([type="checkbox"]),
    .form-group textarea {
        font-size: 0.95em;
    }

    .submit-button {
        font-size: 1.2em;
        padding: 14px;
    }
}
