/*!
 * ==========================================================
 * SingThyGlory Studio
 * Frontend Stylesheet v2.0
 * Homepage UI Transformation
 * Bootstrap 5.3 Compatible
 * ==========================================================
 */

/* ==========================================================
   01. DESIGN SYSTEM
   ========================================================== */

:root{

    /* Brand Colors */
    --primary:#0B2D5D;
    --primary-dark:#081B3C;
    --accent:#F4B400;

    /* Neutral Colors */
    --white:#FFFFFF;
    --background:#F8FAFC;
    --surface:#FFFFFF;

    /* Text */
    --text:#1F2937;
    --text-light:#6B7280;

    /* Borders */
    --border:#E5E7EB;

    /* Border Radius */
    --radius-sm:12px;
    --radius:18px;
    --radius-lg:24px;
    --radius-pill:999px;

    /* Shadows */
    --shadow-sm:0 6px 18px rgba(0,0,0,.06);
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 50px rgba(0,0,0,.15);

    /* Transition */
    --transition:.35s ease;

    /* Container */
    --container-width:1200px;

    /* Section Padding */
    --section-padding:90px;

}

/* ==========================================================
   02. RESET
   ========================================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    margin:0;
    padding:0;

    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    font-size:16px;
    line-height:1.7;

    color:var(--text);
    background:var(--background);

    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

section{

    position:relative;
    padding:var(--section-padding) 0;

}

.container{

    max-width:var(--container-width);

}

/* ==========================================================
   03. TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0 0 20px;

    color:var(--primary);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:clamp(2.8rem,5vw,4.5rem);

}

h2{

    font-size:clamp(2rem,4vw,3rem);

}

h3{

    font-size:1.75rem;

}

p{

    margin-bottom:20px;

    color:var(--text-light);

}

/* ==========================================================
   04. UTILITIES
   ========================================================== */

.text-primary{
    color:var(--primary)!important;
}

.text-gold{
    color:var(--accent)!important;
}

.bg-primary-custom{
    background:var(--primary);
}

.bg-light-custom{
    background:var(--background);
}

.shadow-custom{
    box-shadow:var(--shadow);
}

.rounded-custom{
    border-radius:var(--radius);
}

/* ==========================================================
   05. BUTTONS
   ========================================================== */

.btn{

    transition:var(--transition);

    border-radius:var(--radius-pill);

    font-weight:600;

    padding:14px 28px;

}

.btn:hover{

    transform:translateY(-3px);

}

.btn-warning{

    background:var(--accent);

    border:none;

    color:#222;

    box-shadow:var(--shadow);

}

.btn-warning:hover{

    background:#e1a600;

    color:#222;

}

.btn-outline-light{

    border:2px solid #fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);

}

/* ==========================================================
   06. CARDS
   ========================================================== */

.card-custom{

    background:var(--surface);

    border:none;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card-custom:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}
/* ==========================================================
   07. NAVIGATION
   ========================================================== */

.custom-navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:1050;

    background:transparent;

    transition:all .35s ease;

    padding:20px 0;

}

.custom-navbar.scrolled{

    background:#ffffff;

    box-shadow:var(--shadow);

    padding:12px 0;

}

.navbar-brand img{

    height:70px;

    transition:var(--transition);

}

.custom-navbar.scrolled .navbar-brand img{

    height:60px;

}

.navbar-nav{

    gap:10px;

}

.navbar-nav .nav-link{

    color:#ffffff;

    font-weight:600;

    position:relative;

    padding:10px 18px;

    transition:var(--transition);

}

.custom-navbar.scrolled .nav-link{

    color:var(--primary);

}

.navbar-nav .nav-link:hover{

    color:var(--accent);

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:4px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:calc(100% - 36px);

}

.btn-live{

    font-weight:700;

    border-radius:999px;

    box-shadow:var(--shadow);

}

