/* =========================================================
   THUNDER-SHIN MAN™
   MODERN COMIC WEBSITE
   MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    --thunder-black: #050505;
    --thunder-dark: #0b0b0d;
    --thunder-dark-2: #111116;

    --thunder-gold: #ffc928;
    --thunder-gold-light: #ffe071;
    --thunder-gold-dark: #b88600;

    --thunder-red: #d71920;
    --thunder-red-dark: #8e0c12;

    --paper: #f0ece3;
    --paper-dark: #d8d0c1;

    --white: #ffffff;
    --muted: #a9a9ad;

    --border-dark: rgba(255,255,255,0.12);

    --shadow:
        0 20px 60px rgba(0,0,0,0.45);

    --shadow-heavy:
        0 30px 90px rgba(0,0,0,0.65);

    --transition:
        0.35s cubic-bezier(.2,.8,.2,1);
}


/* =========================================================
   GLOBAL RESET
   ========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    padding: 0;

    background: var(--thunder-black);

    color: var(--white);

    font-family:'Rajdhani',Arial,sans-serif; 

    overflow-x: hidden;
}


img {
    max-width: 100%;
}


a {
    text-decoration: none;
}


button {
    font-family: inherit;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {

    background: var(--thunder-gold);

    color: #000;
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.progress {

    position: fixed;

    top: 0;

    left: 0;

    width: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--thunder-red),
            var(--thunder-gold)
        );

    z-index: 9999;

    box-shadow:
        0 0 15px rgba(255,201,40,0.7);
}


/* =========================================================
   HERO WRAPPER
   ========================================================= */

.hero-wrapper {

    position: relative;

    min-height: 100vh;

    background: #050505;

    overflow: hidden;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

#mainNav {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 14px 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.92),
            rgba(0,0,0,0)
        );

    transition:
        background var(--transition),
        padding var(--transition),
        box-shadow var(--transition);
}


#mainNav.scrolled {

    position: fixed;

    background:
        rgba(5,5,5,0.96);

    backdrop-filter: blur(14px);

    padding: 8px 0;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.5);

    border-bottom:
        1px solid rgba(255,201,40,0.15);
}


/* =========================================================
   NAVBAR LOGO — LARGE & PROMINENT
   ========================================================= */

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 20;
}

.nav-logo {
    display: block;

    width: 290px;
    height: auto;

    max-height: 100px;

    object-fit: contain;

    /* Keeps the entire logo visible */
    object-position: center;

    transition:
        width 0.3s ease,
        transform 0.3s ease,
        filter 0.3s ease;

    filter:
        drop-shadow(0 3px 8px rgba(0, 0, 0, 0.8));
}


/* Logo hover */

.navbar-brand:hover .nav-logo {
    transform: scale(1.04);

    filter:
        drop-shadow(0 4px 12px rgba(255, 201, 40, 0.35));
}


/* =========================================================
   SCROLLED NAVBAR
   ========================================================= */

#mainNav.scrolled .nav-logo {
    width: 190px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .nav-logo {
        width: 200px;
        max-height: 85px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

    .nav-logo {
        width: 165px;
        max-height: 75px;
    }

    #mainNav.scrolled .nav-logo {
        width: 155px;
    }

}

/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    height: 900px;

    max-height: 1100px;

    overflow: hidden;

    display: flex;

    align-items: center;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 130%;

    object-fit: cover;

    object-position: center center;

    z-index: 0;

    transform:
        scale(1.015);

    filter:
        saturate(1.05)
        contrast(1.06);

    animation:
        heroZoom 12s ease-out forwards;
}


@keyframes heroZoom {

    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.015);
    }
}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.43) 42%,
            rgba(0,0,0,0.08) 72%,
            rgba(0,0,0,0.25) 100%
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,0.48) 0%,
            rgba(0,0,0,0.02) 35%,
            rgba(0,0,0,0.58) 100%
        );
}


/* =========================================================
   HERO BRAND / LOGO
   ========================================================= */

.hero-brand {

    position: absolute;

    top: 125px;

    left: 6%;

    z-index: 5;

    width: 190px;

    padding: 12px;

    background:
        rgba(0,0,0,0.28);

    border:
        1px solid rgba(255,201,40,0.18);

    backdrop-filter:
        blur(5px);

    transform:
        rotate(-2deg);

    transition:
        transform var(--transition),
        background var(--transition);
}


.hero-brand:hover {

    transform:
        rotate(0deg)
        scale(1.04);

    background:
        rgba(0,0,0,0.5);
}


.hero-brand img {

    display: block;

    width: 100%;

    height: auto;

    filter:
        drop-shadow(
            0 8px 20px rgba(0,0,0,0.7)
        );
}


/* =========================================================
   LIGHTNING LINE
   ========================================================= */

.lightning-line {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 4px;

    z-index: 4;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--thunder-gold),
            transparent
        );

    box-shadow:
        0 0 25px rgba(255,201,40,0.75);
}


/* =========================================================
   FLOATING SYMBOLS
   ========================================================= */

