/*
Theme Name: Star Spangled Sandcastles
Theme URI: https://914digital.com
Description: Bootstrap 25 - Star Spangled Sandcastles Contest
Author: 914Digital
Author URI: https://914digital.com
Version: 1.0
License: MIT License
License URI: http://opensource.org/licenses/MIT
*/

/* ========================================
   Fonts
   - Fredoka: rounded, sandy, playful display
   - Baloo 2: friendly secondary display / accents
   - Mulish: clean, legible body
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Baloo+2:wght@500;600;700;800&family=Mulish:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ========================================
   Star Spangled Sandcastles Brand Colors
   Beachy-first: ocean blues + teal + sand,
   with patriotic red as a light accent only.
   ======================================== */
:root {
    /* Ocean / sky */
    --ss-deep-ocean: #0b3d5c;     /* deep navy-teal, headers/footers */
    --ss-ocean: #1a6e8e;          /* mid ocean blue */
    --ss-teal: #2fa6a6;           /* turquoise shallows */
    --ss-light-teal: #7fd1cb;     /* foam highlight */
    --ss-sky: #d9f0f3;            /* pale sky/foam wash */

    /* Sand */
    --ss-sand: #f4e4c1;           /* warm sand */
    --ss-light-sand: #fbf3df;     /* sun-bleached sand */
    --ss-deep-sand: #d9bf8e;      /* wet sand */
    --ss-driftwood: #8a7a5c;      /* driftwood text on sand */

    /* Patriotic accent (used sparingly) */
    --ss-flag-red: #c8443c;       /* soft, sun-faded red */
    --ss-flag-red-bright: #e2554a;

    /* Neutrals */
    --ss-ink: #143042;            /* primary text */
    --ss-white: #ffffff;
}

body {
	background-color: var(--ss-light-sand);
	font-family: 'Mulish', sans-serif;
	font-weight: 400;
	color: var(--ss-ink);
	scroll-behavior: smooth;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Baloo 2', 'Fredoka', sans-serif;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: var(--ss-deep-ocean);
}

h1 {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	letter-spacing: 0.5px;
}

p {
	font-family: 'Mulish', sans-serif;
	font-weight: 400;
	line-height: 1.7;
}

a {
	text-decoration: none;
	color: var(--ss-ocean);
	transition: all 0.3s ease;
}

a:hover, a:focus, a:active {
	color: var(--ss-teal);
	opacity: 0.95;
}

img {
	max-width: 100%;
	height: auto;
}

/* ========================================
   Wave + motif dividers (decorative SVG)
   ======================================== */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    display: block;
    margin: 0;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 90px;
}
.wave-divider.wave-divider-short svg { height: 5px; }
@media (max-width: 768px) {
    .wave-divider svg { height: 55px; }
    .wave-divider.wave-divider-short svg { height: 32px; }
}

/* Subtle star/stripe motif overlay helper */
.motif-stars::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M30 10l3.5 7.1 7.8 1.1-5.6 5.5 1.3 7.8L30 35l-7 3.7 1.3-7.8-5.6-5.5 7.8-1.1z'/%3E%3Cpath fill='%23ffffff' fill-opacity='0.04' d='M90 70l3.5 7.1 7.8 1.1-5.6 5.5 1.3 7.8L90 95l-7 3.7 1.3-7.8-5.6-5.5 7.8-1.1z'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* ========================================
   Buttons
   ======================================== */
.btn.btn-primary {
    background: linear-gradient(135deg, var(--ss-ocean) 0%, var(--ss-teal) 100%);
    border: 2px solid var(--ss-white);
    color: #ffffff;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    box-shadow: 0 6px 16px rgba(11, 61, 92, 0.18);
    transition: all 0.3s ease;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
	background: linear-gradient(135deg, var(--ss-teal) 0%, var(--ss-light-teal) 100%);
	border-color: #ffffff;
	color: var(--ss-deep-ocean);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(47, 166, 166, 0.35);
	outline: none;
}

/* Accent button (the rare splash of red) */
.btn.btn-accent {
    background: linear-gradient(135deg, var(--ss-flag-red) 0%, var(--ss-flag-red-bright) 100%);
    border: 2px solid var(--ss-white);
    color: #ffffff;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    box-shadow: 0 6px 16px rgba(200, 68, 60, 0.22);
    transition: all 0.3s ease;
}
.btn.btn-accent:hover,
.btn.btn-accent:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(200, 68, 60, 0.35);
    color: #fff;
}

