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

body {
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
    color: #ff8c00;
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    width: 100%;
    background-color: #000;
    border-bottom: 2px solid #ff8c00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    color: #ff8c00;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(255, 140, 0, 0.6);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

    .nav-links a {
        text-decoration: none;
        color: #ffffff;
        font-size: 1.1rem;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: #ff8c00;
            text-shadow: 0 0 6px rgba(255, 140, 0, 0.8);
        }

/* MAIN CONTENT (FIXED) */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px; /* pushes content below navbar */
    padding: 40px 20px; /* better spacing */
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #ff8c00;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.7);
    margin-bottom: 20px;
}

p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: #f5b35c;
}

.skate {
    color: #ffffff;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 140, 0, 0.7));
}

/* FACEBOOK BUTTON */
.fb-btn {
    background-color: #ff8c00;
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
    font-size: 18px;
}

    .fb-btn:hover {
        background-color: #ffa733;
        box-shadow: 0 0 12px rgba(255, 140, 0, 1);
        transform: scale(1.1);
    }

/* MAIN BUTTON */
.main-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background-color: #ff8c00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

    .main-btn:hover {
        background-color: #ffa733;
        box-shadow: 0 0 16px rgba(255, 140, 0, 1);
        transform: scale(1.05);
    }

/* CTA layout */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.arrow-text {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.scan-line {
    width: 4px;
    height: 55px;
    border-radius: 999px;
    background: #ff8c00;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
}

/* TARGET EFFECT */
.target-btn {
    position: relative;
}

    .target-btn::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 110%;
        height: 145%;
        transform: translate(-50%, -50%);
        border: 2px solid rgba(255, 140, 0, 0.8);
        border-radius: 14px;
        box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
        pointer-events: none;
    }

    .target-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 125%;
        height: 175%;
        transform: translate(-50%, -50%);
        border: 2px solid rgba(255, 140, 0, 0.3);
        border-radius: 18px;
        pointer-events: none;
    }

/* CONTACT */
.contact-box {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid #ff8c00;
    border-radius: 12px;
    background-color: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.4);
}

.email-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .email-link:hover {
        color: #ffa733;
        text-shadow: 0 0 8px rgba(255, 140, 0, 0.8);
    }

/* COLUMNS */
.columns {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.column {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(20, 20, 20, 0.9);
}

.do-column {
    border: 2px solid #28a745;
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.4);
}

    .do-column h2 {
        color: #28a745;
    }

.dont-column {
    border: 2px solid #dc3545;
    box-shadow: 0 0 12px rgba(220, 53, 69, 0.4);
}

    .dont-column h2 {
        color: #dc3545;
    }

.column ul {
    margin-top: 15px;
    padding-left: 20px;
    text-align: left;
}

.column li {
    margin-bottom: 10px;
}

/* EQUIPMENT BUTTON */
.equip-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #ff8c00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.6);
    animation: pulseEquip 1.4s infinite;
    transition: 0.3s;
}

@keyframes pulseEquip {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.equip-btn:hover {
    background-color: #ffa733;
    box-shadow: 0 0 24px rgba(255, 140, 0, 1);
}

/* TOOLTIP */
.tooltip {
    display: none;
    margin-top: 6px;
    background-color: #000;
    color: #ff8c00;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
    font-size: 0.9rem;
}

li.active .tooltip {
    display: block;
}

/*RECOMMENDED RETAILERS BUTTON*/
.retailer-btn {
    display: inline-block;
    margin: 15px 0 20px 0;
    padding: 12px 24px;
    background: orange;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 0 10px orange;
    transition: 0.3s;
}

    .retailer-btn:hover {
        background: #ffb733;
        box-shadow: 0 0 20px orange;
    }

    /*APP LINK BUTTON QR*/

.app-link {
    margin-top: 25px;
    text-align: center;
}

    .app-link a {
        text-decoration: none;
        color: orange;
        font-weight: bold;
        display: inline-block;
        transition: 0.3s ease;
    }

    .app-link img {
        width: 180px;
        border-radius: 12px;
        border: 2px solid orange;
        box-shadow: 0 0 15px orange;
        transition: 0.3s ease;
    }

        .app-link img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px orange;
        }

    .app-link p {
        margin-top: 8px;
        font-size: 1.1rem;
    }

    /*PAYPAL BUTTON*/
.paypal-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    color: black;
    background: orange;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 10px orange, 0 0 25px rgba(255,140,0,0.6);
    transition: all 0.3s ease;
}

    .paypal-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px orange, 0 0 40px rgba(255,140,0,0.9);
    }
    /*ZELLE SECTION*/
.zelle-section {
    margin-top: 40px;
    text-align: center;
}

.zelle-text {
    color: orange;
    font-weight: bold;
    margin-bottom: 10px;
}

.zelle-qr {
    width: 360px;
    max-width: 80%;
    border-radius: 10px;
    background: white; /* keeps QR scannable */
    padding: 10px;
    box-shadow: 0 0 15px orange, 0 0 30px rgba(255,140,0,0.6);
    transition: transform 0.3s ease;
}

    .zelle-qr:hover {
        transform: scale(1.05);
    }

.zelle-name {
    margin-top: 10px;
    color: orange;
    font-weight: bold;
    letter-spacing: 1px;
}

/*Button styles*/

.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 35px;
}

    .button-row .equip-btn {
        width: 260px;
        text-align: center;
        display: inline-block;
    }

    /* PARENTS Styles*/
/* PARENTS PAGE */

.parent-header {
    text-align: center;
    margin-top: 60px;
}

    .parent-header h1 {
        color: orange;
        font-size: 3rem;
        text-transform: uppercase;
        letter-spacing: 4px;
        text-shadow: 0 0 10px orange, 0 0 20px orange, 0 0 40px #ff8800;
    }

.blank-page {
    height: 85vh;
}
.parent-info-box {
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    border: 3px solid orange;
    border-radius: 25px;
    background: rgba(255, 140, 0, 0.05);
    box-shadow: 0 0 15px orange, 0 0 30px rgba(255, 140, 0, 0.5);
    color: white;
    font-size: 0.75rem;
    line-height: 1.8;
    text-align: center;
}

    .parent-info-box p {
        margin: 0;
    }

/* MOBILE */
@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        gap: 15px;
    }
}
