/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    margin: 0;
    background-color: black;
    color: yellow;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

.container {
    width: 100%;
    margin-top: 132px;
    max-width: 750px;
}

.about-section {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 0 10px #ffd70033;
}

    .about-section h2 {
        color: #ffd700;
        text-shadow: 0 0 5px #ffd700;
        margin-bottom: 10px;
    }

    .about-section p {
        color: #f5d76e;
    }
.section-title {
    font-size: 2rem;
    margin: 30px 0 10px;
    color: #ffd700;
    text-align: center;
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700;
}

.contact-section {
    margin-bottom: 40px;
}

.large-email {
    font-size: 1.8rem;
    display: inline-block;
    text-shadow: 0 0 8px #ffd700, 0 0 16px #ffd700, 0 0 24px #ffcc00;
}
/* ALL links */
a {
    color: #00bfff; /* bright blue */
    text-decoration: none;
}

/* glow effect for your theme */
a {
    text-shadow: 0 0 5px #00bfff, 0 0 10px #00bfff, 0 0 20px #0099cc;
}

    /* hover effect */
    a:hover {
        color: #ffffff;
        text-shadow: 0 0 8px white, 0 0 16px #00bfff, 0 0 24px #00bfff;
    }

.home-section {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #ffd700;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
    text-align: center;
}

.home-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.home-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #ffd700;
    border-radius: 10px;
    color: #00bfff;
    text-decoration: none;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #00bfff, 0 0 10px #00bfff, 0 0 20px #0099cc;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

    .home-btn:hover {
        color: white;
        box-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
    }

/* Small logo in top-left */
.nav-logo-img {
    width: 40px; /* small size */
    height: auto;
    margin-right: 10px;
}

/* Make navbar align properly */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Group logo + text together */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* ================= HEADER ================= */
h1 {
    margin: 0;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 5px yellow, 0 0 10px yellow, 0 0 20px gold, 0 0 40px gold;
    animation: flicker 2.5s infinite;
}

/* ================= CASH APP ================= */
.cashapp-container {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.arrow {
    color: white;
    font-size: clamp(1rem, 3vw, 1.35rem);
    animation: bounce 1.2s infinite;
}

    .arrow a {
        color: white;
        text-decoration: none;
    }

        .arrow a:visited,
        .arrow a:hover {
            color: white;
        }

.cashapp a {
    display: inline-block;
    font-size: clamp(1.5rem, 6vw, 3rem);
    color: yellow;
    text-decoration: none;
    text-shadow: 0 0 5px yellow, 0 0 10px gold;
    transition: transform 0.2s ease, text-shadow 0.2s ease;
}

    .cashapp a:hover {
        transform: scale(1.05);
        text-shadow: 0 0 10px yellow, 0 0 20px orange, 0 0 40px orange;
    }

/* ================= ZELLE ================= */
.zelle-container {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.zelle-img {
    width: min(224px, 62vw);
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.35), 0 0 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .zelle-img:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(255, 255, 0, 0.6), 0 0 30px rgba(255, 165, 0, 0.4);
    }

.zelle-text {
    color: white;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
}

.zelle-email {
    color: yellow;
    margin-left: 5px;
    text-shadow: 0 0 5px yellow, 0 0 10px yellow, 0 0 20px gold, 0 0 40px gold;
    animation: glowPulse 2s infinite alternate;
}

/* ================= PAYPAL ================= */
.paypal-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.2rem;
    color: black;
    background: #ffc439;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 10px #ffc439, 0 0 20px #ffb347;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .paypal-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px #ffc439, 0 0 30px orange;
    }

/* ================= TEXT ================= */
.subtext {
    color: ghostwhite;
    margin: 22px auto 0;
    font-size: clamp(0.95rem, 2.4vw, 1.3rem);
    line-height: 1.6;
    max-width: 620px;
}

/* ================= ANIMATIONS ================= */
@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        text-shadow: 0 0 5px yellow, 0 0 10px yellow, 0 0 20px gold, 0 0 40px gold;
    }

    20%, 24%, 55% {
        opacity: 0.4;
        text-shadow: none;
    }

    21%, 23%, 56% {
        opacity: 0.8;
        text-shadow: 0 0 3px yellow, 0 0 6px gold;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 5px yellow, 0 0 10px yellow, 0 0 20px gold;
    }

    to {
        text-shadow: 0 0 10px yellow, 0 0 20px orange, 0 0 40px orange;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
    .cashapp-container {
        flex-direction: column;
        gap: 8px;
    }

    .arrow {
        animation: none;
    }
}
/* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: black;
    border-bottom: 2px solid gold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    z-index: 1000;
}

/* Logo */
.nav-logo {
    color: gold;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    text-shadow: 0 0 5px gold, 0 0 10px gold;
}

/* Links container */
.nav-links {
    display: flex;
    gap: 20px;
}

    /* Links */
    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        transition: all 0.2s ease;
    }

        /* Hover effect */
        .nav-links a:hover {
            color: gold;
            text-shadow: 0 0 5px gold, 0 0 10px gold;
        }

.contact-link {
    font-size: 1.8rem; /* makes it large */
    color: #ffd700; /* gold */
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    /* neon glow */
    text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700, 0 0 20px #ffcc00;
}

    /* optional hover effect */
    .contact-link:hover {
        color: white;
        text-shadow: 0 0 8px white, 0 0 16px #ffd700, 0 0 24px #ffd700;
    }

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}

/*RECOMMENDATIONS BODY PAGE*/

/* Container for both sections */
.recommendation-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Individual boxes */
.recommendation-box {
    border: 2px solid #ffd700; /* gold border */
    border-radius: 12px;
    padding: 25px;
    width: 220px;
    text-align: center;
    /* subtle glow */
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

    /* Section titles */
    .recommendation-box h2 {
        color: #ffd700;
        margin-bottom: 15px;
    }

/* Links */
.recommendation-link {
    display: inline-block;
    font-size: 1.2rem;
    color: #00bfff;
    text-decoration: none;
    text-shadow: 0 0 5px #00bfff, 0 0 10px #00bfff;
}

    /* Hover effect */
    .recommendation-link:hover {
        color: white;
        text-shadow: 0 0 8px white, 0 0 16px #00bfff;
    }

    /*Embedded Vid Styles*/
/* Center and scale video */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}

    .video-container iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 10px;
    }
    /*TESTIMONY PAGE STYLES*/
.testimony-box {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    border: 2px solid #ffd700;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

    .testimony-box p {
        color: #f5d76e;
        font-size: 1.1rem;
        line-height: 1.9;
        text-align: left;
        margin-bottom: 22px;
    }

        .testimony-box p:last-child {
            margin-bottom: 0;
        }