/* ========================================
   Navbar
   ======================================== */
.navbar {
    transition: all 0.4s ease;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    background: transparent;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand .brand-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
}
.navbar-brand .brand-text .brand-script { color: var(--ss-light-teal); }

@media (max-width: 991px) {
    .navbar-brand .brand-text {
        font-size: 1.15rem;
        white-space: normal;
        line-height: 1.15;
        display: inline-block;
        max-width: 70vw;
    }
}
@media (max-width: 400px) {
    .navbar-brand .brand-text { font-size: 1rem; }
}

.navbar.scrolled {
    background-color: var(--ss-deep-ocean) !important;
    box-shadow: 0 4px 14px rgba(11, 61, 92, 0.25);
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

body {
    padding-top: 0; /* hero is full-bleed; nav overlays it */
}

.navbar-nav .nav-link {
    transition: color 0.3s ease, opacity 0.3s ease;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: #fff;
}
.navbar-nav .nav-link:hover {
    color: var(--ss-light-teal);
}

.navbar .container { transition: padding 0.4s ease; }
.navbar.scrolled .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.tel-link.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.tel-link.btn i {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

/* Mobile toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.navbar-toggler:hover {
    background: rgba(127, 209, 203, 0.12);
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%237fd1cb' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: linear-gradient(160deg, rgba(11,61,92,0.98) 0%, rgba(26,110,142,0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-menu-overlay.active { right: 0; }
.mobile-menu-content {
    position: relative;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mobile-menu-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-menu-close:hover {
    background: rgba(127, 209, 203, 0.2);
    border-color: var(--ss-light-teal);
    transform: rotate(90deg);
}
.mobile-menu-nav { margin-bottom: 3rem; }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list li { margin-bottom: 0.5rem; }
.mobile-nav-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Baloo 2', sans-serif;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background: rgba(127, 209, 203, 0.2);
    border-color: var(--ss-light-teal);
    transform: translateX(10px);
    color: var(--ss-light-teal);
}
.mobile-menu-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu-contact .btn { font-size: 1.25rem; padding: 1rem; }

@media (min-width: 992px) {
    .navbar-toggler { display: none; }
    .mobile-menu-overlay { display: none; }
}
@media (max-width: 991px) {
    .menu-wrapper { display: none !important; }
}
body.menu-open { overflow: hidden; }

/* ========================================
   Hero Banner
   ======================================== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    background-color: var(--ss-deep-ocean);
}
.video-background { z-index: 0; }
.video-background video {
    object-fit: cover;
    width: 100%; height: 100%;
}
.hero-bg-image {
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.banner-content { z-index: 2; }

.banner-content h1 {
	font-family: 'Fredoka', sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
    font-size: 4rem;
    line-height: 1.05;
    color: #fff;
}
.banner-content .banner-script {
    font-family: 'Baloo 2', cursive, sans-serif;
    color: var(--ss-light-teal);
}
.banner-content p {
	font-family: 'Mulish', sans-serif;
	font-weight: 500;
}

/* Event detail chips in hero */
.event-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.75rem 0 2rem;
}
.event-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}
.event-chip i { color: var(--ss-light-teal); }

