/* ==================================================
   PETER MWAU OFFICIAL WEBSITE
   Luxury Presidential Design System
================================================== */

:root{

    --gold:#D4AF37;
    --gold-light:#F5D76E;

    --purple:#2B0D4F;
    --purple-light:#6E3CBC;

    --bg:#07040D;
    --bg-2:#12081F;
    --card:#1B0D2D;

    --white:#ffffff;
    --text:#DADADA;
    --muted:#B8B8B8;

    --glass:rgba(255,255,255,0.06);
    --glass-border:rgba(255,255,255,0.12);

    --shadow:
    0 10px 40px rgba(0,0,0,.35);

    --transition:.4s ease;
}

/* ==================================================
   RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:
    linear-gradient(
    180deg,
    #07040D 0%,
    #12081F 50%,
    #07040D 100%
    );

    color:var(--text);

    overflow-x:hidden;

    position:relative;
}

/* ==================================================
   SCROLLBAR
================================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#09060f;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:50px;
}

/* ==================================================
   PRELOADER
================================================== */

#preloader{

    position:fixed;
    inset:0;

    background:#07040D;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;
}

.loader{

    width:70px;
    height:70px;

    border-radius:50%;

    border:4px solid rgba(255,255,255,.15);

    border-top:4px solid var(--gold);

    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

/* ==================================================
   BACKGROUND ORBS
================================================== */

.bg-orb{

    position:fixed;

    border-radius:50%;

    filter:blur(140px);

    z-index:-1;
}

.orb-1{

    width:400px;
    height:400px;

    background:#6E3CBC;

    top:-100px;
    left:-100px;

    opacity:.25;
}

.orb-2{

    width:350px;
    height:350px;

    background:#D4AF37;

    top:40%;
    right:-100px;

    opacity:.15;
}

.orb-3{

    width:300px;
    height:300px;

    background:#6E3CBC;

    bottom:-100px;
    left:30%;

    opacity:.15;
}

/* ==================================================
   NAVBAR
================================================== */

.glass-navbar{

    padding:18px 0;

    transition:.4s;

    background:rgba(10,10,10,.15);

    backdrop-filter:blur(20px);

    border-bottom:
    1px solid rgba(255,255,255,.08);
}

.glass-navbar.scrolled{

    padding:10px 0;

    background:rgba(5,5,5,.75);

    box-shadow:
    0 10px 40px rgba(0,0,0,.45);
}

.navbar-brand{

    font-weight:700;
    color:#fff !important;
    font-size:1.6rem;
}

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

.nav-link{

    color:#fff !important;

    margin-left:15px;

    position:relative;

    font-weight:500;
}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.4s;
}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;
}

.nav-link.active{
    color:var(--gold) !important;
}

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

.section-padding{
    padding:120px 0;
}

.section-header{

    max-width:800px;

    margin:auto auto 70px;
}

.section-tag{

    display:inline-block;

    color:var(--gold);

    font-size:.85rem;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;
}

.section-title{

    font-family:'Playfair Display',serif;

    color:#fff;

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

    margin-bottom:20px;
}

.section-description{

    color:var(--muted);

    font-size:1.05rem;

    line-height:1.8;
}

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

.hero-section{

    min-height:100vh;

    display:flex;
    align-items:center;

    position:relative;
}

.hero-title{

    font-family:'Playfair Display',serif;

    font-size:
    clamp(3rem,8vw,6rem);

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;
}

.hero-subtitle{

    color:var(--text);

    font-size:1.1rem;

    line-height:1.9;

    margin-bottom:30px;
}

.hero-badges{

    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.hero-badges span{

    padding:10px 18px;

    border-radius:50px;

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

    border:1px solid rgba(255,255,255,.1);

    backdrop-filter:blur(10px);

    font-size:.9rem;
}

.hero-image-wrapper{

    position:relative;

    animation:
    floating 5s ease-in-out infinite;
}

.hero-image{

    width:100%;

    max-width:500px;

    border-radius:30px;

    border:2px solid rgba(212,175,55,.4);

    box-shadow:
    0 30px 80px rgba(0,0,0,.6),
    0 0 40px rgba(212,175,55,.2);
}

@keyframes floating{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

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

.btn-gold{

    background:
    linear-gradient(
    135deg,
    #D4AF37,
    #F5D76E
    );

    border:none;

    color:#07040D;

    font-weight:600;

    border-radius:50px;

    padding:14px 32px;

    transition:var(--transition);

    box-shadow:
    0 10px 30px rgba(212,175,55,.35);
}

.btn-gold:hover{

    transform:
    translateY(-4px)
    scale(1.02);

    color:#000;
}

.btn-glass{

    background:transparent;

    color:#fff;

    border:1px solid var(--gold);

    border-radius:50px;

    padding:14px 32px;

    transition:.4s;
}

.btn-glass:hover{

    background:var(--gold);

    color:#07040D;
}

/* ==================================================
   GLASS CARDS
================================================== */

.glass-card{

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

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.12);

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:.4s;
}

.glass-card:hover{

    transform:translateY(-10px);

    border-color:
    rgba(212,175,55,.6);

    box-shadow:
    0 20px 60px rgba(0,0,0,.5),
    0 0 25px rgba(212,175,55,.2);
}

/* ==================================================
   VISION
================================================== */

.vision-card{

    text-align:center;

    padding:50px 30px;
}

.vision-card i{

    font-size:3rem;

    color:var(--gold);

    margin-bottom:20px;
}

.vision-card h4{
    color:#fff;
}

/* ==================================================
   BOOKS
================================================== */

.book-card{

    overflow:hidden;

    padding:20px;
}

.book-card img{

    width:100%;

    border-radius:18px;

    transition:.5s;
}

.book-card:hover img{
    transform:scale(1.08);
}

.luxury-image{

    width:100%;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.45);

    transition:.5s;
}