.navbar-toggler{

    border:none;

    box-shadow:none !important;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/* ==========================================================
   08. HERO
   ========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(8,27,60,.82),
        rgba(11,45,93,.82)
    ),
    url("../images/hero/hero-bg.jpg");

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(11,45,93,.15),
        rgba(8,27,60,.45)
    );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    color:#ffffff;

    font-weight:600;

    margin-bottom:20px;

    backdrop-filter:blur(10px);

}

.hero h1{

    color:#ffffff;

    font-size:clamp(3rem,5vw,4.8rem);

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    color:rgba(255,255,255,.88);

    font-size:1.15rem;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

    margin-top:35px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:45px;

}

.hero-features span{

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.12);

    color:#ffffff;

    backdrop-filter:blur(8px);

}

.hero-image{

    max-width:500px;

    margin:auto;

    animation:heroFloat 6s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.35));

}

/* ==========================================================
   09. ANIMATIONS
   ========================================================== */

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
   20. RESPONSIVE
   ========================================================== */

@media (max-width:992px){

    .hero{

        min-height:auto;

        padding:150px 0 80px;

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        justify-content:center;

    }

    .hero-image{

        margin-top:60px;

        max-width:380px;

    }

}

@media (max-width:576px){

    section{

        padding:70px 0;

    }

    .hero h1{

        font-size:2.5rem;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn{

        width:100%;

    }

}
/* ==========================================================
   09. LIVE PLAYER
   ========================================================== */

.player-section{

    background:var(--background);

}

.player-card{

    padding:45px;

    border-radius:var(--radius-lg);

    background:var(--surface);

    box-shadow:var(--shadow);

    overflow:hidden;

}

.player-art{

    width:220px;

    height:220px;

    object-fit:cover;

    margin:auto;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}

.player-live{

    display:inline-block;

    background:#dc3545;

    color:#fff;

    padding:8px 18px;

    border-radius:999px;

    font-size:.9rem;

    font-weight:700;

    margin-bottom:18px;

    letter-spacing:.5px;

}

.player-title{

    margin-bottom:15px;

}

.player-description{

    font-size:1.05rem;

    margin-bottom:25px;

}

.player-buttons{

    margin-top:25px;

}

.player-status{

    background:var(--background);

    padding:30px;

    border-radius:var(--radius);

    text-align:center;

}

.status-circle{

    width:16px;

    height:16px;

    border-radius:50%;

    background:#28a745;

    margin:0 auto 18px;

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        transform:scale(1);

        opacity:1;

    }

    50%{

        transform:scale(1.35);

        opacity:.55;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}

/* ==========================================================
   PLAYER RESPONSIVE
   ========================================================== */

@media (max-width:992px){

    .player-card{

        padding:30px;

        text-align:center;

    }

    .player-art{

        width:180px;

        height:180px;

        margin-bottom:25px;

    }

    .player-status{

        margin-top:30px;

    }

}

@media (max-width:576px){

    .player-card{

        padding:22px;

    }

    .player-art{

        width:150px;

        height:150px;

    }

}
/* ==========================================================
   09A. PREMIUM LIVE PLAYER
   ========================================================== */

.premium-player{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    overflow:hidden;
}

.album-cover{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid rgba(255,255,255,.2);
    box-shadow:
        0 0 25px rgba(255,193,7,.35),
        0 12px 35px rgba(0,0,0,.25);
    transition:.4s ease;
}
.album-cover.playing{
    animation:spinAlbum 18s linear infinite;
}

@keyframes spinAlbum{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
.live-status{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 18px;
    border-radius:999px;
    background:#d90429;
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.live-dot{
    width:10px;
    height:10px;
    background:#fff;
    border-radius:50%;
    animation:livePulse 1.5s infinite;
}

@keyframes livePulse{
    0%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.8);opacity:.4;}
    100%{transform:scale(1);opacity:1;}
}

#song-title{
    font-size:2rem;
    font-weight:700;
    margin-bottom:10px;
}

#song-artist{
    font-size:1.1rem;
    color:#666;
    margin-bottom:12px;
}

