﻿
/* =========================================
   1. GLOBAL & RESET
========================================= */
html {
    line-height: 1.15;
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: 'Oxygen', sans-serif;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, #08051a, #120b2d, #1b1442);
    color: #fff;
}
section {
    padding: 90px 15px;
}

.content {
    max-width: 1200px;
    display: block;
    margin: 0 auto;
}


h2 {
    font-size: 36px;
    margin: 5px 0 10px;
}
img {
    max-width: 100%;
    height: auto;
}

p {
    font-size: 18px;
    margin: 5px 0 10px;
    line-height: 1.6;
}

h2 {
    font-size: 36px;
    margin: 5px 0 10px;
    font-family: 'Cinzel', serif;
}

@media screen and (min-width: 768px) {
    h2 {
        font-size: 60px;
        font-weight: 700;
        color: #fff;
    }
}

.center {
    text-align: center;
}

.bold {
    font-weight: 700;
}

.orange {
    color: #FF5100;
}

section {
    padding: 100px 20px;
}

section:empty {
    display: none;
}

/* =========================================
   2. HEADER & NAVIGATION
========================================= */
.site-header {
    z-index: 100;
    font-family: 'Roboto Condensed', sans-serif;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: sticky;
    top: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/images/header-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


@media screen and (min-width: 1250px) {
    .site-header {
        justify-content: space-between;
        flex-direction: row;
        padding: 0 40px;
    }
}

.site-header .nav-logo {
    align-self: flex-start;
    padding: 10px 5px 5px;
}

    .site-header .nav-logo a img {
        max-width: 200px;
        height: auto;
    }

@media screen and (min-width: 768px) {
    .site-header .nav-logo a img {
        max-width: 314px;
    }
}

/* Nav Links */
.site-header .nav-links {
    display: none;
    width: 100%;
    background-color: #08051a;
}

.nav-links.active {
    display: block;
}

@media screen and (min-width: 1250px) {
    .site-header .nav-links {
        display: block;
        width: auto;
        background-color: transparent;
    }
}

.site-header .nav-links ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
}

@media screen and (min-width: 1250px) {
    .site-header .nav-links ul {
        flex-direction: row;
    }
}

.site-header .nav-links ul li {
    list-style: none;
}

    .site-header .nav-links ul li a {
        font-size: 18px;
        text-transform: uppercase;
        color: #ffffff;
        letter-spacing: 1.2px;
        padding: 15px 20px;
        text-decoration: none;
        display: block;
        font-weight: 700;
        transition: all 0.3s;
    }

        .site-header .nav-links ul li a:hover {
            color: #ffb347;
            background-color: rgba(255, 255, 255, 0.1);
        }

/* Hamburger */
.site-header button.hamburger {
    cursor: pointer;
    background: transparent;
    border: none;
    width: 50px;
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 101;
}

    .site-header button.hamburger img {
        width: 100%;
        filter: invert(1);
    }

@media screen and (min-width: 1250px) {
    .site-header button.hamburger {
        display: none;
    }
}


/* =========================================
   CUSTOM SCROLLBAR (Chrome, Edge, Safari)
========================================= */
::-webkit-scrollbar {
    width: 10px;
}

/* Background of the scrollbar path */
::-webkit-scrollbar-track {
    background: #08051a; /* Matches your dark background */
}

/* The moving slider part */
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8f2fff, #ffb347); /* Purple to Orange */
    border-radius: 5px;
    border: 2px solid #08051a; /* Creates a padding effect */
}

    /* Hover effect */
    ::-webkit-scrollbar-thumb:hover {
        background: #ffb347;
    }
/* ===============================
   FLOATING SOCIAL BAR (FINAL)
================================ */

.social-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

@media (min-width: 900px) {
    .social-share {
        display: flex;
    }
}

.social-share a {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

    .social-share a:hover {
        transform: translateX(6px);
        background: rgba(255,180,80,0.18);
        box-shadow: 0 0 20px rgba(255,180,80,0.4);
    }

.social-share img {
    width: 22px;
    height: auto;
    filter: brightness(0) invert(1);
}


/* =========================================
   3. FOOTER
========================================= */
.site-footer {
    background: #05030d;
    padding: 140px 20px 30px;
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.site-footer--content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 900px) {
    .site-footer--content {
        grid-template-columns: 60% 40%;
    }
}

.footer-left img {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-left p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-right {
    text-align: left;
}

@media (min-width: 900px) {
    .footer-right {
        text-align: right;
    }
}

.footer-right p, .footer-right a {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

    .footer-right a:hover {
        color: #ffb347;
        text-shadow: 0 0 10px rgba(255,180,80,0.5);
    }

.copyright-notice {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}




/* ===============================
   BACK TO TOP BUTTON
================================ */
#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #9f7cff, #6aa8ff);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    border: none;
    cursor: pointer;
    z-index: 999;
}


    /* Hover */
    #backToTop:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.8), 0 0 25px rgba(140,160,255,0.8), inset 0 0 15px rgba(255,255,255,0.3);
    }

    /* Click */
    #backToTop:active {
        transform: translateY(-2px);
    }

