/* ====== BASE LAYOUT ====== */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
    background: url('/images/background_img.jpg') no-repeat center center fixed;
    background-size: cover;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ====== TRANSPARENT NAVBAR ====== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.navbar {
    background: rgba(0, 0, 0, 0.15) !important; /* subtle dark tint */
    backdrop-filter: blur(4px); /* soft background blur for readability */
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    padding: 0.7rem 2rem;
}

/* Slightly darken on scroll for contrast */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(8px);
}

/* ====== BRAND (LOGO TEXT) ====== */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 200, 130, 0.4);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: rgba(255, 220, 180, 1) !important;
    text-shadow: 0 0 12px rgba(255, 180, 80, 0.8);
}

/* ====== NAV LINKS ====== */
.nav-link {
    color: rgba(255, 220, 180, 0.8) !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 0 8px rgba(255, 180, 80, 0.7);
}

.nav-link.active {
    color: rgba(255, 255, 255, 1) !important;
    text-shadow: 0 0 10px rgba(255, 200, 150, 0.8);
}
/* ====== NAV DROPDOWN (LOGO TEXT) ====== */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(253, 223, 192, 0.3); /* Semi-transparent white background */
    backdrop-filter: blur(1px);
    min-width: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 25px;
    right: 0;
}


.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 15px; /* space between image and text */
    color: rgba(255, 220, 180, 0.8) !important;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(253, 223, 192, .5);
    color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    /* Bit wonky but it works... Might need to upgrade it later */
    .navbar_text {
        color: rgba(255, 255, 255, 1) !important;
        text-shadow: 0 0 8px rgba(255, 180, 80, 0.7);
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.navbar_img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

#GIMI_img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

.navbar_text {
    margin: 0;
    flex: 1;
    text-align: left;
    line-height: 1.4;
    color: rgba(253, 223, 192, 0.95);
}



/* ====== BACKGROUND SECTION ====== */
.bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

/* ====== MAIN CONTENT ====== */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
}

/* Title */
h1 {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.5rem;
}

/* Subtitle */
.subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

/* ====== TWO COLUMN CONTENT ====== */
.content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.column {
    flex: 1;
    min-width: 300px;
}

.body-text {
    text-align: justify;
    text-justify: inter-word;
}

/* ====== LINK COLORS ====== */
a {
    color: rgba(255, 200, 130, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: rgba(255, 180, 80, 1);
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3 {
    color: rgba(255, 220, 180, 0.95);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}