#listeners{
    font-weight:600;
    color:var(--primary);
}

.custom-player{
    margin-top:20px;
}

.play-btn{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    transition:.3s;
}

.play-btn:hover{
    transform:scale(1.08);
}

#volumeControl{
    width:100%;
    margin-top:18px;
}
.equalizer{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:8px;          /* Space between bars */
    width:180px;      /* Increase width (try 180–220px) */
    height:45px;
    margin:25px auto 0;
}

.equalizer span{
    width:8px;        /* Thicker bars */
    height:12px;
    background:var(--primary);
    border-radius:8px 8px 0 0;
    transform-origin:bottom;
    animation:equalizer 1s ease-in-out infinite;
}

.equalizer span:nth-child(1){animation-delay:0s;}
.equalizer span:nth-child(2){animation-delay:.1s;}
.equalizer span:nth-child(3){animation-delay:.2s;}
.equalizer span:nth-child(4){animation-delay:.3s;}
.equalizer span:nth-child(5){animation-delay:.4s;}
.equalizer span:nth-child(6){animation-delay:.5s;}
.equalizer span:nth-child(7){animation-delay:.6s;}
.equalizer span:nth-child(8){animation-delay:.7s;}
.equalizer span:nth-child(9){animation-delay:.8s;}

@keyframes equalizer{
    0%   {height:10px;}
    20%  {height:22px;}
    40%  {height:36px;}
    60%  {height:44px;}
    80%  {height:28px;}
    100% {height:10px;}
}

@media(max-width:768px){
    .premium-player{
        padding:24px;
        text-align:center;
    }

    .album-cover{
        width:170px;
        height:170px;
        margin-bottom:25px;
    }

    #song-title{
        font-size:1.6rem;
    }
}

/* ==========================================================
   10. MISSION
   ========================================================== */

.mission-section{

    background:#ffffff;

}

.mission-logo{

    max-width:340px;

    margin:auto;

    transition:var(--transition);

}

.mission-logo:hover{

    transform:scale(1.04);

}

.mission-section h2{

    margin:18px 0 25px;

}

.mission-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:30px;

}

.mission-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 18px;

    background:var(--background);

    border-radius:var(--radius);

    box-shadow:var(--shadow-sm);

    font-weight:600;

    transition:var(--transition);

}

.mission-item:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

@media (max-width:768px){

    .mission-highlights{

        grid-template-columns:1fr;

    }

}
/* ==========================================================
   11. SUPPORT MINISTRY
   ========================================================== */

.support-ministry-section{

    background:var(--background);

}

.section-subtitle-text{

    max-width:700px;

    margin:15px auto;

    color:var(--text-light);

}

.section-description{

    max-width:760px;

    margin:25px auto 0;

    color:var(--text-light);

}

.support-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:35px 30px;

    height:100%;

}

.support-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:rgba(11,45,93,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.support-icon i{

    font-size:2.5rem;

    color:var(--primary);

}

.support-card h4{

    margin-bottom:18px;

}

.support-card p{

    flex-grow:1;

    margin-bottom:30px;

}

.support-card:hover{

    transform:translateY(-8px);

}

@media (max-width:768px){

    .support-card{

        padding:30px 20px;

    }

}
/* ==========================================================
   12. SUPPORTERS
   ========================================================== */

.supporters-section{

    background:#ffffff;

}

.supporter-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:35px 30px;

    height:100%;

}

.supporter-photo{

    width:130px;

    height:130px;

    object-fit:cover;

    border-radius:50%;

    margin-bottom:25px;

    border:5px solid rgba(11,45,93,.08);

    transition:var(--transition);

}

.supporter-card:hover .supporter-photo{

    transform:scale(1.05);

}

.supporter-placeholder{

    width:130px;

    height:130px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--background);

    margin-bottom:25px;

}

.supporter-placeholder i{

    font-size:3.5rem;

    color:var(--primary);

}

