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

body {
    font-family: "Garamond", serif;
    background: #02203A;
    color: white;
    text-align: center;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ----------------------------------------------------
   COLOR PALETTE (Sampled from your logo)
---------------------------------------------------- */
/* 
Turquoise: #3CDDFE
Bright Aqua: #33C6DD
Deep Blue: #0051B4
Navy: #02203A
Pure White: #FFFFFF
*/

/* ----------------------------------------------------
   HEADER
---------------------------------------------------- */
.header {
    padding: 50px 20px;
}

.logo {
    width: 360px; /* responsive & twice the visual impact */
    height: auto;
    margin: 0 auto 25px auto;
    display: block;
    filter: drop-shadow(0 0 20px rgba(60,221,254,0.25)); /* turquoise glow */
}

h1 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* YouTube Button */
.yt-button {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #3CDDFE, #0051B4);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    transition: 0.25s ease;
    font-size: 1.3rem;
}

.yt-button:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

/* ----------------------------------------------------
   VIDEO SECTION (ONE FEATURED VIDEO)
---------------------------------------------------- */
.single-video-section {
    margin-top: 40px;
    margin-bottom: 24px;
    padding: 0 20px;
}

.video-wrapper {
    max-width: 820px;
    margin: auto;
}

iframe {
    width: 100%;
    height: 420px;
    border-radius: 18px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Tablet adjustments */
@media (max-width: 900px) {
    iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    iframe {
        height: 220px;
    }
}

/* ----------------------------------------------------
   CONTACT SECTION (LOGO-MATCHED COLORS)
---------------------------------------------------- */

.contact-section h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.contact-form {
    max-width: 650px;
    margin: auto;
    padding: 2.6rem 2rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.20);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

/* Labels */
.contact-form label {
    text-align: left;
    font-weight: 600;
    font-size: 1.05rem;
    color: white;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d3e3ff;
    font-size: 1rem;
    width: 100%;
    background: #ffffff;
    color: #02203A;
    transition: 0.2s ease;
}

.contact-form textarea {
    height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #3CDDFE;
    outline: none;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #3CDDFE, #0051B4);
    color: white;
    font-size: 1.15rem;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
}

.submit-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* Success message */
.success-message {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 1rem;
    color: #ffffff;
}

/* reCAPTCHA centering */
.captcha-container {
    display: flex;
    justify-content: center;
}

/* ----------------------------------------------------
   FOOTER (Matches Logo Gradient)
---------------------------------------------------- */
footer {
    margin-top: 80px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #0051B4, #02203A);
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ----------------------------------------------------
   LARGE MONITOR SPACING
---------------------------------------------------- */
@media (min-width: 1400px) {
    .header {
        padding-top: 70px;
    }
    .video-wrapper,
    .contact-form {
        max-width: 850px;
    }
}
