@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

@font-face {
    font-family: 'MinionPro';
    src: url('MinionPro-Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.4s ease-in-out;
    backdrop-filter: blur(10px);
    background-color: rgba(46, 125, 50, 0);
}

.nav-scrolled {
    background-color: rgba(46, 125, 50, 1);
    backdrop-filter: none;
}

/* Logo */
nav h1 {
    font-family: 'MinionPro', serif;
    font-size: 24px;
    color: #fff;
    margin: 0;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-links li a:hover {
    background-color: #1B5E20;
}

/* Mobile Navigation styles */
.hamburger {
    display: none; /* Initially hidden */
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-right: 50px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(46, 125, 50, 0.9);
    width: 200px;
    border-radius: 5px;
    padding: 10px;
}

.mobile-nav a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.mobile-nav a:hover {
    background: #1B5E20;
    border-radius: 5px;
}



        .section-title {
            font-size: 32px;
            margin-bottom: 30px;
            color: #333;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #388E3C;
        }

@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide the regular navigation links */
    }

    .hamburger {
        display: block; /* Show the hamburger menu */
    }

    .mobile-nav {
        display: none; /* Initially hide the mobile nav */
    }

    .mobile-nav.active {
        display: flex; /* Show the mobile nav when active */
    }
}

        header {
            height: calc(100vh - 60px);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 60px;
            overflow: hidden;
        }

        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 110%;
            height: 110%;
            background: url("https://images.squarespace-cdn.com/content/v1/65f42fd4e0bbe110cb5db6fd/c231378f-ca55-42f4-81b1-2aa959728116/Screenshot+2024-05-31+at+9.01.51%E2%80%AFPM.jpg") center/cover no-repeat;
            filter: blur(5px);
            transform: scale(1.1);
            z-index: -1;
        }

        .header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
            border-radius: 10px;
            background-color: rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 1s ease-out forwards 0.5s;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .welcome-box {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        /* Buttons */
        .btn-container {
            display: flex;
            gap: 15px;
        }

        .btn {
            background-color: #388E3C;
            color: white;
            border: none;
            padding: 12px 20px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn:hover {
            background-color: #1B5E20;
        }
        
        footer h1 {
            font-weight: bold;
        }
        
        footer img {
          width: 150px;
          height: auto;
          margin-top: 25px;
        }
        
        footer p {
          font-size: 32px;
          color: #316FF6;
          cursor: pointer;
        }
        
        footer a {
          all: unset;
          cursor: pointer;
        }
        
        section {
          border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        }
        ul {
      list-style-type: disc;
    }
    li {
      margin-bottom: 10px;
    }
    .date {
      font-weight: bold;
      color: #2c3e50;
    }