.floating-symbol {

    position: absolute;

    z-index: 2;

    color:
        rgba(255,201,40,0.16);

    font-size: 9rem;

    font-family:
        Arial,
        sans-serif;

    font-weight: 900;

    pointer-events: none;

    user-select: none;
}


.symbol-a {

    right: 8%;

    top: 26%;

    transform:
        rotate(12deg);

    animation:
        floatSymbol 5s ease-in-out infinite;
}


.symbol-b {

    left: 42%;

    bottom: 10%;

    font-size: 5rem;

    transform:
        rotate(-18deg);

    animation:
        floatSymbol 7s ease-in-out infinite reverse;
}


@keyframes floatSymbol {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(12deg);
    }

    50% {
        transform:
            translateY(-18px)
            rotate(18deg);
    }
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {

    position: relative;

    z-index: 5;

    width: 100%;

    padding-top: 90px;
}


.hero-content .row {

    min-height: 700px;

    align-items: center;
}


/* =========================================================
   HERO KICKER
   ========================================================= */

.hero-kicker {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size: 0.95rem;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.hero-kicker span {

    display: inline-block;

    width: 45px;

    height: 3px;

    background:
        var(--thunder-gold);

    box-shadow:
        0 0 10px rgba(255,201,40,0.7);
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-title {

    margin: 0;

    color:
        #ffffff;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(4.5rem, 8vw, 8.5rem);

    line-height:
        0.78;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

    text-shadow:

        4px 4px 0 #000,

        8px 8px 0 rgba(0,0,0,0.65),

        0 0 35px rgba(255,201,40,0.12);
}


.hero-title span {

    color:
        var(--thunder-gold);

    text-shadow:

        4px 4px 0 #000,

        0 0 30px rgba(255,201,40,0.35);
}


/* =========================================================
   HERO SUBTITLE
   ========================================================= */

.hero-sub {

    max-width: 620px;

    margin-top: 25px;

    color:
        rgba(255,255,255,0.88);

    font-family:
        'Rajdhani',
        sans-serif;

    font-size:
        clamp(1.15rem, 2vw, 1.55rem);

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {

    margin-top: 32px;
}


/* =========================================================
   COMIC BUTTON
   ========================================================= */

.btn-comic {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding:
        12px 25px;

    border:
        2px solid #000;

    border-radius: 0;

    font-family:
        'Oswald',
        sans-serif;

    font-size: 0.95rem;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    box-shadow:
        5px 5px 0 #000;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}


.btn-comic:hover {

    transform:
        translate(3px,3px);

    box-shadow:
        2px 2px 0 #000;
}


.btn-gold {

    background:
        var(--thunder-gold);

    color:
        #000;
}


.btn-gold:hover {

    background:
        var(--thunder-gold-light);

    color:
        #000;
}


.btn-dark {

    background:
        #080808;

    color:
        #ffffff;

    border-color:
        var(--thunder-gold);
}


.btn-dark:hover {

    background:
        var(--thunder-gold);

    color:
        #000;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.section {

    position: relative;

    padding:
        120px 0;
}


/* =========================================================
   DARK SECTION
   ========================================================= */

.section-dark {

    background:

        radial-gradient(
            circle at 20% 20%,
            rgba(255,201,40,0.055),
            transparent 32%
        ),

        #080809;
}


/* =========================================================
   SECTION KICKER
   ========================================================= */

.kicker {

    margin-bottom: 14px;

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.section-title {

    margin-bottom: 35px;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(3.5rem, 7vw, 6.5rem);

    line-height:
        0.88;

    letter-spacing: 1px;
}


.section-title.light {

    color:
        #ffffff;

    text-shadow:
        4px 4px 0 #000;
}


.section-title.dark {

    color:
        #111;

    text-shadow:
        2px 2px 0 rgba(0,0,0,0.08);
}


/* =========================================================
   STORY FEATURE
   ========================================================= */

.feature-box {

    max-width: 1050px;

    margin:
        0 auto;

    padding:
        65px 70px;

    border:
        1px solid rgba(255,201,40,0.16);

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    box-shadow:
        var(--shadow);

    position: relative;

    overflow: hidden;
}


.feature-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 5px;

    height: 100%;

    background:
        var(--thunder-gold);
}


.feature-box::after {

    content: "ϟ";

    position: absolute;

    right: 30px;

    top: 20px;

    color:
        rgba(255,201,40,0.06);

    font-size: 15rem;

    line-height: 1;
}


/* =========================================================
   LEAD COPY
   ========================================================= */

.lead-copy {

    position: relative;

    z-index: 2;

    max-width: 900px;
}


.lead-copy p {

    margin-bottom: 25px;

    color:
        rgba(255,255,255,0.78);

    font-size:
        1.12rem;

    line-height:
        1.8;
}


/* =========================================================
   QUOTE
   ========================================================= */

.quote {

    margin:
        40px 0;

    padding:
        28px 30px;

    border-left:
        5px solid var(--thunder-gold);

    background:
        rgba(255,201,40,0.045);
}


.quote-text {

    color:
        #ffffff;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(2rem, 4vw, 3.5rem);

    line-height:
        1;

    letter-spacing:
        1px;
}


.quote-text span {

    color:
        var(--thunder-gold);
}


/* =========================================================
   POWER SECTION
   ========================================================= */

.power-section {

    position: relative;

    padding:
        120px 0;

    background:
        #0d0d10;

    overflow: hidden;
}


.power-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    opacity: 0.5;

    pointer-events: none;
}


.power-header {

    position: relative;

    max-width: 760px;

    margin:
        0 auto 60px;
}


.power-title {

    margin: 0 0 25px;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(4rem, 8vw, 7rem);

    line-height:
        0.85;

    color:
        #fff;
}


.power-title span {

    color:
        var(--thunder-gold);
}


.power-header p {

    color:
        rgba(255,255,255,0.65);

    font-size:
        1.1rem;

    line-height:
        1.7;
}


/* =========================================================
   POWER CARDS
   ========================================================= */

.power-card {

    position: relative;

    height: 100%;

    padding:
        35px 30px 40px;

    background:
        linear-gradient(
            145deg,
            #151519,
            #09090b
        );

    border:
        1px solid rgba(255,255,255,0.1);

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.power-card::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 3px;

    background:
        var(--thunder-gold);

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform var(--transition);
}


.power-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,201,40,0.4);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.5);
}


