/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    background-color: black;
    color: aliceblue;
    overflow-x: hidden;
    scrollbar-width: smooth;
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.navigationbar a {
    position: relative;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.navigationbar a:hover,
.navigationbar a.on {
    background: white;
    color: black;
}

.navigationbar a.nav-ctg {
    background: #4E90A0ed;
    color: white;
    padding: 10px 16px;
}
/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Style for menu icon */
.menu-icon {
    display: none;
    font-size: 2em;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1100;
}

.menu-icon i {
    transition: opacity 0.3s ease-in-out;
}

/* Default state: Show hamburger, hide close */
.menu-icon .fa-bars {
    display: block;
}
.menu-icon .fa-times {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.95)), url("../../assets/bg-map.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 50px;
}

.hero h1 {
    font-size: 3em;
    font-weight: bold;
    /* text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2); */
}

.hero p {
    font-size: 1.2em;
    /* max-width: 600px; */
    margin-top: 15px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Call to Action */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: #4E90A0ed;
    border-radius: 25px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #3c6e7bed;
    scale: 1.1;
}

/* Main Content */
main {
    /* max-width: 900px; */
    margin: 80px;
    padding: 40px;
    background: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: left;
}

h3 {
    color: #1dbf73;
    font-size: 28px;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    font-size: 18px;
    padding: 8px 0;
}

ul li::before {
    content: "✔";
    color: #1dbf73;
    font-weight: bold;
    margin-right: 10px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.9);
    color: #bbb;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust hero text */
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

    /* Make nav responsive */
    .menu-icon {
        display: block;
    }

    .navigationbar {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        display: none;
        padding: 10px;
    }

    .navigationbar a {
        display: block;
        padding: 15px;
        text-align: center;
    }

    /* Toggle menu */
    #menu-toggle:checked ~ .menu-icon .fa-bars {
        display: none;
    }

    #menu-toggle:checked ~ .menu-icon .fa-times {
        display: block;
    }

    #menu-toggle:checked ~ .navigationbar {
        display: flex;
    }
}