.supporter-country{

    color:var(--text-light);

    margin:10px 0 18px;

}

.supporter-country i{

    margin-right:6px;

    color:var(--accent);

}

.supporter-card p{

    margin-top:10px;

    margin-bottom:0;

}

@media (max-width:768px){

    .supporter-card{

        padding:30px 22px;

    }

}
/* ==========================================================
   13. FEATURES
   ========================================================== */

.features-section{

    background:var(--background);

}

.feature-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    padding:40px 30px;

    height:100%;

}

.feature-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:rgba(11,45,93,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2.5rem;

    margin-bottom:25px;

    transition:var(--transition);

}

.feature-card:hover .feature-icon{

    transform:rotate(8deg) scale(1.08);

    background:rgba(244,180,0,.15);

}

.feature-card h3{

    margin-bottom:18px;

    font-size:1.4rem;

}

.feature-card p{

    margin-bottom:0;

    color:var(--text-light);

}

@media (max-width:768px){

    .feature-card{

        padding:30px 22px;

    }

}
/* ==========================================================
   14. YOUTUBE
   ========================================================== */

.youtube-section{

    background:#ffffff;

}

.youtube-wrapper{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.youtube-slider{

    display:flex;

    gap:30px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    padding:10px 55px;

}

.youtube-slider::-webkit-scrollbar{

    display:none;

}

.youtube-slider .card{

    min-width:340px;

    border:none;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.youtube-slider .card:hover{

    transform:translateY(-8px);

}

.yt-arrow{

    position:absolute;

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:10;

    transition:var(--transition);

}

.yt-arrow:hover{

    background:var(--accent);

    color:#111;

}

.yt-arrow.left{

    left:0;

}

.yt-arrow.right{

    right:0;

}

@media (max-width:768px){

    .youtube-slider{

        padding:10px;

        gap:20px;

    }

    .youtube-slider .card{

        min-width:280px;

    }

    .yt-arrow{

        display:none;

    }

}
/* ==========================================================
   14.1 LATEST VIDEOS
   ========================================================== */

.video-date{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:999px;
    font-weight:600;
    color:#475569;
    margin-bottom:16px;
}
.watch-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:100%;
    height:56px;

    margin-top:18px;

    background:linear-gradient(135deg,#ff0033,#d90429);
    color:#fff;
    text-decoration:none;

    border-radius:16px;

    font-size:1rem;
    font-weight:700;

    box-shadow:0 12px 30px rgba(217,4,41,.35);

    transition:all .35s ease;
}

.watch-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    text-decoration:none;
    box-shadow:0 18px 40px rgba(217,4,41,.45);
}

.watch-btn i{
    font-size:22px;
}

.watch-btn span{
    letter-spacing:.3px;
}
/* ==========================================================
   15. LATEST RELEASES
   ========================================================== */

.releases-section{

    background:var(--background);

}

.release-card{

    overflow:hidden;

    padding:0;

    transition:var(--transition);

}

.release-card img{

    width:100%;

    aspect-ratio:1/1;

    object-fit:cover;

    transition:var(--transition);

}

.release-card:hover img{

    transform:scale(1.08);

}

.release-content{

    padding:24px;

    text-align:center;

}

.release-content h4{

    margin-bottom:14px;

    font-size:1.25rem;

}

.release-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(11,45,93,.08);

    color:var(--primary);

    font-weight:600;

    font-size:.9rem;

}

.release-card:hover{

    transform:translateY(-8px);

}

@media (max-width:768px){

    .release-content{

        padding:20px;

    }

}
/* ==========================================================
   16. BIBLE
   ========================================================== */

.bible-section{

    background:#ffffff;

}

.bible-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:60px 40px;

}

.verse-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    background:rgba(11,45,93,.08);

    display:flex;

    align-items:center;

    justify-content:center;

}

.verse-icon i{

    font-size:2.5rem;

    color:var(--primary);

}

.verse-text{

    font-size:1.7rem;

    line-height:1.8;

    font-style:italic;

    color:var(--primary);

    margin-bottom:25px;

}