.power-card:hover::before {

    transform:
        scaleX(1);
}


.power-icon {

    margin-bottom: 15px;

    font-size:
        3.5rem;

    line-height: 1;

    filter:
        drop-shadow(
            0 0 10px rgba(255,201,40,0.35)
        );
}


.power-number {

    display: block;

    margin-bottom: 10px;

    color:
        rgba(255,201,40,0.55);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.75rem;

    font-weight: 700;

    letter-spacing:
        3px;
}


.power-card h3 {

    margin:
        0 0 15px;

    color:
        #ffffff;

    font-family:
        'Bangers',
        cursive;

    font-size:
        2.7rem;

    letter-spacing:
        1px;
}


.power-card p {

    margin: 0;

    color:
        rgba(255,255,255,0.62);

    font-size:
        1rem;

    line-height:
        1.65;
}


/* =========================================================
   EAGLE SECTION
   ========================================================= */

.eagle-section {

    position: relative;

    min-height:
        760px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        #050505;
}


.eagle-image {

    position: absolute;

    inset: 0;

    z-index: 0;
}


.eagle-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    filter:
        saturate(0.95)
        contrast(1.1);
}


.eagle-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,0.9) 0%,
            rgba(0,0,0,0.72) 35%,
            rgba(0,0,0,0.18) 75%,
            rgba(0,0,0,0.4) 100%
        );
}


.eagle-content {

    position: relative;

    z-index: 2;

    padding:
        100px 0;
}


.eagle-content h2 {

    margin:
        0 0 25px;

    color:
        #ffffff;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(4rem, 8vw, 7.5rem);

    line-height:
        0.78;

    text-shadow:
        4px 4px 0 #000;
}


.eagle-content h2 span {

    color:
        var(--thunder-gold);
}


.eagle-lead {

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        1.5rem;

    font-weight: 600;

    letter-spacing:
        2px;

    text-transform:
        uppercase;
}


.eagle-content p {

    max-width:
        600px;

    color:
        rgba(255,255,255,0.75);

    font-size:
        1.1rem;

    line-height:
        1.75;
}


.eagle-values {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        30px;
}


.eagle-values span {

    padding:
        8px 16px;

    border:
        1px solid rgba(255,201,40,0.45);

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.78rem;

    font-weight:
        700;

    letter-spacing:
        2px;
}


/* =========================================================
   PAPER / MISSION SECTION
   ========================================================= */

.section-paper {

    background:
        var(--paper);

    color:
        #111;
}


.paper-kicker {

    color:
        #9c7100;
}


.paper-copy {

    color:
        #333;

    line-height:
        1.7;
}


.section-paper .border {

    background:
        rgba(255,255,255,0.45);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.section-paper .border:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.15) !important;
}


/* =========================================================
   WORLD SECTION
   ========================================================= */

.world-section {

    position: relative;

    padding:
        120px 0;

    background:
        #08080a;

    overflow: hidden;
}


.world-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 50% 0%,
            rgba(255,201,40,0.08),
            transparent 40%
        );
}


.world-header {

    position: relative;

    max-width:
        800px;

    margin:
        0 auto 65px;
}


.world-header h2 {

    margin:
        0 0 20px;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(4rem, 8vw, 7rem);

    line-height:
        0.82;
}


.world-header h2 span {

    color:
        var(--thunder-gold);
}


.world-header p {

    color:
        rgba(255,255,255,0.6);

    font-size:
        1.1rem;

    line-height:
        1.7;
}


/* =========================================================
   WORLD CARDS
   ========================================================= */

.world-card {

    position: relative;

    height: 100%;

    padding:
        50px 35px;

    background:
        linear-gradient(
            145deg,
            #151518,
            #08080a
        );

    border:
        1px solid rgba(255,255,255,0.1);

    overflow: hidden;

    transition:
        transform var(--transition),
        border-color var(--transition);
}


.world-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(255,201,40,0.4);
}


