/* 1. Reset & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

/* 2. Navigation */
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 8%; /* Dinagdagan ang padding para mas maluwag */
    background: #fff; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

/* Logo Alignment */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 45px; /* Control sa laki ng logo */
    width: auto;
}

.brand-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #333;
    letter-spacing: 0.5px;
}

/* Links */
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
}

.nav-links a { 
    text-decoration: none; 
    color: #444; 
    font-weight: 500; 
    font-size: 0.95rem;
    transition: 0.3s; 
}

.nav-links a.active { 
    color: #e67e22; 
    border-bottom: 2px solid #e67e22; 
    padding-bottom: 5px; 
}

/* Auth Buttons (Log In & Sign Up) */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    text-decoration: none;
    color: #333;
    padding: 10px 22px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: #f8f8f8;
}

.btn-signup {
    text-decoration: none;
    background-color: #e67e22; /* Orange color gaya ng sa pic */
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-signup:hover {
    background-color: #d35400;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* 3. Footer */
.main-footer {
    background-color: #111111; 
    color: #ffffff;
    padding: 80px 8% 40px; 
    margin-top: 100px;
}

.footer-container {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    flex-wrap: wrap; 
    gap: 40px; 
    max-width: 1200px; 
    margin: 0 auto;
}

.footer-col { flex: 1; min-width: 200px; }
.footer-col.branding { flex: 1.5; }

.footer-logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 20px; 
}

.footer-logo img { 
    height: 40px; 
    filter: brightness(0) invert(1); 
}

.footer-logo span { 
    font-weight: 800; 
    font-size: 1.2rem; 
}

.footer-col h4 { 
    font-size: 1rem; 
    margin-bottom: 25px; 
    letter-spacing: 1px; 
    color: #fff; 
}

.footer-col p, .footer-col ul li a { 
    color: #aaaaaa; 
    font-size: 0.9rem; 
    line-height: 1.8; 
    text-decoration: none; 
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { 
    color: #e67e22; 
    padding-left: 5px; 
    transition: 0.3s; 
}

.contact-info p { 
    margin-bottom: 15px; 
    display: flex; 
    gap: 10px; 
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.welcome-text {
    color: #1a1917; /* Dark text */
    font-size: 0.9rem;
}

.welcome-text strong {
    color: #d97706; /* Saliqa Gold */
}

.btn-logout {
    background: transparent;
    border: 1px solid #d97706;
    color: #d97706;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-logout:hover {
    background: #d97706;
    color: #fff;
}

body.modal-open {
    overflow: hidden; /* Pinipigilan ang pag-scroll ng background */
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
}

.input-field i.toggle-password {
    position: absolute;
    right: 15px;
    color: #6b7280;
    transition: color 0.3s;
}

.input-field i.toggle-password:hover {
    color: #d97706;
}