/* Animations */
.animate-fade-in { animation: fadeInUp 1s ease-out; }
.animate-fade-in-delay { animation: fadeInUp 1s ease-out 0.3s both; }
.animate-fade-in-delay-2 { animation: fadeInUp 1s ease-out 0.6s both; }
.animate-bounce { animation: bounce 2s infinite; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.banner-content h1,
.banner-content p {
    text-shadow: 2px 2px 12px rgba(11, 61, 92, 0.6);
}

@media (max-width: 768px) {
    .hero-banner { min-height: 100vh; }
    .banner-content h1 { font-size: 2.6rem; }
    .banner-content .lead { font-size: 1.1rem; }
}

/* Mobile hero layout fixes: clear the fixed navbar, allow content to grow,
   stop the scroll indicator from overlapping the buttons. */
@media (max-width: 991px) {
    /* Let the hero content start below the navbar and grow as tall as needed
       instead of being force-centered into a single 100vh screen. */
    .banner-content {
        min-height: auto !important;
        align-items: flex-start !important;
        padding-top: 130px;   /* clears the fixed navbar */
        padding-bottom: 60px;
    }
    .hero-banner {
        min-height: 100vh;
        height: auto;
    }
    /* Scroll indicator overlaps content on small screens — hide it. */
    .scroll-indicator { display: none !important; }

    /* Stack hero CTAs full-width with spacing on mobile */
    .hero-cta-group { display: flex; flex-direction: column; gap: 0.85rem; align-items: stretch; }
    .hero-cta-group .btn { width: 100%; margin: 0 !important; }
}

section { position: relative; }

/* ========================================
   Rules & Judging Section (sand background)
   ======================================== */
.rules-section {
    background: linear-gradient(180deg, var(--ss-light-sand) 0%, var(--ss-sand) 100%);
    position: relative;
    z-index: 1;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: var(--ss-deep-ocean);
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 5px;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--ss-teal), var(--ss-flag-red));
}

.rule-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    border-left: 5px solid var(--ss-teal);
    box-shadow: 0 4px 14px rgba(11, 61, 92, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(11, 61, 92, 0.15);
    border-left-color: var(--ss-flag-red);
}
.rule-icon {
    width: 46px; height: 46px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ss-ocean), var(--ss-teal));
    color: #fff; font-size: 1.2rem;
    margin-bottom: 0.9rem;
}
.rule-card h5 {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    color: var(--ss-deep-ocean);
    font-size: 1.1rem;
}
.rule-card p {
    font-size: 0.95rem;
    color: var(--ss-driftwood);
    margin-bottom: 0;
}

/* Judging criteria pills */
.judging-band {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(11, 61, 92, 0.1);
    margin-top: 2.5rem;
}
.criteria-item {
    text-align: center;
    padding: 1rem;
}
.criteria-num {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ss-teal);
    line-height: 1;
}
.criteria-item h6 {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    color: var(--ss-deep-ocean);
    margin-top: 0.4rem;
    font-size: 1.1rem;
}
.criteria-item p {
    font-size: 0.88rem;
    color: var(--ss-driftwood);
    margin-bottom: 0;
}

/* ========================================
   Entry Fees / Register (ocean background)
   ======================================== */
.entry-section {
    background: linear-gradient(180deg, var(--ss-ocean) 0%, var(--ss-deep-ocean) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.entry-section .section-title { color: #fff; }
.entry-section .lead { color: var(--ss-sky); }

/* Join / Sponsor form section (bottom, dark ocean) */
.join-section {
    background: linear-gradient(180deg, var(--ss-deep-ocean) 0%, #07293d 100%);
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 5rem;
}
.join-section .section-title { color: #fff; }
.join-section .lead { color: var(--ss-sky); }

.entry-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.35s ease;
    border: 3px solid transparent;
    height: 100%;
}
.entry-card:hover {
    transform: translateY(-8px);
    border-color: var(--ss-light-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.entry-card .entry-type {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    color: var(--ss-ocean);
    font-size: 1.35rem;
}
.entry-card .entry-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ss-deep-ocean);
    line-height: 1;
    margin: 0.5rem 0;
}
.entry-card .entry-price small {
    font-size: 1rem;
    color: var(--ss-driftwood);
}
.entry-card p { color: var(--ss-driftwood); }

/* ========================================
   Sponsorship Tiers (light foam background)
   ======================================== */
.sponsor-section {
    background: linear-gradient(180deg, var(--ss-sky) 0%, var(--ss-light-sand) 100%);
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.tier-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(11, 61, 92, 0.08);
    transition: all 0.3s ease;
    border-top: 6px solid var(--ss-teal);
    height: 100%;
}
.tier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(11, 61, 92, 0.16);
}
.tier-card.tier-featured {
    border-top-color: var(--ss-flag-red);
    box-shadow: 0 10px 30px rgba(200, 68, 60, 0.18);
}
.tier-badge {
    display: inline-block;
    background: var(--ss-flag-red);
    color: #fff;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.tier-name {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    color: var(--ss-deep-ocean);
    font-size: 1.3rem;
}
.tier-price {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ss-teal);
    line-height: 1;
    margin: 0.25rem 0 1rem;
}
.tier-featured .tier-price { color: var(--ss-flag-red); }
.tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tier-card ul li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: var(--ss-ink);
}
.tier-card ul li::before {
    content: '\2605'; /* star */
    position: absolute;
    left: 0; top: 0;
    color: var(--ss-teal);
    font-size: 0.9rem;
}
.tier-featured ul li::before { color: var(--ss-flag-red); }

/* ========================================
   Footer
   ======================================== */
/* ========================================
   Payment Form (Gravity Forms on dark ocean)
   ======================================== */
.payment-form-wrapper {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    position: relative;
    z-index: 1;
}
.payment-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: var(--ss-deep-ocean);
    font-size: 1.7rem;
}
.payment-sub { color: var(--ss-driftwood); }
.payment-secure {
    font-family: 'Baloo 2', sans-serif;
    font-size: 0.85rem;
    color: var(--ss-driftwood);
}
.payment-secure i { color: var(--ss-teal); }