.world-card-number {

    position: absolute;

    right: 20px;

    top: 10px;

    color:
        rgba(255,201,40,0.07);

    font-family:
        'Bangers',
        cursive;

    font-size:
        8rem;

    line-height:
        1;
}


.world-card-icon {

    position: relative;

    margin-bottom:
        15px;

    font-size:
        3.5rem;
}


.world-card h3 {

    position: relative;

    margin-bottom:
        15px;

    font-family:
        'Bangers',
        cursive;

    font-size:
        3rem;

    color:
        #fff;
}


.world-card p {

    position: relative;

    color:
        rgba(255,255,255,0.62);

    line-height:
        1.7;
}


.coming-soon {

    display:
        inline-block;

    margin-top:
        15px;

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.75rem;

    font-weight:
        700;

    letter-spacing:
        2px;
}


.world-coming {

    position: relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        20px;

    margin-top:
        60px;

    color:
        rgba(255,255,255,0.38);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.75rem;

    font-weight:
        700;

    letter-spacing:
        3px;

    text-align:
        center;
}


.world-coming span {

    width:
        80px;

    height:
        1px;

    background:
        rgba(255,201,40,0.35);
}


/* =========================================================
   MODERN GALLERY
   ========================================================= */

.thunder-gallery {

    position: relative;

    padding:
        120px 0;

    background:
        #050505;

    overflow: hidden;
}


.gallery-header {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        50px;

    margin-bottom:
        55px;
}


.gallery-title {

    margin:
        0;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(4rem, 8vw, 7rem);

    line-height:
        0.78;

    color:
        #fff;
}


.gallery-title span {

    color:
        var(--thunder-gold);
}


.gallery-intro {

    max-width:
        430px;

    margin:
        0;

    color:
        rgba(255,255,255,0.58);

    font-size:
        1.05rem;

    line-height:
        1.7;
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.modern-gallery {

    display:
        grid;

    grid-template-columns:
        1.35fr 0.65fr;

    grid-template-rows:
        430px 300px;

    gap:
        18px;
}


/* =========================================================
   GALLERY CARD
   ========================================================= */

.gallery-card {

    position:
        relative;

    min-height:
        300px;

    overflow:
        hidden;

    background:
        #111;

    border:
        1px solid rgba(255,255,255,0.1);

    cursor:
        pointer;

    transition:
        border-color var(--transition),
        transform var(--transition);
}


.gallery-card:hover {

    border-color:
        rgba(255,201,40,0.55);

    transform:
        translateY(-5px);
}


.gallery-card img {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1);
}


.gallery-card:hover img {

    transform:
        scale(1.07);
}


/* =========================================================
   IMAGE POSITIONS
   ========================================================= */

.gallery-featured img {

    object-position:
        center center;
}


.gallery-master img {

    object-position:
        center top;
}


.gallery-wide img {

    object-position:
        center center;
}


/* =========================================================
   GALLERY GRADIENT
   ========================================================= */

.gallery-gradient {

    position:
        absolute;

    inset:
        0;

    background:

        linear-gradient(
            180deg,
            rgba(0,0,0,0.05) 20%,
            rgba(0,0,0,0.85) 100%
        );
}


/* =========================================================
   GALLERY NUMBER
   ========================================================= */

.gallery-number {

    position:
        absolute;

    top:
        20px;

    right:
        22px;

    color:
        rgba(255,255,255,0.7);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.85rem;

    font-weight:
        700;

    letter-spacing:
        2px;
}


/* =========================================================
   GALLERY CONTENT
   ========================================================= */

.gallery-content {

    position:
        absolute;

    left:
        28px;

    right:
        28px;

    bottom:
        25px;

    z-index:
        2;
}


.gallery-content span {

    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.72rem;

    font-weight:
        700;

    letter-spacing:
        2px;
}


.gallery-content h3 {

    margin:
        0 0 7px;

    color:
        #fff;

    font-family:
        'Bangers',
        cursive;

    font-size:
        2.8rem;

    line-height:
        0.9;
}


.gallery-content p {

    max-width:
        430px;

    margin:
        0;

    color:
        rgba(255,255,255,0.7);

    font-size:
        0.95rem;
}


/* =========================================================
   GALLERY GRID PLACEMENT
   ========================================================= */

.gallery-featured {

    grid-column:
        1;

    grid-row:
        1 / 3;
}


.gallery-master {

    grid-column:
        2;

    grid-row:
        1;
}


.gallery-wide {

    grid-column:
        2;

    grid-row:
        2;
}


/* =========================================================
   GALLERY STATEMENT
   ========================================================= */

.gallery-statement {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        25px;

    margin-top:
        55px;

    text-align:
        center;
}


.gallery-statement p {

    margin:
        0;

    color:
        rgba(255,255,255,0.55);

    font-size:
        0.95rem;

    line-height:
        1.6;
}


.gallery-statement strong {

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    letter-spacing:
        2px;
}


.statement-line {

    width:
        100px;

    height:
        1px;

    background:
        rgba(255,201,40,0.4);
}


/* =========================================================
   NEW EDITION
   ========================================================= */

.edition-gallery {

    position:
        relative;

    padding:
        130px 0;

    background:
        #09090b;

    overflow:
        hidden;
}


