/* ================= ROOT ================= */
:root{
    --maroon:#800000;
    --black:#111;
    --white:#fff;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
}


/* ================= HEADER GLASS ================= */
.header{
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(0,0,0,0.05);
  transition:0.3s;
}

/* SHRINK ON SCROLL */
.header.shrink{
  padding:5px 0;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* CONTAINER */
.container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:60px;
}

/* ================= NAV ================= */
nav ul{
  display:flex;
  gap:25px;
  list-style:none;
  align-items:center;
  position:relative;
}

/* LINKS */
nav a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  padding:8px 14px;
  border-radius:20px;
  transition:0.3s;
}

/* HOVER *//* ================= PROJECT SECTION ================= */
.projects-section{
    position:relative;
    padding:100px 8%;
    background:#050505;
    overflow:hidden;
}

/* OVERLAY */
.projects-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(rgba(0,0,0,0.88),
    rgba(0,0,0,0.93)),
    url('children-bg.jpg');

    background-size:cover;
    background-position:center;

    z-index:0;
}

/* CONTAINER */
.projects-container{
    position:relative;
    z-index:2;
}

/* HEADER */
.projects-header{
    text-align:center;
    margin-bottom:60px;
}

.projects-header span{
    color:#ff4d4d;
    font-weight:700;
    letter-spacing:2px;
}

.projects-header h2{
    color:white;
    font-size:55px;
    margin:15px 0;
}

.projects-header p{
    color:#ccc;
    max-width:750px;
    margin:auto;
    line-height:1.8;
}

/* CARD */
.project-card{
    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:30px;

    overflow:hidden;

    backdrop-filter:blur(15px);

    transition:0.5s;
}

/* HOVER */
.project-card:hover{
    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(255,0,0,0.12);
}

/* IMAGE */
.project-image{
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:450px;
    object-fit:cover;

    transition:0.7s;
}

/* IMAGE HOVER */
.project-card:hover .project-image img{
    transform:scale(1.08);
}

/* BADGE */
.project-badge{
    position:absolute;
    top:20px;
    right:20px;

    background:#800000;
    color:white;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;
    font-weight:600;
}

/* CONTENT */
.project-content{
    padding:40px;
}

.project-content h3{
    color:white;
    font-size:38px;
    margin-bottom:20px;
}

.project-content p{
    color:#ccc;
    line-height:1.9;
}

/* TIMELINE */
.construction-timeline{
    margin-top:40px;

    display:flex;
    flex-direction:column;
    gap:25px;
}

/* BOX */
.timeline-box{
    display:flex;
    gap:20px;

    background:rgba(255,255,255,0.04);

    padding:20px;

    border-radius:20px;

    transition:0.4s;
}

/* HOVER */
.timeline-box:hover{
    transform:translateX(10px);

    background:rgba(255,255,255,0.08);
}

/* IMAGE */
.timeline-image{
    width:220px;
    min-width:220px;

    overflow:hidden;
    border-radius:15px;
}

.timeline-image img{
    width:100%;
    height:150px;
    object-fit:cover;

    transition:0.5s;
}

.timeline-box:hover img{
    transform:scale(1.12);
}

/* INFO */
.timeline-info{
    flex:1;
}

.timeline-info h4{
    color:white;
    margin:12px 0;
    font-size:28px;
}

.timeline-info p{
    color:#ccc;
}

/* TAGS */
.timeline-tag{
    display:inline-block;

    background:#444;
    color:white;

    padding:7px 15px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;
}

/* CURRENT */
.active-tag{
    background:#800000;
}

/* FUTURE */
.future-tag{
    background:#d4a017;
}

/* PROGRESS */
.progress-box{
    width:100%;
    height:10px;

    background:#222;

    border-radius:30px;

    overflow:hidden;

    margin-top:35px;
}