/* Gravity Forms field styling */
.payment-form-wrapper .gform_wrapper { margin: 0 !important; }
.payment-form-wrapper .gfield_label {
    color: var(--ss-deep-ocean) !important;
    font-family: 'Baloo 2', sans-serif !important;
    font-weight: 600 !important;
}
.payment-form-wrapper input[type="text"],
.payment-form-wrapper input[type="email"],
.payment-form-wrapper input[type="tel"],
.payment-form-wrapper input[type="number"],
.payment-form-wrapper textarea,
.payment-form-wrapper select {
    background: var(--ss-light-sand) !important;
    border: 1px solid var(--ss-deep-sand) !important;
    color: var(--ss-ink) !important;
    padding: 0.7rem 1rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}
.payment-form-wrapper input[type="text"]:focus,
.payment-form-wrapper input[type="email"]:focus,
.payment-form-wrapper input[type="tel"]:focus,
.payment-form-wrapper input[type="number"]:focus,
.payment-form-wrapper textarea:focus,
.payment-form-wrapper select:focus {
    background: #fff !important;
    border-color: var(--ss-teal) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(47, 166, 166, 0.2) !important;
}
.payment-form-wrapper input::placeholder,
.payment-form-wrapper textarea::placeholder { color: var(--ss-driftwood) !important; }

/* Product / total styling */
.payment-form-wrapper .ginput_total,
.payment-form-wrapper .gfield_total {
    font-family: 'Fredoka', sans-serif !important;
    color: var(--ss-deep-ocean) !important;
    font-weight: 600 !important;
}

/* Submit button -> accent (the splash of red) */
.payment-form-wrapper .gform_button,
.payment-form-wrapper input[type="submit"] {
    background: linear-gradient(135deg, var(--ss-flag-red) 0%, var(--ss-flag-red-bright) 100%) !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    padding: 0.85rem 2.5rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
    font-family: 'Baloo 2', sans-serif !important;
    font-size: 1.1rem !important;
}
.payment-form-wrapper .gform_button:hover,
.payment-form-wrapper input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 26px rgba(200, 68, 60, 0.4) !important;
}
.payment-form-wrapper .gfield_description,
.payment-form-wrapper .validation_message { color: var(--ss-driftwood) !important; }
.payment-form-wrapper .gfield_error .gfield_label { color: var(--ss-flag-red) !important; }
@media (max-width: 576px) {
    .payment-form-wrapper { padding: 1.5rem; }
}


/* ========================================
   America250 placements
   ======================================== */
/* Hero eyebrow */
.hero-a250 {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}
.hero-a250 .a250-logo {
    height: 64px;
    width: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}
.hero-a250 .a250-tagline {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.3px;
    text-shadow: 1px 1px 6px rgba(11,61,92,0.7);
}
@media (max-width: 576px) {
    .hero-a250 { flex-direction: column; gap: 0.5rem; }
    .hero-a250 .a250-tagline { font-size: 0.85rem; text-align: center; }
}

/* Callout band (sits on sand) */
/* ========================================
   Sponsor Strip (under hero, prime placement)
   ======================================== */