.edition-gallery-bg {

    position:
        absolute;

    inset:
        0;

    background:

        radial-gradient(
            circle at center,
            rgba(255,201,40,0.08),
            transparent 40%
        ),

        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.012) 0,
            rgba(255,255,255,0.012) 1px,
            transparent 1px,
            transparent 8px
        );

    pointer-events:
        none;
}


/* =========================================================
   EDITION HEADING
   ========================================================= */

.edition-heading {

    position:
        relative;

    max-width:
        800px;

    margin:
        0 auto 60px;
}


.edition-badge {

    display:
        inline-block;

    padding:
        8px 16px;

    margin-bottom:
        20px;

    border:
        1px solid rgba(255,201,40,0.5);

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.75rem;

    font-weight:
        700;

    letter-spacing:
        3px;

    text-transform:
        uppercase;
}


.edition-title {

    margin:
        0;

    color:
        #fff;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(4rem, 9vw, 8rem);

    line-height:
        0.8;

    text-shadow:
        5px 5px 0 #000;
}


.edition-title span {

    color:
        var(--thunder-gold);
}


.edition-intro {

    max-width:
        650px;

    margin:
        25px auto 0;

    color:
        rgba(255,255,255,0.62);

    font-size:
        1.1rem;

    line-height:
        1.7;
}


/* =========================================================
   COMIC VIEWER
   ========================================================= */

.comic-viewer {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        25px;

    max-width:
        1100px;

    margin:
        0 auto;
}


/* =========================================================
   COMIC PAGE
   ========================================================= */

.comic-page-wrap {

    width:
        min(680px, 80vw);

    text-align:
        center;
}


.comic-page {

    position:
        relative;

    width:
        100%;

    background:
        #111;

    border:
        8px solid #171717;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,201,40,0.12);

    overflow:
        hidden;
}


.comic-page img {

    display:
        block;

    width:
        100%;

    height:
        auto;

    max-height:
        75vh;

    object-fit:
        contain;

    background:
        #fff;
}


.comic-page-overlay {

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    box-shadow:
        inset 0 0 70px rgba(0,0,0,0.18);
}


.page-stamp {

    position:
        absolute;

    left:
        15px;

    bottom:
        15px;

    padding:
        5px 9px;

    background:
        rgba(0,0,0,0.7);

    color:
        var(--thunder-gold);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.65rem;

    font-weight:
        700;

    letter-spacing:
        1px;
}


/* =========================================================
   PAGE NUMBER
   ========================================================= */

.comic-page-info {

    margin-top:
        18px;

    color:
        rgba(255,255,255,0.6);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.9rem;

    font-weight:
        700;

    letter-spacing:
        3px;
}


.comic-page-info #pageNumber {

    color:
        var(--thunder-gold);

    font-size:
        1.3rem;
}


.page-divider {

    margin:
        0 7px;

    opacity:
        0.4;
}


/* =========================================================
   COMIC ARROWS
   ========================================================= */

.comic-arrow {

    flex:
        0 0 55px;

    width:
        55px;

    height:
        55px;

    border:
        1px solid rgba(255,201,40,0.5);

    border-radius:
        0;

    background:
        rgba(0,0,0,0.7);

    color:
        var(--thunder-gold);

    font-size:
        1.6rem;

    cursor:
        pointer;

    transition:
        all var(--transition);
}


.comic-arrow:hover {

    background:
        var(--thunder-gold);

    color:
        #000;

    transform:
        scale(1.08);
}


/* =========================================================
   THUMBNAILS
   ========================================================= */

.comic-thumbnails {

    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        center;

    gap:
        12px;

    max-width:
        950px;

    margin:
        35px auto 0;
}


.comic-thumb {

    position:
        relative;

    width:
        90px;

    height:
        115px;

    padding:
        0;

    border:
        2px solid rgba(255,255,255,0.15);

    background:
        #111;

    overflow:
        hidden;

    cursor:
        pointer;

    transition:
        transform var(--transition),
        border-color var(--transition),
        opacity var(--transition);
}


.comic-thumb img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.comic-thumb:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255,201,40,0.6);
}


.comic-thumb.active {

    border:
        3px solid var(--thunder-gold);

    box-shadow:
        0 0 20px rgba(255,201,40,0.25);

    transform:
        translateY(-5px);
}


/* =========================================================
   EDITION BOTTOM
   ========================================================= */

.edition-bottom {

    margin-top:
        60px;
}


.edition-bottom p {

    color:
        rgba(255,255,255,0.58);

    font-size:
        1.05rem;

    line-height:
        1.7;
}


.edition-bottom strong {

    color:
        var(--thunder-gold);
}


/* =========================================================
   ENERGY
   ========================================================= */

.energy {

    width:
        120px;

    height:
        3px;

    margin:
        0 auto 25px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--thunder-gold),
            transparent
        );

    box-shadow:
        0 0 18px rgba(255,201,40,0.6);
}


/* =========================================================
   FINAL MESSAGE
   ========================================================= */

.message-section {

    position:
        relative;

    min-height:
        650px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        110px 0;

    background:
        #050505;

    overflow:
        hidden;
}


