* {
    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;
}

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

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