/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family:"Roboto", sans-serif;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

:root {
 /*Colors*/
 --white-color: #fff;
 --dark-color: #000000;
 --primary-color: #004e7a;
 --secondary-color: #f3961c;
 --light-yellow-color: #f8ff7b;
 --light-blue-color: #61b8ff;
 /* Header height used to size the hero: adjust this value to change header height */
 --header-height: 80px;

 /* Font size */
--font-size-s: 0.9rem;
--font-size-n: 1rem;
--font-size-m: 1.12rem;
--font-size-l: 1.5rem;
--font-size-xl: 2rem;
--font-size-xxl: 2.3rem;

/* Font weight*/
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-semibold: 600;
--font-weight-bold: 700;

/* Border radius*/
--border-radius-s: 8px;
--border-radius-m: 30px;
--border-radius-circle: 50%;

/* Site max width*/
--site-max-width: 1300px;

}

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

/* Make page a column layout so header takes natural height
   and main expands to fill the remaining viewport. This avoids
   hard-coded "calc(100vh - Xpx)" math that can lead to gaps. */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto; /* allow main to grow and fill remaining space */
}
/* Navbar styling */

/* ===============================
   NAVBAR LOGO (SQUARE, OVERFLOW)
================================ */

.navbar {
    display: flex;
    align-items: center;
    height: 80px;
    background: var(--primary-color);
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;

    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-logo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px; /* MATCH container rounding */
    background: #fff;
    padding: 3px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    top: 8px;

}



.nav-logo img:hover {
    transform: translateY(-2px);
    transition: transform 0.25s ease;
}

.logo-text {
    margin-left: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color); /* FIX: was dark on blue */
    white-space: nowrap;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-logo img {
        width: 72px;
        height: 72px;
        top: 4px;
    }

    .logo-text {
        display: none;
    }
}



/* Optional: make text slightly muted for premium look */
.logo-text {
    opacity: 0.9;
}

/* Hide text on smaller screens if needed */
@media (max-width: 768px) {
    .logo-text {
        display: none;
    }
}


/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu {
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Menu links */
.nav-link {
    position: relative;
    color: var(--white-color);
    font-size: var(--font-size-s);
    font-weight: var(--font-weight-medium);
    padding: 8px 6px;
    transition: color 0.3s ease;
}
/* Hover effect – clean & modern */
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}


.navbar .nav-menu .nav-link:hover::after {
    width: 60%;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 20px; /* space from menu */
}

.nav-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-social a:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-social {
        display: none;
    }
}

/* ===============================
   MOBILE NAVBAR ONLY
   (Desktop remains untouched)
================================ */

.nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu {
        z-index: 2000;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    /* Show hamburger */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

    .nav-toggle span {
        width: 26px;
        height: 3px;
        background: var(--white-color);
        border-radius: 2px;
        transition: 0.3s ease;
    }

    /* Hide menu by default */
    .nav-menu {
        position: absolute;
        top: 80px; /* navbar height */
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 0;
        display: none;
    }

    /* Show menu when active */
    .nav-menu.active {
        display: flex;
    }

    /* Bigger tap targets */
    .nav-link {
        font-size: 1.05rem;
        padding: 12px 0;
    }
}

/* Active menu item */


/*Styling for whole site*/
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