.message-background {

    position:
        absolute;

    inset:
        0;

    background:

        radial-gradient(
            circle at center,
            rgba(255,201,40,0.12),
            transparent 42%
        );
}


.message-content {

    position:
        relative;

    z-index:
        2;

    max-width:
        800px;

    margin:
        0 auto;
}


.message-content h2 {

    margin:
        0 0 30px;

    color:
        #fff;

    font-family:
        'Bangers',
        cursive;

    font-size:
        clamp(5rem, 12vw, 10rem);

    line-height:
        0.72;

    text-shadow:
        5px 5px 0 #000;
}


.message-content h2 span {

    color:
        var(--thunder-gold);
}


.message-content p {

    max-width:
        650px;

    margin:
        0 auto 20px;

    color:
        rgba(255,255,255,0.63);

    font-size:
        1.1rem;

    line-height:
        1.75;
}


.message-words {

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        35px;

    margin:
        40px 0;
}


.message-words span {

    color:
        var(--thunder-gold);

    font-family:
        'Bangers',
        cursive;

    font-size:
        2rem;

    letter-spacing:
        2px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {

    position:
        relative;

    padding:
        75px 0 35px;

    background:
        #020202;

    border-top:
        1px solid rgba(255,201,40,0.15);

    text-align:
        center;
}


/* =========================================================
   FOOTER LOGO
   ========================================================= */

.footer-logo {

    width:
        170px;

    margin:
        0 auto 25px;
}


.footer-logo img {

    display:
        block;

    width:
        100%;

    height:
        auto;

    filter:
        drop-shadow(
            0 0 15px rgba(255,201,40,0.18)
        );
}


/* =========================================================
   FOOTER TAGLINE
   ========================================================= */

.footer-tagline {

    color:
        rgba(255,255,255,0.55);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.8rem;

    line-height:
        1.8;

    letter-spacing:
        2px;
}


.footer-tagline strong {

    color:
        var(--thunder-gold);
}


/* =========================================================
   FOOTER NAV
   ========================================================= */

.footer-nav {

    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        center;

    gap:
        10px 25px;

    margin:
        35px 0;
}


.footer-nav a {

    color:
        rgba(255,255,255,0.5);

    font-family:
        'Oswald',
        sans-serif;

    font-size:
        0.75rem;

    font-weight:
        600;

    letter-spacing:
        1.5px;

    text-transform:
        uppercase;

    transition:
        color var(--transition);
}


.footer-nav a:hover {

    color:
        var(--thunder-gold);
}


/* =========================================================
   FOOTER COPYRIGHT
   ========================================================= */

.footer-copy {

    max-width:
        800px;

    margin:
        0 auto;

    padding-top:
        25px;

    border-top:
        1px solid rgba(255,255,255,0.07);

    color:
        rgba(255,255,255,0.35);

    font-size:
        0.75rem;

    line-height:
        1.7;
}


.footer-copy strong {

    color:
        rgba(255,201,40,0.7);
}


/* =========================================================
   REVEAL ANIMATION
   Used by main.js
   ========================================================= */

.reveal {

    opacity:
        0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.reveal.shown {

    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================================
   COMIC PAGE TRANSITION
   ========================================================= */

.comic-page.page-changing {

    animation:
        comicPageChange 0.35s ease;
}


@keyframes comicPageChange {

    0% {
        opacity: 0.4;
        transform: scale(0.985);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */


/* ---------------------------------------------------------
   LARGE TABLETS
   --------------------------------------------------------- */

@media (max-width: 1199px) {


    .hero {

        height:
            820px;
    }


    .hero-brand {

        left:
            4%;

        width:
            160px;
    }


    .hero-content .row {

        min-height:
            650px;
    }


    .modern-gallery {

        grid-template-rows:
            400px 280px;
    }

}


/* ---------------------------------------------------------
   TABLETS
   --------------------------------------------------------- */

@media (max-width: 991px) {


    #mainNav {

        padding:
            10px 0;

        background:
            rgba(0,0,0,0.82);
    }


    #mainNav .navbar-collapse {

        margin-top:
            12px;

        padding:
            10px;

        background:
            rgba(5,5,5,0.97);

        border:
            1px solid rgba(255,201,40,0.15);
    }


    #mainNav .nav-link {

        margin:
            2px 0;

        padding:
            12px;
    }


    .hero {

        min-height:
            850px;

        height:
            850px;
    }


    .hero-image {

        object-position:
            58% center;
    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(0,0,0,0.78),
                rgba(0,0,0,0.35)
            ),

            linear-gradient(
                180deg,
                rgba(0,0,0,0.55),
                rgba(0,0,0,0.25),
                rgba(0,0,0,0.75)
            );
    }


    .hero-brand {

        top:
            100px;

        left:
            30px;

        width:
            135px;
    }


    .hero-content {

        padding-top:
            130px;
    }


    .hero-content .row {

        min-height:
            650px;

        align-items:
            flex-end;

        padding-bottom:
            80px;
    }


    .hero-title {

        font-size:
            clamp(4rem, 11vw, 7rem);
    }


    .feature-box {

        padding:
            50px 45px;
    }


    .eagle-section {

        min-height:
            700px;
    }


    .eagle-image img {

        object-position:
            45% center;
    }


    .gallery-header {

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .gallery-intro {

        max-width:
            650px;
    }


    .modern-gallery {

        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            450px 320px;
    }


    .gallery-featured {

        grid-column:
            1 / 3;

        grid-row:
            1;
    }


    .gallery-master {

        grid-column:
            1;

        grid-row:
            2;
    }


    .gallery-wide {

        grid-column:
            2;

        grid-row:
            2;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {


    .section,
    .power-section,
    .world-section,
    .thunder-gallery,
    .edition-gallery {

        padding:
            80px 0;
    }


    /* HERO */

    .hero {

        min-height:
            780px;

        height:
            780px;
    }


    .hero-image {

        object-position:
            62% center;
    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(0,0,0,0.76),
                rgba(0,0,0,0.32)
            ),

            linear-gradient(
                180deg,
                rgba(0,0,0,0.6),
                rgba(0,0,0,0.2),
                rgba(0,0,0,0.88)
            );
    }


    .hero-brand {

        top:
            90px;

        left:
            20px;

        width:
            105px;

        padding:
            7px;
    }


    .hero-content {

        padding-top:
            100px;
    }


    .hero-content .row {

        min-height:
            650px;

        padding-bottom:
            45px;

        align-items:
            flex-end;
    }


    .hero-kicker {

        font-size:
            0.72rem;

        letter-spacing:
            1.5px;
    }


    .hero-kicker span {

        width:
            28px;
    }


    .hero-title {

        font-size:
            clamp(3.5rem, 17vw, 5.5rem);

        line-height:
            0.8;
    }


    .hero-sub {

        margin-top:
            18px;

        font-size:
            0.95rem;

        letter-spacing:
            1px;
    }


    .hero-buttons {

        margin-top:
            24px;
    }


    .btn-comic {

        min-height:
            48px;

        padding:
            10px 17px;

        font-size:
            0.75rem;

        box-shadow:
            4px 4px 0 #000;
    }


    /* STORY */

    .feature-box {

        padding:
            40px 25px;
    }


    .feature-box::after {

        font-size:
            9rem;

        right:
            5px;
    }


    .section-title {

        font-size:
            clamp(3rem, 14vw, 5rem);
    }


    .lead-copy p {

        font-size:
            1rem;

        line-height:
            1.7;
    }


    .quote {

        padding:
            22px;
    }


    .quote-text {

        font-size:
            2rem;
    }


    /* POWER */

    .power-title {

        font-size:
            clamp(3.5rem, 15vw, 5.5rem);
    }


    .power-card {

        padding:
            30px 25px;
    }


    /* EAGLE */

    .eagle-section {

        min-height:
            720px;
    }


    .eagle-image img {

        object-position:
            58% center;
    }


    .eagle-overlay {

        background:

            linear-gradient(
                180deg,
                rgba(0,0,0,0.35),
                rgba(0,0,0,0.92)
            );
    }


    .eagle-content {

        padding:
            120px 20px 60px;
    }


    .eagle-content h2 {

        font-size:
            clamp(3.8rem, 15vw, 6rem);
    }


    /* WORLD */

    .world-header h2 {

        font-size:
            clamp(3.8rem, 15vw, 6rem);
    }


    /* GALLERY */

    .gallery-header {

        margin-bottom:
            35px;
    }


    .gallery-title {

        font-size:
            clamp(3.8rem, 15vw, 6rem);
    }


    .modern-gallery {

        display:
            flex;

        flex-direction:
            column;
    }


    .gallery-card {

        min-height:
            380px;
    }


    .gallery-featured,
    .gallery-master,
    .gallery-wide {

        width:
            100%;

        min-height:
            380px;
    }


    .gallery-content h3 {

        font-size:
            2.5rem;
    }


    .gallery-statement {

        gap:
            12px;
    }


    .statement-line {

        width:
            35px;
    }


    /* EDITION */

    .edition-title {

        font-size:
            clamp(3.8rem, 15vw, 6rem);
    }


    .edition-intro {

        padding:
            0 15px;
    }


    .comic-viewer {

        gap:
            8px;
    }


    .comic-page-wrap {

        width:
            calc(100vw - 95px);
    }


    .comic-page {

        border-width:
            4px;
    }


    .comic-arrow {

        flex:
            0 0 38px;

        width:
            38px;

        height:
            48px;

        font-size:
            1.2rem;
    }


    .comic-thumbnails {

        gap:
            7px;
    }


    .comic-thumb {

        width:
            58px;

        height:
            76px;
    }


    .edition-bottom {

        margin-top:
            40px;
    }


    /* MESSAGE */

    .message-section {

        min-height:
            580px;

        padding:
            80px 20px;
    }


    .message-content h2 {

        font-size:
            clamp(5rem, 23vw, 8rem);
    }


    .message-content p {

        font-size:
            1rem;
    }


    .message-words {

        gap:
            18px;

        margin:
            30px 0;
    }


    .message-words span {

        font-size:
            1.6rem;
    }


    /* FOOTER */

    footer {

        padding:
            55px 20px 30px;
    }


    .footer-logo {

        width:
            140px;
    }


}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {


    .nav-logo {

        width:
            110px;
    }


    .hero {

        min-height:
            720px;

        height:
            720px;
    }


    .hero-brand {

        width:
            90px;

        top:
            88px;

        left:
            15px;
    }


    .hero-content .row {

        padding-bottom:
            30px;
    }


    .hero-title {

        font-size:
            3.4rem;
    }


    .hero-sub {

        font-size:
            0.82rem;
    }


    .hero-buttons {

        gap:
            10px !important;
    }


    .hero-buttons .btn {

        width:
            100%;
    }


    .feature-box {

        padding:
            35px 20px;
    }


    .power-card {

        padding:
            28px 22px;
    }


    .gallery-card {

        min-height:
            330px;
    }


    .gallery-content {

        left:
            20px;

        right:
            20px;

        bottom:
            20px;
    }


    .gallery-content h3 {

        font-size:
            2.2rem;
    }


    .comic-page-wrap {

        width:
            calc(100vw - 85px);
    }


    .comic-arrow {

        flex:
            0 0 32px;

        width:
            32px;

        height:
            45px;

        font-size:
            1rem;
    }


    .comic-thumb {

        width:
            48px;

        height:
            64px;
    }


    .footer-nav {

        gap:
            8px 15px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  position: relative;
  width: 100%;
  padding: 80px 0 35px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 201, 40, 0.12),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      #090909 0%,
      #030303 100%
    );

  color: #fff;
  text-align: center;
  overflow: hidden;
}


/* TOP ENERGY LINE */

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    transparent,
    #ffc928 20%,
    #fff 50%,
    #ffc928 80%,
    transparent
  );

  box-shadow:
    0 0 20px rgba(255, 201, 40, 0.7);
}


