/* ================= GLOBAL SETUP ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #991A02;
    color: white;
    overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between; /* Pushes Logo Left, Buttons Right */
    align-items: center;
    padding: 0 2rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-img {
    height: 80px;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 70px;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    margin-left: auto; /* Force-pins buttons to the right */
}

.nav-btn {
    text-decoration: none;
    color: #991A02;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-btn {
    color: #991A02;
}

/* Hover effect on the default Red Background */
.nav-btn:hover {
    background-color: rgba(52, 50, 50, 0.2);
    color: #991A02;
}

.nav-btn.active {
    background-color: #991A02;
    color: white;
}

.navbar.scrolled .nav-btn.active {
    background-color: #991A02;
    color: white;
}

/* ================= CONTENT LAYOUT ================= */
.vision-section {
    padding: 140px 8% 80px;
}

.vision-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.vision-heading h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.vision-roadmap {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    padding-left: 30px;
    position: relative;
}

/* Vertical Line */
.vision-roadmap::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.4);
}

.vision-card {
    position: relative;
    padding-left: 30px;
}

/* Circle Marker */
.vision-card::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
}

.vision-card img {
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .vision-container { grid-template-columns: 1fr; }
}
/* ================= MOBILE MENU STYLES ================= */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 3000;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #991A02;
    transition: 0.3s;
}

/* Transitions hamburger to 'X' when active */
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    backdrop-filter: blur(20px);
    top: 0;
    left: 0;
    height: 100vh;
    width: 80vw;
    max-width: 320px;
    background-color: rgb(48, 47, 47, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding-left: 2rem;
    transform: translateX(-100%); /* Start hidden off-screen */
    transition: transform 0.5s ease;
    z-index: 2500;
}

.mobile-menu.open {
    transform: translateX(0); /* Slide in */
}

.mobile-menu a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 768px) {
    .nav-buttons {
        display: none; /* Hide desktop links */
    }

    .hamburger {
        display: flex; /* Show hamburger */
    }

    .vision-container {
        grid-template-columns: 1fr; /* Stack heading and roadmap vertically */
        gap: 40px;
    }

    .vision-heading h1 {
        font-size: 2.5rem; /* Scale down heading for smaller screens */
    }

    .vision-section {
        padding: 120px 5% 60px; /* Reduce padding on mobile */
    }
}