.luxury-image:hover{
    transform:scale(1.03);
}

/* ==================================================
   ARTICLES
================================================== */

.article-card{

    overflow:hidden;

    padding:20px;
}

.article-card img{

    width:100%;

    border-radius:20px;

    margin-bottom:20px;

    transition:.5s;
}

.article-card:hover img{
    transform:scale(1.08);
}

/* ==================================================
   GALLERY
================================================== */

.gallery-grid{

    columns:3 300px;

    column-gap:20px;
}

.gallery-item{

    width:100%;

    margin-bottom:20px;

    border-radius:20px;

    cursor:pointer;

    transition:.5s;

    display:block;
}

.gallery-item:hover{

    transform:scale(1.03);
}

#lightbox{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.95);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;
}

#lightbox img{

    max-width:90%;
    max-height:90%;

    border-radius:20px;
}

/* ==================================================
   IMPACT
================================================== */

.impact-card{

    padding:40px 20px;
}

.counter{

    color:var(--gold);

    font-size:3rem;

    font-weight:700;
}

/* ==================================================
   FORMS
================================================== */

.form-control{

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

    border:
    1px solid rgba(255,255,255,.1);

    color:#fff;

    border-radius:15px;

    padding:14px 18px;
}

.form-control:focus{

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

    color:#fff;

    border-color:var(--gold);

    box-shadow:
    0 0 20px rgba(212,175,55,.25);
}

.form-control::placeholder{
    color:#aaa;
}

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

footer{

    padding:80px 0 40px;

    background:#05030a;

    border-top:
    1px solid rgba(255,255,255,.08);
}

footer h4,
footer h5{

    color:#fff;

    margin-bottom:20px;
}

footer ul{

    list-style:none;

    padding:0;
}

footer ul li{
    margin-bottom:10px;
}

footer a{

    color:var(--muted);

    text-decoration:none;
}

footer a:hover{
    color:var(--gold);
}

footer hr{

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

    margin:40px 0;
}

/* ==================================================
   MODALS
================================================== */

.glass-modal{

    background:
    rgba(20,20,20,.92);

    backdrop-filter:blur(30px);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;

    border-radius:24px;
}

/* ==================================================
   BACK TO TOP
================================================== */

#backToTop{

    position:fixed;

    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#000;

    display:none;

    z-index:999;

    transition:.4s;
}

#backToTop:hover{

    transform:translateY(-5px);
}

/* ==================================================
   REVEAL ANIMATIONS
================================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:1s;
}

.reveal.active{

    opacity:1;

    transform:none;
}

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

@media(max-width:991px){

    .hero-section{
        text-align:center;
    }

    .hero-badges{
        justify-content:center;
    }

    .hero-image{
        margin-top:50px;
    }

    .section-padding{
        padding:90px 0;
    }
}

@media(max-width:768px){

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

    .hero-title{
        font-size:3rem;
    }

    .btn-gold,
    .btn-glass{

        width:100%;
    }

    .gallery-grid{
        columns:1;
    }
}
#preloader{
    transition: opacity .5s ease;
}





.about-section{
    position: relative;
    overflow: hidden;
}

.about-section::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            rgba(7,4,13,0.85),
            rgba(18,8,31,0.90)
        ),
        url('../images/bg1.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation: aboutZoom 20s ease-in-out infinite alternate;

    z-index:0;
}

.about-section .container{
    position:relative;
    z-index:2;
}

@keyframes aboutZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}



.impact-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.impact-card {
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 10px;
}

.impact-card p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
}

.section-title {
    color: #fff;
    font-weight: 800;
}

.section-subtitle {
    color: rgba(255,255,255,0.8);
}




.footer-section {
    background: #0f172a;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-title {
    color: #d4af37;
    font-weight: 700;
}

.footer-heading {
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.social-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover,
.social-links a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-divider {
    margin: 40px 0 20px;
    border-color: rgba(255,255,255,0.1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.developer-credit a {
    color: #d4af37;
    text-decoration: none;
}

.developer-credit a:hover {
    color: #fff;
}




.article-card{
    display:block;
    padding:25px;
    border-radius:20px;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.1);
    transition:0.3s;
}

.article-card:hover{
    transform:translateY(-5px);
    border-color:#D4AF37;
    color:#fff;
}

.article-card h4{
    margin-bottom:15px;
    color:#D4AF37;
}

.read-more{
    font-weight:600;
    color:#F5D76E;
}



.loader{
    width:100px;
    height:100px;
    border:3px solid rgba(212,175,55,0.2);
    border-top:3px solid #D4AF37;
    border-radius:50%;
    animation:spin 1s linear infinite;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:700;
    color:#D4AF37;
    letter-spacing:3px;
    font-family:'Playfair Display', serif;
}