.progress-bar{
    height:100%;
    width:75%;

    background:
    linear-gradient(90deg,#ff0000,#800000);

    border-radius:30px;

    animation:progressAnim 2s ease;
}

/* ANIMATION */
@keyframes progressAnim{
    from{
        width:0;
    }

    to{
        width:75%;
    }
}

/* TEXT */
.progress-text{
    display:block;
    color:#ff4d4d;
    margin-top:12px;
}

/* BUTTONS */
.project-buttons{
    margin-top:30px;

    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* BTN */
.project-btn{
    background:
    linear-gradient(135deg,#800000,#300000);

    color:white;

    padding:14px 28px;

    border-radius:30px;

    text-decoration:none;

    transition:0.3s;
}

.project-btn:hover{
    transform:scale(1.08);
}

/* GALLERY */
.gallery-btn{
    border:1px solid rgba(255,255,255,0.15);

    color:white;

    padding:14px 28px;

    border-radius:30px;

    text-decoration:none;

    transition:0.3s;
}

.gallery-btn:hover{
    background:white;
    color:black;
}

/* REVEAL */
.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* MOBILE */
@media(max-width:768px){

    .projects-header h2{
        font-size:38px;
    }

    .project-image img{
        height:280px;
    }

    .timeline-box{
        flex-direction:column;
    }

    .timeline-image{
        width:100%;
        min-width:100%;
    }

    .timeline-image img{
        height:220px;
    }

    .project-content{
        padding:25px;
    }

    .project-content h3{
        font-size:30px;
    }

}
nav a:hover{
  color:#800000;
}
/* ================= PROJECTS ================= */
.projects-section{
    position:relative;
    padding:100px 8%;
    background:#050505;
    overflow:hidden;
}

/* OVERLAY */
.projects-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,0.85),
    rgba(0,0,0,0.92)),
    url('children-bg.jpg');

    background-size:cover;
    background-position:center;
    z-index:0;
}

/* CONTENT */
.projects-section *{
    position:relative;
    z-index:2;
}

/* HEADER */
.projects-header{
    text-align:center;
    margin-bottom:70px;
}

.projects-header span{
    color:#ff4d4d;
    font-weight:700;
    letter-spacing:2px;
}

.projects-header h2{
    color:white;
    font-size:55px;
    margin:15px 0;
}

.projects-header p{
    color:#ccc;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* GRID */
.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/* CARD */
.project-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    overflow:hidden;
    backdrop-filter:blur(12px);

    transition:0.5s;
}

/* HOVER */
.project-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(255,0,0,0.15);
}

/* IMAGE */
.project-image{
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.7s;
}

.project-card:hover .project-image img{
    transform:scale(1.12);
}

/* BADGE */
.project-badge{
    position:absolute;
    top:15px;
    right:15px;

    background:#800000;
    color:white;

    padding:8px 16px;
    border-radius:30px;

    font-size:13px;
    font-weight:600;
}

/* CONTENT */
.project-content{
    padding:25px;
}

.project-content h3{
    color:white;
    font-size:28px;
    margin-bottom:15px;
}

.project-content p{
    color:#ccc;
    line-height:1.8;
}