/* SUBTLE BACKGROUND GRID */

footer::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size: 40px 40px;

  pointer-events: none;
}


/* FOOTER CONTAINER */

footer .container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* LOGO AREA */

.footer-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 30px;

  overflow: visible;
}


/* LOGO */

.footer-logo {
  display: block;

  width: auto;
  height: auto;

  max-width: 520px;
  max-height: 180px;

  object-fit: contain;

  margin: 0 auto;

  filter:
    drop-shadow(0 0 8px rgba(255, 201, 40, 0.25))
    drop-shadow(0 10px 30px rgba(0, 0, 0, 0.8));
}


/* =========================================================
   FOOTER TAGLINE
   ========================================================= */

.footer-tagline {
  margin-top: 5px;

  font-family: "Oswald", sans-serif;

  font-size: 1rem;
  line-height: 1.8;

  letter-spacing: 0.18em;

  color: rgba(255,255,255,0.7);

  text-transform: uppercase;
}


.footer-tagline strong {
  display: inline-block;

  margin-top: 5px;

  color: #ffc928;

  font-family: "Bangers", cursive;

  font-size: 1.8rem;

  letter-spacing: 0.08em;

  text-shadow:
    2px 2px 0 #000,
    0 0 15px rgba(255, 201, 40, 0.35);
}


