/* ---------- THEME COLORS ---------- */
:root {
    --dark-bg: #ffffff;
    --dark-card-bg: #ffffff;
    --text-light: #000000;
    --accent-silver: #C0C0C0;
    --glow-shadow: 0 0 8px #C0C0C0, 0 0 16px #C0C0C0, 0 0 24px #C0C0C0;
}

/* ---------- GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--dark-bg);
    color: white;
    scroll-behavior: smooth;
    line-height: 1.6;

}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #66996f;;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 5px rgba(192, 192, 192, 0.25);
}
nav .logo img {
    height: 80px;
    width: auto;
    border-radius: 14px;
    object-fit: cover;
    padding: 4px;
    transition: all 0.35s ease-in-out;
}
nav .logo img:hover {
    transform: scale(1.1) rotate(-2deg);
    border-radius: 18px;
}
.nav-links a {
    color: white;
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none !important;
}
.nav-links a:hover {
    background: rgba(30, 58, 138, 0.15);
    color: var(--text-light);
}
.nav-controls { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    flex-wrap: wrap; 
}

/* ---------- BUTTONS ---------- */
.buttons {
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.buttons:hover {
    transform: translateY(-2px);
}

/* ---------- CONTACT SECTION ---------- */
.contact {
    max-width: 800px;
    margin: 100px auto;
    background: #0F3D2E;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 10px 10px 27px 2px rgba(255,255,255,0.75);
    text-align: center;
}

.contact h1 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact p {
    font-size: 1rem;
    margin: 8px 0;
}

/* ---------- FOOTER ---------- */
footer {
    background: #0F3D2E;
    padding: 20px 20px;
    color: white;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

footer h3 {
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-container a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.footer-container a:hover {
    color: #76d7b1;
}

.footer-container p {
    font-size: 0.95rem;
}

.about-column {
    flex: 1;
    text-align: center;
}

.social-column {
    text-align: right;
}

/* ---------- RESPONSIVE NAVBAR FIX ---------- */
@media(max-width: 900px) {
    nav {
        padding: 10px 15px;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .buttons {
        padding: 8px 12px;
        font-size: 0.9rem;
        flex-shrink: 0; /* Prevent hiding buttons */
    }

    nav .logo img {
        height: 55px;
    }
}
@media (max-width: 992px) {
    footer p,
    .footer-container p,
    .footer-container,
    .footer-container div {
        text-align: center !important;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ---------- SMALL DEVICE FIXES ---------- */
@media(max-width: 480px) {
    nav .logo img {
        height: 55px;
    }
    .nav-links a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

/* ---------- SMALL DEVICE FIX ---------- */
@media(max-width: 500px) {
    footer p {
        font-size: 0.8rem;
    }
    .footer-container {
        text-align: center;
    }
    .social-column {
        text-align: center;
    }
}