﻿/* ========================================
   GLOBAL
======================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #090909;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* ========================================
   HEADER
======================================== */

header {
    text-align: center;
    padding: 35px 20px 25px;
    background-color: #111111;
    border-bottom: 2px solid #ff7a00;
}

.logo {
    color: #ff7a00;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 5px #ff7a00, 0 0 12px rgba(255, 122, 0, 0.65);
}

.tagline {
    color: #cccccc;
    margin-top: 5px;
    font-size: 1rem;
}


/* ========================================
   NAVIGATION
======================================== */

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background-color: #050505;
    padding: 14px 20px;
    border-bottom: 1px solid #ff7a00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    nav a {
        color: #ffffff;
        text-decoration: none;
        padding: 8px 18px;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }

        nav a:hover {
            background-color: #ff7a00;
            color: #000000;
            box-shadow: 0 0 8px #ff7a00, 0 0 16px rgba(255, 122, 0, 0.5);
        }


/* ========================================
   MAIN
======================================== */

main {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0 60px;
}


/* ========================================
   HERO
======================================== */

.hero {
    text-align: center;
    padding: 70px 25px;
    margin-bottom: 45px;
    background: linear-gradient( rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.9) ), radial-gradient( circle at center, rgba(255, 122, 0, 0.22), transparent 65% );
    border: 1px solid #ff7a00;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 122, 0, 0.4);
}

    .hero h2 {
        color: #ff7a00;
        font-size: 2.3rem;
        margin-bottom: 15px;
        text-shadow: 0 0 8px rgba(255, 122, 0, 0.55);
    }

    .hero p {
        max-width: 700px;
        margin: 0 auto;
        color: #dddddd;
        font-size: 1.05rem;
    }


/* ========================================
   HERO BUTTONS
======================================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}


/* ========================================
   BUTTONS
======================================== */

