/* THEME */
body {
    margin: 0;
    background: #000;
    font-family: "Poppins", sans-serif;
    color: gold;
}

/* 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;
    

    box-shadow: 0 0 12px rgba(255, 215, 0, .25);
    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);
}



/* SECTION HEADINGS */
h2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 34px;
    text-shadow: 0 0 10px gold;
}

/* GALLERY */
.gallery-section {
    padding: 20px 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid gold;
    transition: .3s;
}

.gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 0 20px gold;
}

/* FACULTIES */
.faculty-section {
    padding: 40px;
}

.faculty-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.faculty-card {
    background: #111;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid gold;
    transition: .3s;
}

.faculty-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid gold;
    margin-bottom: 10px;
}

.faculty-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px gold;
}

/* HIGHLIGHTS */
.highlights-section {
    padding: 40px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.highlight-card {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid gold;
    transition: .3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px gold;
}