.sponsor-strip {
    background: var(--ss-light-sand);
    padding: 0.5rem 0 0.9rem;
    margin-top: -2px;
    border-bottom: 1px solid var(--ss-deep-sand);
}
.sponsor-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}
.sponsor-strip-label {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ss-driftwood);
    white-space: nowrap;
}
.sponsor-strip-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.sponsor-strip-tile {
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    box-shadow: 0 2px 8px rgba(11, 61, 92, 0.08);
    transition: all 0.25s ease;
}
.sponsor-strip-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 61, 92, 0.15);
}
.sponsor-strip-tile img {
    max-height: 42px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 575px) {
    .sponsor-strip-inner { flex-direction: column; gap: 0.85rem; }
    .sponsor-strip-tile { height: 52px; }
    .sponsor-strip-tile img { max-height: 36px; max-width: 130px; }
	.sponsor-strip {padding: 0.5rem 0 2.9rem;}
}

.a250-callout { background: var(--ss-sand); padding: 3rem 0 3.5rem; position: relative; }
.a250-callout-logo { max-width: 100%; height: auto; max-height: 190px; display: inline-block; border-radius: 16px; box-shadow: 0 8px 24px rgba(11,61,92,0.15); }
@media (max-width: 767px) { .a250-callout-logo { max-height: 150px; } }
.a250-callout-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: var(--ss-deep-ocean);
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}
.a250-callout-text {
    font-family: 'Mulish', sans-serif;
    color: var(--ss-ink);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Footer banner */
.a250-footer {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--ss-deep-sand);
}
.a250-footer-logo { max-height: 110px; width: auto; height: auto; margin-bottom: 0.75rem; display: inline-block; border-radius: 14px; box-shadow: 0 6px 18px rgba(11,61,92,0.12); }
.a250-footer-text {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    color: var(--ss-deep-ocean);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.footer-sponsors {
    background: linear-gradient(180deg, var(--ss-light-sand) 0%, var(--ss-sand) 100%);
    padding: 3.5rem 0 4rem;
    position: relative;
}
.sponsor-group { margin-bottom: 2.5rem; }
.sponsor-group:last-child { margin-bottom: 0; }
.sponsor-heading {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: var(--ss-deep-ocean);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.sponsor-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--ss-teal), var(--ss-flag-red));
}
.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.25rem;
}
.logo-tile {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 110px;
    box-shadow: 0 4px 14px rgba(11, 61, 92, 0.1);
    transition: all 0.3s ease;
}
.logo-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(11, 61, 92, 0.16);
}
.logo-tile img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}
@media (max-width: 576px) {
    .logo-tile { min-width: 140px; min-height: 90px; padding: 1rem; }
    .logo-tile img { max-height: 60px; max-width: 150px; }
}


.footer-top .address {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ss-driftwood);
}
.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--ss-driftwood);
    line-height: 1.5;
}
@media(max-width: 768px) {
	.footer-top { text-align: center; }
}

footer {
	background-color: var(--ss-deep-ocean);
	padding: 20px;
	color: #fff;
	position: relative;
}
footer .credit {
	float: right;
	font-family: 'Mulish', sans-serif;
}
footer .credit .site-by {
	font-size: 10px;
    position: relative;
    top: 2px;
}
@media(max-width:768px) {
	footer .credit { float: none; margin-top: 20px; }
}

/* Gravity forms button */
.gform_button.button.btn.btn-primary {
	background: linear-gradient(135deg, var(--ss-ocean) 0%, var(--ss-teal) 100%) !important;
	color: #ffffff !important;
	font-family: 'Baloo 2', sans-serif !important;
	font-weight: 700 !important;
	font-size: 1.1rem !important;
	padding: 0.75rem 2.5rem !important;
	border-radius: 50px !important;
	border: 2px solid var(--ss-white) !important;
	letter-spacing: 0.5px !important;
	transition: all 0.3s ease !important;
}
.gform_button.button.btn.btn-primary:hover {
	background: linear-gradient(135deg, var(--ss-teal) 0%, var(--ss-light-teal) 100%) !important;
	border-color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(47, 166, 166, 0.35);
}

/* Scroll-up */
.scrollup {
	width: 50px; height: 50px;
    position: fixed;
    bottom: 50px; right: 30px;
    display: none;
    text-indent: -9999px;
    background-image: url(img/angle-up.svg);
    background-size: 19px;
    background-color: var(--ss-ocean);
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 15px;
    z-index: 999999;
}
.scrollup:hover { background-color: var(--ss-teal); }