.verse-reference{

    font-size:1.1rem;

    font-weight:700;

    color:var(--accent);

    margin-bottom:35px;

}

.verse-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

@media (max-width:768px){

    .bible-card{

        padding:35px 25px;

    }

    .verse-text{

        font-size:1.3rem;

    }

}
/* ==========================================================
   17. PRAYER
   ========================================================== */

.prayer-section{

    background:var(--background);

}

.prayer-card{

    max-width:900px;

    margin:auto;

    padding:45px;

}

.prayer-card .form-control{

    border-radius:14px;

    padding:15px 18px;

    border:1px solid #d9dee7;

    transition:var(--transition);

}

.prayer-card .form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(11,45,93,.12);

}

.prayer-card textarea{

    resize:vertical;

    min-height:180px;

}

#prayerMessage{

    font-weight:600;

}

@media (max-width:768px){

    .prayer-card{

        padding:30px 22px;

    }

}
/* ==========================================================
   18. FOOTER
   ========================================================== */

.footer{

    background:var(--primary);

    color:#ffffff;

    padding:80px 0 40px;

}

.footer-logo{

    width:90px;

    margin-bottom:25px;

}

.footer-title{

    color:#ffffff;

    margin-bottom:15px;

}

.footer-tagline{

    color:rgba(255,255,255,.85);

    max-width:650px;

    margin:0 auto 35px;

}

.footer-social-links{

    display:flex;

    justify-content:center;

    gap:18px;

    margin-bottom:35px;

}

.footer-social-links a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.12);

    color:#ffffff;

    font-size:1.4rem;

    transition:var(--transition);

}

.footer-social-links a:hover{

    background:var(--accent);

    color:#111111;

    transform:translateY(-5px);

}

.footer-divider{

    border-color:rgba(255,255,255,.15);

    margin:35px auto;

}

.footer-copyright{

    color:rgba(255,255,255,.75);

    font-size:.95rem;

}

@media (max-width:768px){

    .footer{

        padding:60px 0 30px;

    }

}
/*==================================================
  18. MISSION LOGO
==================================================*/

.mission-logo{
    position:relative;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* Rotating golden halo */

.mission-logo::before{
    content:"";
    position:absolute;

    width:108%;
    height:108%;

    border-radius:50%;

    border:3px solid rgba(255,193,7,.35);

    border-top-color:#FFD54F;
    border-right-color:#F9A825;
    border-bottom-color:rgba(255,193,7,.15);
    border-left-color:rgba(255,193,7,.15);

    animation:haloRotate 30s linear infinite;

    z-index:0;
}

/* Soft glow */

.mission-logo::after{
    content:"";
    position:absolute;

    width:110%;
    height:110%;

    border-radius:50%;

    background:radial-gradient(
        rgba(255,193,7,.18),
        transparent 70%
    );

    animation:haloGlow 3.5s ease-in-out infinite;

    z-index:0;
}

.mission-logo img{

    position:relative;

    width:100%;
    max-width:340px;

    border-radius:50%;

    z-index:2;

    animation:
        logoFloat 5s ease-in-out infinite,
        logoGlow 3.5s ease-in-out infinite;

    transition:transform .4s ease;
}

.mission-logo:hover img{

    transform:scale(1.03);

}
@keyframes haloRotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes haloGlow{

    0%,100%{

        opacity:.45;

        transform:scale(.98);

    }

    50%{

        opacity:.95;

        transform:scale(1.04);

    }

}

@keyframes logoFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

}

@keyframes logoGlow{

    0%,100%{

        filter:
            drop-shadow(0 0 10px rgba(255,193,7,.35))
            drop-shadow(0 0 20px rgba(255,193,7,.18));

    }

    50%{

        filter:
            drop-shadow(0 0 18px rgba(255,193,7,.70))
            drop-shadow(0 0 38px rgba(255,193,7,.35));

    }

}