.main-button,
.secondary-button {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.main-button {
    background-color: #ff7a00;
    color: #000000;
    padding: 11px 22px;
    border: 2px solid #ff7a00;
    box-shadow: 0 0 8px rgba(255, 122, 0, 0.4);
}

    .main-button:hover {
        background-color: #ff922e;
        transform: translateY(-2px);
        box-shadow: 0 0 8px #ff7a00, 0 0 18px rgba(255, 122, 0, 0.65);
    }

.secondary-button {
    color: #ff7a00;
    padding: 9px 18px;
    border: 1px solid #ff7a00;
    margin-top: 15px;
}

    .secondary-button:hover {
        background-color: #ff7a00;
        color: #000000;
        box-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
    }


/* ========================================
   SECTION TITLES
======================================== */

.section-title {
    color: #ff7a00;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* ========================================
   HOME SECTIONS
======================================== */

.home-section,
.latest-release {
    margin-bottom: 50px;
}

.home-box,
.featured-track {
    background-color: #111111;
    border: 1px solid #333333;
    border-left: 4px solid #ff7a00;
    border-radius: 8px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

    .home-box h3 {
        color: #ffffff;
        margin-bottom: 10px;
        font-size: 1.35rem;
    }

    .home-box p {
        color: #cccccc;
        max-width: 700px;
        margin: 0 auto 20px;
    }


/* ========================================
   FEATURED TRACK
======================================== */

.featured-track {
    max-width: 800px;
    margin: 0 auto;
}

.track-info {
    margin-bottom: 18px;
}

    .track-info h3 {
        color: #ff7a00;
        font-size: 1.6rem;
    }

    .track-info p {
        color: #aaaaaa;
        font-size: 0.95rem;
    }

.featured-track audio {
    width: 100%;
    max-width: 650px;
    margin-top: 10px;
}


/* ========================================
   MUSIC PAGE
======================================== */

.music-section {
    margin-bottom: 50px;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.track {
    background-color: #111111;
    border: 1px solid #333333;
    border-left: 4px solid #ff7a00;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .track:hover {
        transform: translateY(-2px);
        border-color: #ff7a00;
        box-shadow: 0 0 12px rgba(255, 122, 0, 0.3);
    }

    .track audio {
        width: 100%;
        margin-top: 12px;
    }


/* ========================================
   MUSIC DROPDOWN PLAYER
======================================== */

.music-player {
    max-width: 750px;
    margin: 0 auto;
    padding: 30px;
    background-color: #111111;
    border: 1px solid #333333;
    border-left: 4px solid #ff7a00;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.15);
}

.track-label {
    display: block;
    margin-bottom: 8px;
    color: #ff7a00;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-select {
    width: 100%;
    padding: 12px 15px;
    background-color: #080808;
    color: #ffffff;
    border: 1px solid #ff7a00;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    outline: none;
}

    .track-select:hover,
    .track-select:focus {
        box-shadow: 0 0 8px rgba(255, 122, 0, 0.6);
    }

.current-track {
    margin: 30px 0 20px;
}

    .current-track h3 {
        color: #ff7a00;
        font-size: 1.6rem;
        margin-bottom: 3px;
    }

    .current-track p {
        color: #999999;
    }

    .current-track .now-playing {
        color: #777777;
        font-size: 0.7rem;
        font-weight: bold;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

.music-player audio {
    display: none;
}


/* ========================================
   CUSTOM AUDIO PLAYER
======================================== */

.custom-audio-player {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 22px auto;
    padding: 16px 18px;
    background-color: #080808;
    border: 1px solid #333333;
    border-left: 4px solid #ff7a00;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255, 122, 0, 0.15);
}

.play-button {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff7a00;
    color: #000000;
    border: 2px solid #ff7a00;
    border-radius: 50%;
    font-size: 1.7rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

    .play-button:hover {
        background-color: #ff922e;
        transform: scale(1.06);
        box-shadow: 0 0 10px #ff7a00, 0 0 20px rgba(255, 122, 0, 0.55);
    }

    .play-button:active {
        transform: scale(0.96);
    }

    .play-button:focus-visible {
        outline: 2px solid #ffffff;
        outline-offset: 3px;
    }

.player-controls {
    flex: 1;
    min-width: 0;
}

.player-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #aaaaaa;
    font-size: 0.78rem;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 7px;
    cursor: pointer;
    accent-color: #ff7a00;
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}

.volume-icon {
    font-size: 0.9rem;
}

.volume-bar {
    width: 100px;
    cursor: pointer;
    accent-color: #ff7a00;
}

.music-player .download-button {
    margin-top: 5px;
}


/* ========================================
   AUDIO
======================================== */

audio {
    accent-color: #ff7a00;
}


/* ========================================
   DOWNLOAD BUTTON
======================================== */

.download-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    background-color: #ff7a00;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid #ff7a00;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

    .download-button:hover {
        background-color: #000000;
        color: #ff7a00;
        transform: translateY(-2px);
        box-shadow: 0 0 8px #ff7a00, 0 0 15px rgba(255, 122, 0, 0.5);
    }


/* ========================================
   VIDEO PAGE
======================================== */

.video-section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
}

.video-card {
    background-color: #111111;
    border: 1px solid #333333;
    border-left: 4px solid #ff7a00;
    border-radius: 8px;
    overflow: hidden;
    min-width: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .video-card:hover {
        transform: translateY(-3px);
        border-color: #ff7a00;
        box-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
    }

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    overflow: hidden;
}

    .video-wrapper video,
    .video-wrapper iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
        background-color: #000000;
    }

    .video-wrapper video {
        object-fit: contain;
    }

.video-info {
    padding: 16px 18px 20px;
}

    .video-info h3 {
        color: #ff7a00;
        font-size: 1.15rem;
        margin-bottom: 4px;
    }

    .video-info p {
        color: #999999;
        font-size: 0.9rem;
    }

.video-hero {
    margin-bottom: 40px;
}


/* ========================================
   ABOUT PAGE
======================================== */

.about {
    margin-top: 45px;
}

.about-box {
    background-color: #111111;
    border: 1px solid #333333;
    border-left: 4px solid #ff7a00;
    border-radius: 8px;
    padding: 25px;
    color: #cccccc;
}


/* ========================================
   FAQ PAGE
======================================== */

.faq-section {
    max-width: 850px;
    margin: 0 auto 60px;
}

.faq-item {
    background-color: #111111;
    border: 1px solid #333333;
    border-left: 4px solid #ff7a00;
    border-radius: 7px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .faq-item:hover {
        border-color: #ff7a00;
        box-shadow: 0 0 10px rgba(255, 122, 0, 0.25);
    }

    .faq-item summary {
        padding: 18px 20px;
        color: #ffffff;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        list-style: none;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "+";
            float: right;
            color: #ff7a00;
            font-size: 1.4rem;
            font-weight: bold;
        }

    .faq-item[open] summary::after {
        content: "−";
    }

    .faq-item[open] summary {
        color: #ff7a00;
        border-bottom: 1px solid #333333;
    }

.faq-answer {
    padding: 18px 20px 22px;
    color: #cccccc;
}

    .faq-answer p {
        margin-bottom: 10px;
    }


/* ========================================
   COMPACT CENTERED HOME PAGE
======================================== */

.compact-home {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /* Less space between nav and Welcome */
    padding: 8px 20px 25px;
    min-height: calc(100vh - 230px);
    display: flex;
    flex-direction: column;
    /* Keeps homepage near the top instead of
       vertically centering it */
    justify-content: flex-start;
    align-items: center;
}

.compact-intro {
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
}

    .compact-intro h2 {
        color: #ff7a00;
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .compact-intro p {
        color: #bbbbbb;
        font-size: 0.95rem;
    }


/* ========================================
   HOME GRID
======================================== */

.home-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin: 0 auto;
}


/* ========================================
   SMALLER HOME CARDS
======================================== */

.home-card {
    width: 100%;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px;
    text-align: center;
    background-color: #111111;
    border: 1px solid #333333;
    border-top: 4px solid #ff7a00;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .home-card:hover {
        transform: translateY(-3px);
        border-color: #ff7a00;
        box-shadow: 0 0 15px rgba(255, 122, 0, 0.3);
    }

    .home-card h2 {
        color: #ff7a00;
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .home-card h3 {
        color: #ffffff;
        font-size: 1rem;
        margin-bottom: 7px;
    }

    .home-card p {
        color: #aaaaaa;
        font-size: 0.88rem;
        line-height: 1.4;
        max-width: 250px;
        margin-bottom: 12px;
    }


/* ========================================
   SOCIAL LINKS
======================================== */

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px auto 0;
}

    .social-links span {
        color: #ffffff;
        font-weight: bold;
    }

    .social-links a {
        color: #ff7a00;
        text-decoration: none;
        font-weight: bold;
        padding: 7px 14px;
        border: 1px solid #ff7a00;
        border-radius: 5px;
        transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

        .social-links a:hover {
            background-color: #ff7a00;
            color: #000000;
            box-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
        }


/* ========================================
   FOOTER
======================================== */

footer {
    background-color: #050505;
    border-top: 1px solid #ff7a00;
    text-align: center;
    padding: 25px 20px;
    color: #888888;
}

    footer strong {
        color: #ff7a00;
    }


/* ========================================
   TABLET
======================================== */

@media screen and (max-width: 850px) {

    .video-grid {
        gap: 18px;
    }
}


/* ========================================
   GENERAL MOBILE
======================================== */

@media screen and (max-width: 700px) {

    header {
        padding: 25px 15px 20px;
    }

    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    nav {
        gap: 5px;
        padding: 10px;
    }

        nav a {
            padding: 7px 11px;
            font-size: 0.9rem;
        }

    main {
        width: 94%;
        padding-top: 20px;
    }

    .hero {
        padding: 45px 20px;
    }

        .hero h2 {
            font-size: 1.8rem;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .main-button,
    .secondary-button {
        max-width: 280px;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .home-box,
    .featured-track,
    .track {
        padding: 20px;
    }
}


/* ========================================
   MOBILE HOME
======================================== */

@media screen and (max-width: 650px) {

    .compact-home {
        width: 100%;
        min-height: auto;
        /* Pulls Welcome closer to nav on phones */
        padding: 6px 12px 15px;
    }

    .compact-intro {
        margin-bottom: 14px;
    }

        .compact-intro h2 {
            font-size: 1.4rem;
        }

        .compact-intro p {
            font-size: 0.85rem;
            line-height: 1.4;
        }

    .home-grid {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 280px;
        gap: 10px;
        margin: 0 auto;
    }

    .home-card {
        min-height: 125px;
        padding: 10px 12px;
        border-top-width: 3px;
    }

        .home-card h2 {
            font-size: 1.15rem;
            margin-bottom: 2px;
        }

        .home-card h3 {
            font-size: 0.95rem;
            margin-bottom: 3px;
        }

        .home-card p {
            font-size: 0.78rem;
            line-height: 1.3;
            max-width: 230px;
            margin-bottom: 8px;
        }


    /* VIDEO PAGE */

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-card {
        width: 100%;
    }

    .video-info {
        padding: 14px 15px 17px;
    }

        .video-info h3 {
            font-size: 1.05rem;
        }


    /* MUSIC PLAYER */

    .music-player {
        padding: 20px;
    }

    .custom-audio-player {
        gap: 12px;
        padding: 13px;
    }

    .play-button {
        width: 68px;
        height: 68px;
        font-size: 1.8rem;
    }

    .volume-bar {
        width: 80px;
    }

    .current-track h3 {
        font-size: 1.35rem;
    }


    /* FAQ */

    .faq-item summary {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 15px;
    }


    /* SOCIAL LINKS */

    .social-links {
        margin-top: 14px;
        gap: 8px;
    }

        .social-links span {
            width: 100%;
            text-align: center;
            font-size: 0.85rem;
        }

        .social-links a {
            padding: 6px 12px;
            font-size: 0.85rem;
        }
}


/* ========================================
   SMALL PHONES
======================================== */

@media screen and (max-width: 420px) {

    header {
        padding: 20px 10px 15px;
    }

    .logo {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 0.82rem;
    }

    nav a {
        font-size: 0.82rem;
        padding: 6px 8px;
    }

    .hero h2 {
        font-size: 1.55rem;
    }

    .hero p {
        font-size: 0.95rem;
    }


    /* SMALL HOME CARDS */

    .home-grid {
        max-width: 270px;
        gap: 9px;
    }

    .home-card {
        min-height: 115px;
        padding: 8px 10px;
    }

        .home-card h2 {
            font-size: 1.1rem;
            margin-bottom: 2px;
        }

        .home-card p {
            font-size: 0.76rem;
            line-height: 1.25;
            margin-bottom: 7px;
        }


    .custom-audio-player {
        gap: 10px;
        padding: 10px;
    }

    .play-button {
        width: 62px;
        height: 62px;
        font-size: 1.6rem;
    }

    .volume-bar {
        width: 65px;
    }


    /* VIDEO */

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

    .video-grid {
        gap: 15px;
    }

    .video-info {
        padding: 12px 13px 15px;
    }


    /* FOOTER */

    footer {
        padding: 18px 12px;
        font-size: 0.85rem;
    }
}
.track-label {
    animation: trackPulse 1.5s ease-in-out infinite;
}

@keyframes trackPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 6px #ff6600;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.8;
        text-shadow: 0 0 10px #ff6600, 0 0 20px #ff6600, 0 0 30px #ff9900;
    }
}
/* ========================================
   DONATE PAGE
======================================== */

.donate-hero {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 35px 25px;
    text-align: center;
    background-color: #111111;
    border: 1px solid #333333;
    border-top: 4px solid #ff7a00;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.2);
}

    .donate-hero h2 {
        color: #ff7a00;
        font-size: 2rem;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 0 6px #ff7a00, 0 0 15px rgba(255, 122, 0, 0.6);
    }

    .donate-hero p {
        color: #cccccc;
        max-width: 650px;
        margin: 8px auto;
    }


/* DONATION GRID */

.donate-section {
    margin-bottom: 45px;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}


/* DONATION CARDS */

.donate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background-color: #111111;
    border: 1px solid #333333;
    border-top: 4px solid #ff7a00;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

    .donate-card:hover {
        transform: translateY(-4px);
        border-color: #ff7a00;
        box-shadow: 0 0 10px rgba(255, 122, 0, 0.4), 0 0 20px rgba(255, 122, 0, 0.2);
    }

    .donate-card h2 {
        color: #ff7a00;
        margin-bottom: 8px;
        font-size: 1.45rem;
    }

    .donate-card p {
        color: #bbbbbb;
    }


/* PAYMENT ICON */

.donate-icon {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background-color: #ff7a00;
    color: #000000;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 0 8px #ff7a00, 0 0 18px rgba(255, 122, 0, 0.45);
}


/* PAYMENT INFO */

.donate-info {
    margin: 16px 0;
    padding: 8px 12px;
    color: #ffffff !important;
    background-color: #080808;
    border: 1px solid #ff7a00;
    border-radius: 5px;
    font-weight: bold;
    word-break: break-word;
}

.donate-note {
    margin-top: 8px;
    color: #888888 !important;
    font-size: 0.82rem;
}


/* DONATE BUTTON */

.donate-button {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    background-color: #ff7a00;
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    border: 2px solid #ff7a00;
    border-radius: 6px;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

    .donate-button:hover {
        background-color: #000000;
        color: #ff7a00;
        transform: translateY(-2px);
        box-shadow: 0 0 8px #ff7a00, 0 0 18px rgba(255, 122, 0, 0.6);
    }


/* THANK YOU */

.donate-thanks {
    max-width: 700px;
    margin: 0 auto;
    padding: 25px;
    text-align: center;
}

    .donate-thanks h2 {
        color: #ff7a00;
        margin-bottom: 8px;
    }

    .donate-thanks p {
        color: #aaaaaa;
    }


/* TABLETS */

@media screen and (max-width: 850px) {

    .donate-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}


/* MOBILE */

@media screen and (max-width: 650px) {

    .donate-hero {
        padding: 25px 18px;
        margin-bottom: 30px;
    }

        .donate-hero h2 {
            font-size: 1.55rem;
        }

    .donate-card {
        padding: 22px 15px;
    }

    .donate-icon {
        width: 58px;
        height: 58px;
        font-size: 1.7rem;
    }
}