/* ======================================
   GLOBAL THEME — BLACK + GOLD PREMIUM
   ====================================== */

body {
    margin: 0;
    
    background: #0d0d0d;
    color: #f5f5f5;
    font-family: "Poppins", sans-serif;
}

/* NAVBAR */
.navbar {
    background: #111;
    border-bottom: 2px solid gold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.navbar .logo {
    font-size: 26px;
    font-weight: bold;
    color: gold;
}



.menu-toggle {
    
    font-size: 2rem;
    font-weight: bold;
    background: none;
    color: gold;
    border: none;
    cursor: pointer;
    
}


.nav-links span{
    
    

    
    font-size: 2rem;
    font-weight: bold;
    
    
    margin-right: 0rem;
    background: none;
    color: gold;
    border: none;
    cursor: pointer;
    
}
/* ======================================
   NAV BUTTONS
   ====================================== */

.nav-links{

    position: fixed;
    margin: auto ;
    top: .01rem;
    right: -100% ;
    width: 30%;
    height: 90%;
    background: #000000;
    border:.1rem solid gold  ;
    border-radius: 25px;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 1000;
    list-style: none;
    
    
    flex-wrap: wrap;
    

    max-width: 100%;
}






.nav-links li button {
    
    padding: 1rem 20%;
    min-width: 70%;
    margin: 1rem  auto;
    background: #141414;
    border: .1rem solid gold;
    border-radius: .5rem;
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
    font-weight: 600;
    justify-content:space-around;
    align-items: center;
    color: gold;
    cursor: pointer;
    

    
    transition: .3s;
}


.nav-links li button.active {
    border-color: gold;
    background: rgba(255,215,0,0.15);
    box-shadow: 0 0 10px gold;
}


.nav-links li button:hover {
    background: gold;
    color: #000;
    transform: translateY(-3px);
}



/* ======================================
   ABOUT PAGE CONTAINER
   ====================================== */

.about-container {
    width: 90%;
    max-width: 1100px;
    margin: 120px auto 60px auto; 
    text-align: center;
}

.about-container h1 {
    font-size: 3rem;
    color: gold;
    font-weight: 700;
}

.subtitle {
    margin-top: 10px;
    color: #cfcfcf;
    font-size: 1.2rem;
}

.about-wrapper {
    margin-top: 40px;
    padding: 40px;
    background: rgba(22, 22, 22, 0.85);
    border: 2px solid gold;
    border-radius: 25px;

    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;

    box-shadow: 0 0 35px rgba(255, 215, 0, 0.25);
}

.about-img img {
    width: 80%;
    height: auto;
    border-radius: 25px;
    border: 2px solid gold;
    object-fit: cover;
}

.about-text {
    width: 50%;
    min-width: 280px;
    text-align: left;
}

.about-text h2 {
    margin-top: 10px;
    color: gold;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ======================================
   FOUNDER SECTION
   ====================================== */

.founder-section {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.founder-section h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: gold;
    margin-bottom: 20px;
}

.founder-box {
    padding: 40px;
    border: 2px solid gold;
    border-radius: 25px;
    background: rgba(22,22,22,0.85);

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;

    box-shadow: 0 0 35px rgba(255,215,0,0.25);
}

.founder-box img {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    border: 2px solid gold;
    object-fit: cover;
}

.founder-box p {
    width: 60%;
    min-width: 280px;
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.6;
}



/* ======================================
   FOOTER
   ====================================== */

.footer {
    margin-top: 40px;
    background: #000;
    padding: 40px 0 0 0;
    border-top: 2px solid gold;
}

.footer-frame {
    max-width: 1100px;
    margin: auto;
    background: #000000;
    border: 2px solid gold;
    border-radius: 25px;
    padding: 30px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    box-shadow: inset 0 0 15px rgba(255,215,0,0.15);
}

.footer-section h2,
.footer-section h3 {
    color: gold;
}

.footer-section ul li a {
    color: #f5f5f5;
}

.footer-section ul li a:hover {
    color: gold;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #0b0b0b;
    border-top: 1px solid gold;
    color: gold;
}


/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

@media(max-width: 900px) {
    .about-text {
        width: 90%;
    }
}

@media(max-width: 500px) {
    .nav-links li button {
        padding: 7px 14px;
        font-size: 0.9rem;
    }

    .about-container h1 {
        font-size: 2.3rem;
    }
}
