/* Basic Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Optional: Use a similar font */
    font-family: Poppins, sans-serif; 
    
}

:root {
    /* Define color variables based on the image */
    --primary-yellow: #FFD700; /* A bright yellow */
    --secondary-green: #4CAF50; /* A vibrant green */
    --text-dark: #333;
    --text-light: #fff;
    --hero-overlay-color: rgba(255, 255, 255, 0.75); /* White foggy overlay */
}

/* --- Navigation Bar (Header) --- */
.navbar {
    background-color: var(--primary-yellow);
    /* Ensures the navbar is at the top */
    position: sticky; 
    top: 0;
    z-index: 10;
}

.navbar-content {
    /* Set max width to mimic typical web layouts */
    max-width: 1200px; 
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    /* Adjust size to match the small logo in the image */
    height: 40px; 
    margin-right: 10px;
}

.university-name {
    color: var(--text-dark);
    font-size: 10px;
    font-weight: bold;
    line-height: 1.2;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-left: 25px;
    /* Animation: Subtle transition for hover effect */
    transition: color 0.3s ease; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-green);
}

.nav-links .highlight {
    /* To match the slightly different look/emphasis of ROOM RESERVATIONS */
    /* Could be colored green, or just a different shade */
    color: var(--text-dark); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d5a27; /* Dark green text from the image */
}


/* Contact Section Styling */
.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-section h2 {
    color: #2d5a27;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4); /* Frosted glass look */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    margin: 15px 0 5px;
    color: #111;
    font-weight: bold;
}

.contact-item p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}

.icon {
    font-size: 2.5rem;
    color: #000;
}

/* Yellow Footer Styling */
.main-footer {
    background-color: #ffcc00; /* USM Gold/Yellow */
    color: #1a4d1a; /* Dark green text */
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.main-footer h3 {
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tagline {
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-line, .copyright {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* Responsive adjustment for the glass card */
@media (max-width: 768px) {
    .glass-card {
        flex-direction: column;
        gap: 30px;
    }
}





/* --- Footer Styling --- */
.site-footer {
    background-color: #FFD700; /* University Yellow */
    padding: 5px 20px;
    text-align: center;
    border-top: 3px solid #4CAF50; /* Green accent line */
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    width: 50px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 5px;
}

.footer-university-name {
    color: #006400; /* Dark Green */
    font-size: 10px;
    font-weight: bold;
    margin: 10px 0;
    letter-spacing: 1px;
}

.footer-tagline {
    color: #006400; /* Dark Green */
    font-size: 10px;
    margin-bottom: 5px;
}

.footer-copyright {
    color: #006400; /* Dark Green */
    font-size: 10px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 100, 0, 0.2);
    padding-top: 15px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-university-name {
        font-size: 18px;
    }
    .objectives-heading, .objectives-list, .library-hours-heading, .library-hours-text {
        max-width: 95%;
    }
}