/* =========================================================
   FOOTER NAVIGATION
   ========================================================= */

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;

  flex-wrap: wrap;

  gap: 10px 28px;

  margin-top: 45px;
}


.footer-nav a {
  position: relative;

  display: inline-block;

  padding: 6px 0;

  color: rgba(255,255,255,0.65);

  font-family: "Rajdhani", sans-serif;

  font-size: 0.95rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


.footer-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: #ffc928;

  transition: width 0.3s ease;
}


.footer-nav a:hover {
  color: #ffc928;

  transform: translateY(-2px);
}


.footer-nav a:hover::after {
  width: 100%;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.footer-divider {
  width: min(700px, 80%);

  height: 1px;

  margin: 42px auto 28px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,201,40,0.7),
      transparent
    );
}


/* =========================================================
   COPYRIGHT
   ========================================================= */

.footer-copy {
  max-width: 850px;

  margin: 0 auto;

  font-family: "Rajdhani", sans-serif;

  font-size: 0.85rem;

  line-height: 1.7;

  color: rgba(255,255,255,0.42);

  letter-spacing: 0.03em;
}


.footer-copy strong {
  color: rgba(255,201,40,0.8);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  footer {
    padding: 60px 0 30px;
  }


  .footer-logo {
    max-width: 300px;
    max-height: 140px;
  }


  .footer-tagline {
    font-size: 0.85rem;
    line-height: 1.7;
    letter-spacing: 0.12em;
  }


  .footer-tagline strong {
    font-size: 1.5rem;
  }


  .footer-nav {
    gap: 8px 18px;

    margin-top: 35px;
  }


  .footer-nav a {
    font-size: 0.82rem;
  }


  .footer-copy {
    padding: 0 15px;

    font-size: 0.78rem;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

  .footer-logo {
    max-width: 250px;
    max-height: 120px;
  }


  .footer-tagline strong {
    font-size: 1.35rem;
  }


  .footer-nav {
    flex-direction: column;

    gap: 10px;
  }

}