/* MINI GALLERY */
.mini-gallery{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.mini-gallery img{
    width:33%;
    height:85px;
    object-fit:cover;
    border-radius:12px;
    transition:0.4s;
}

.mini-gallery img:hover{
    transform:scale(1.08);
}

/* PROGRESS */
.progress-box{
    width:100%;
    height:8px;
    background:#222;
    border-radius:20px;
    overflow:hidden;
    margin-top:20px;
}

.progress-bar{
    height:100%;
    background:linear-gradient(90deg,#ff0000,#800000);
    border-radius:20px;
}

.progress-text{
    display:block;
    color:#ff4d4d;
    margin-top:10px;
}

/* BUTTON */
.project-btn{
    display:inline-block;
    margin-top:20px;

    background:linear-gradient(135deg,#800000,#300000);
    color:white;

    padding:12px 24px;
    border-radius:30px;

    text-decoration:none;
    transition:0.4s;
}

.project-btn:hover{
    transform:scale(1.08);
}

/* IMPACT */
.impact-section{
    margin-top:80px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.impact-box{
    text-align:center;
    background:rgba(255,255,255,0.05);
    padding:35px;
    border-radius:20px;
}

.impact-box h2{
    color:#ff4d4d;
    font-size:42px;
}

.impact-box p{
    color:#ddd;
    margin-top:10px;
}

/* ================= POPUP ================= */
.support-popup{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.7);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:0.5s;
}

/* SHOW POPUP */
.support-popup.show{
    opacity:1;
    visibility:visible;
}

/* POPUP CONTENT */
.popup-content{
    width:90%;
    max-width:600px;

    background:white;
    padding:50px 35px;

    border-radius:25px;
    text-align:center;

    position:relative;

    animation:popupUp 0.6s ease;
}

/* HEART */
.popup-heart{
    font-size:60px;
    margin-bottom:20px;
}

/* TITLE */
.popup-content h2{
    font-size:40px;
    margin-bottom:15px;
}

/* TEXT */
.popup-content p{
    color:#555;
    line-height:1.8;
}

/* ACTIONS */
.popup-actions{
    margin-top:30px;

    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.popup-actions a{
    background:#800000;
    color:white;

    padding:14px 25px;
    border-radius:30px;

    text-decoration:none;
    transition:0.3s;
}

.popup-actions a:hover{
    transform:scale(1.08);
}

/* CLOSE */
.close-popup{
    position:absolute;
    top:15px;
    right:20px;

    background:none;
    border:none;

    font-size:24px;
    cursor:pointer;
}

/* POPUP ANIMATION */
@keyframes popupUp{
    from{
        opacity:0;
        transform:translateY(40px) scale(0.9);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* REVEAL */
.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .projects-header h2{
        font-size:38px;
    }

    .popup-content h2{
        font-size:30px;
    }

}


/* ================= BIGWA SPECIAL PROJECT ================= */
.special-project{
    margin-top:40px;
    overflow:hidden;
}

/* TIMELINE */
.construction-timeline{
    margin-top:30px;

    display:flex;
    flex-direction:column;
    gap:25px;
}

/* BOX */
.timeline-box{
    display:flex;
    gap:20px;

    background:rgba(255,255,255,0.04);

    padding:18px;
    border-radius:20px;

    transition:0.4s;
}

/* HOVER */
.timeline-box:hover{
    transform:translateX(10px);
    background:rgba(255,255,255,0.08);
}

/* IMAGE */
.timeline-image{
    width:180px;
    min-width:180px;
    overflow:hidden;
    border-radius:15px;
}

.timeline-image img{
    width:100%;
    height:130px;
    object-fit:cover;
    transition:0.5s;
}

/* IMAGE ZOOM */
.timeline-box:hover img{
    transform:scale(1.12);
}

/* INFO */
.timeline-info{
    flex:1;
}

.timeline-info h4{
    color:white;
    margin:10px 0;
    font-size:24px;
}

.timeline-info p{
    color:#ccc;
    line-height:1.7;
}

/* TAGS */
.timeline-tag{
    display:inline-block;

    background:#444;
    color:white;

    padding:7px 14px;
    border-radius:30px;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

/* CURRENT */
.active-tag{
    background:#800000;
}

/* FUTURE */
.future-tag{
    background:#d4a017;
}

/* PROGRESS */
.bigwa-progress{
    width:75%;
}

/* BUTTONS */
.project-buttons{
    margin-top:25px;

    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* GALLERY BUTTON */
.gallery-btn{
    display:inline-block;

    padding:12px 22px;

    border:1px solid rgba(255,255,255,0.2);

    border-radius:30px;

    color:white;
    text-decoration:none;

    transition:0.3s;
}

.gallery-btn:hover{
    background:white;
    color:black;
}

/* RESPONSIVE */
@media(max-width:768px){

    .timeline-box{
        flex-direction:column;
    }

    .timeline-image{
        width:100%;
        min-width:100%;
    }

    .timeline-image img{
        height:220px;
    }

    .timeline-info h4{
        font-size:22px;
    }

}


/* ================= PROJECTS ================= */
.projects-section{
    position:relative;
    padding:100px 8%;
    background:#050505;
    overflow:hidden;
}

/* OVERLAY */
.projects-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,0.85),
    rgba(0,0,0,0.92)),
    url('children-bg.jpg');

    background-size:cover;
    background-position:center;
    z-index:0;
}

/* CONTENT */
.projects-section *{
    position:relative;
    z-index:2;
}

/* HEADER */
.projects-header{
    text-align:center;
    margin-bottom:70px;
}

.projects-header span{
    color:#ff4d4d;
    font-weight:700;
    letter-spacing:2px;
}

.projects-header h2{
    color:white;
    font-size:55px;
    margin:15px 0;
}

.projects-header p{
    color:#ccc;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* GRID */
.projects-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/* CARD */
.project-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    overflow:hidden;
    backdrop-filter:blur(12px);

    transition:0.5s;
}

/* HOVER */
.project-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(255,0,0,0.15);
}

/* IMAGE */
.project-image{
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.7s;
}

.project-card:hover .project-image img{
    transform:scale(1.12);
}

/* BADGE */
.project-badge{
    position:absolute;
    top:15px;
    right:15px;

    background:#800000;
    color:white;

    padding:8px 16px;
    border-radius:30px;

    font-size:13px;
    font-weight:600;
}

/* CONTENT */
.project-content{
    padding:25px;
}

.project-content h3{
    color:white;
    font-size:28px;
    margin-bottom:15px;
}

.project-content p{
    color:#ccc;
    line-height:1.8;
}

/* MINI GALLERY */
.mini-gallery{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.mini-gallery img{
    width:33%;
    height:85px;
    object-fit:cover;
    border-radius:12px;
    transition:0.4s;
}

.mini-gallery img:hover{
    transform:scale(1.08);
}

/* PROGRESS */
.progress-box{
    width:100%;
    height:8px;
    background:#222;
    border-radius:20px;
    overflow:hidden;
    margin-top:20px;
}

.progress-bar{
    height:100%;
    background:linear-gradient(90deg,#ff0000,#800000);
    border-radius:20px;
}

.progress-text{
    display:block;
    color:#ff4d4d;
    margin-top:10px;
}

/* BUTTON */
.project-btn{
    display:inline-block;
    margin-top:20px;

    background:linear-gradient(135deg,#800000,#300000);
    color:white;

    padding:12px 24px;
    border-radius:30px;

    text-decoration:none;
    transition:0.4s;
}

.project-btn:hover{
    transform:scale(1.08);
}

/* IMPACT */
.impact-section{
    margin-top:80px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.impact-box{
    text-align:center;
    background:rgba(255,255,255,0.05);
    padding:35px;
    border-radius:20px;
}

.impact-box h2{
    color:#ff4d4d;
    font-size:42px;
}

.impact-box p{
    color:#ddd;
    margin-top:10px;
}

/* ================= POPUP ================= */
.support-popup{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.7);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:0.5s;
}

/* SHOW POPUP */
.support-popup.show{
    opacity:1;
    visibility:visible;
}

/* POPUP CONTENT */
.popup-content{
    width:90%;
    max-width:600px;

    background:white;
    padding:50px 35px;

    border-radius:25px;
    text-align:center;

    position:relative;

    animation:popupUp 0.6s ease;
}

/* HEART */
.popup-heart{
    font-size:60px;
    margin-bottom:20px;
}

/* TITLE */
.popup-content h2{
    font-size:40px;
    margin-bottom:15px;
}

/* TEXT */
.popup-content p{
    color:#555;
    line-height:1.8;
}

/* ACTIONS */
.popup-actions{
    margin-top:30px;

    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.popup-actions a{
    background:#800000;
    color:white;

    padding:14px 25px;
    border-radius:30px;

    text-decoration:none;
    transition:0.3s;
}

.popup-actions a:hover{
    transform:scale(1.08);
}

/* CLOSE */
.close-popup{
    position:absolute;
    top:15px;
    right:20px;

    background:none;
    border:none;

    font-size:24px;
    cursor:pointer;
}

/* POPUP ANIMATION */
@keyframes popupUp{
    from{
        opacity:0;
        transform:translateY(40px) scale(0.9);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

/* REVEAL */
.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

    .projects-header h2{
        font-size:38px;
    }

    .popup-content h2{
        font-size:30px;
    }

}

/* ================= ACTIVE PROJECT BUTTON ================= */
.project-active-btn{
    background:
    linear-gradient(135deg,#800000,#000);

    color:white !important;

    padding:10px 22px !important;

    border-radius:30px;

    box-shadow:
    0 10px 30px rgba(128,0,0,0.25);

    animation:pulseGlow 2s infinite;
}

/* GLOW */
@keyframes pulseGlow{

    0%{
        box-shadow:
        0 0 0 rgba(128,0,0,0.3);
    }

    50%{
        box-shadow:
        0 0 25px rgba(128,0,0,0.6);
    }

    100%{
        box-shadow:
        0 0 0 rgba(128,0,0,0.3);
    }

}

/* ================= CINEMATIC SLIDER ================= */
.timeline-slider{
    position:relative;

    width:420px;
    min-width:420px;

    height:270px;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 20px 40px rgba(0,0,0,0.35);
}

/* SLIDES */
.timeline-slide{
    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transform:scale(1.08);

    transition:
    opacity 1.5s ease,
    transform 7s ease;
}

/* ACTIVE */
.timeline-slide.active{
    opacity:1;
    transform:scale(1);
}

/* OVERLAY */
.timeline-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2));

    z-index:2;
}

/* LABEL */
.slider-label{
    position:absolute;

    bottom:18px;
    left:18px;

    z-index:3;

    color:white;

    padding:10px 18px;

    border-radius:30px;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    backdrop-filter:blur(8px);
}

/* COLORS */
.before-label{
    background:#444;
}

.current-label{
    background:#800000;
}

.future-label{
    background:#d4a017;
}

/* ================= CLASSIC POPUP ================= */
.construction-popup{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,0.78);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:0.5s;
}

/* SHOW */
.construction-popup.show{
    opacity:1;
    visibility:visible;
}

/* BOX */
.popup-box{
    width:90%;
    max-width:650px;

    background:white;

    padding:60px 40px;

    border-radius:30px;

    text-align:center;

    position:relative;

    animation:popupAnimation 0.9s ease;

    overflow:hidden;
}

/* SHINE EFFECT */
.popup-box::before{
    content:'';

    position:absolute;

    top:-100%;
    left:-50%;

    width:200%;
    height:200%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent);

    transform:rotate(25deg);

    animation:shine 5s linear infinite;
}

/* ICON */
.popup-icon{
    font-size:70px;

    animation:heartBeat 1.5s infinite;
}

/* TITLE */
.popup-box h2{
    font-size:48px;
    margin:20px 0;
}

/* TEXT */
.popup-box p{
    color:#555;
    line-height:1.9;
    font-size:17px;
}

/* SMALL */
.popup-small{
    margin-top:15px;
    color:#777;
}

/* BUTTON */
.popup-donate-btn{
    display:inline-block;

    margin-top:35px;

    background:
    linear-gradient(135deg,#800000,#300000);

    color:white;

    padding:16px 40px;

    border-radius:40px;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    transition:0.4s;

    position:relative;
    z-index:2;
}

/* HOVER */
.popup-donate-btn:hover{
    transform:translateY(-5px) scale(1.05);

    box-shadow:
    0 20px 45px rgba(128,0,0,0.3);
}

/* CLOSE */
.popup-close{
    position:absolute;
    top:18px;
    right:22px;

    background:none;
    border:none;

    font-size:28px;

    cursor:pointer;

    z-index:3;
}

/* SHINE */
@keyframes shine{

    0%{
        transform:
        translateX(-100%)
        rotate(25deg);
    }

    100%{
        transform:
        translateX(100%)
        rotate(25deg);
    }

}

/* POPUP */
@keyframes popupAnimation{

    from{
        opacity:0;
        transform:
        translateY(50px)
        scale(0.85);
    }

    to{
        opacity:1;
        transform:
        translateY(0)
        scale(1);
    }

}

/* HEART */
@keyframes heartBeat{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }

}



/* ================= FOOTER ================= */
.footer{
    background:#0f0f0f;
    color:white;
    padding-top:70px;
    margin-top:80px;
    position:relative;
}

/* CONTAINER */
.footer-container{
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;

    padding-bottom:50px;
}

/* FOOTER BOX */
.footer-box h3{
    font-size:22px;
    margin-bottom:20px;
    color:#fff;
    position:relative;
}

/* UNDERLINE */
.footer-box h3::after{
    content:'';
    width:50px;
    height:3px;
    background:#800000;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:10px;
}

/* LOGO */
.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.footer-logo img{
    width:55px;
}

.footer-logo h2{
    font-size:22px;
    margin:0;
}

.footer-logo span{
    color:#ccc;
    font-size:13px;
}

/* PARAGRAPH */
.footer-box p{
    color:#bbb;
    line-height:1.8;
    font-size:15px;
}

/* LINKS */
.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box ul li{
    margin-bottom:12px;
}

.footer-box ul li a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
}

.footer-box ul li a:hover{
    color:#fff;
    padding-left:6px;
}

/* SOCIALS */
.footer-socials{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.footer-socials a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#1b1b1b;

    color:white;
    text-decoration:none;

    transition:0.3s;
}

.footer-socials a:hover{
    background:#800000;
    transform:translateY(-5px);
}

/* BUTTON */
.footer-btn{
    display:inline-block;
    margin-top:20px;

    background:linear-gradient(135deg,#800000,#5c0000);
    color:white;

    padding:12px 22px;
    border-radius:30px;

    text-decoration:none;
    font-weight:600;

    transition:0.3s;
}

.footer-btn:hover{
    transform:scale(1.05);
}

/* HOURS */
.footer-hours{
    margin-top:20px;
    color:#eee;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);

    padding:25px 10%;
    text-align:center;

    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#aaa;
    font-size:14px;
}

/* CREDIT */
.footer-credit{
    color:#800000;
    font-weight:600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-box h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-bottom{
        flex-direction:column;
    }

}
/* ================= HEADER MOBILE FIX ================= */

.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-toggle span{
  width:25px;
  height:3px;
  background:#000;
  transition:0.3s;
}

/* NAV DESKTOP */
nav ul{
  display:flex;
  gap:20px;
  list-style:none;
}


/* ACTIVE PAGE */
nav a.active{
  background:linear-gradient(135deg,#800000,#000);
  color:white;
}


/* ================= MOBILE ================= */
@media(max-width:768px){

  .menu-toggle{
    display:flex;
  }

  nav{
    position:absolute;
    top:80px;
    left:-100%;
    width:100%;
    background:white;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.4s;
    padding:20px;
  }

  nav.active{
    left:0;
  }

  nav ul{
    flex-direction:column;
    gap:15px;
  }
}

/* HAMBURGER ANIMATION */
.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}