@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --title-font: "Nerko One", cursive;
    --text-font: "Hanken Grotesk", sans-serif;
}

body {
    background-color: black;
    color: white;
    margin: 0;
    font-family: var(--text-font);
}

/* Default Navbar */
.navbar {
    color: #000000;
    overflow: hidden;
    padding: 10px 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    font-size: 18px;
}

.navbar ul li a:hover {
    background-color: #575757;
    border-radius: 4px;
}

/* Header */
h1 {
    text-align: center;
    font-size: 35px;
    font-family: var(--title-font);
}
.container h1{
    color: #43b6b6;
}
h2{
    color: #43b6b6;
}


/* Image Grid */
.image-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.image-box {
    border-radius: 20px;
    overflow: hidden;
}

.image-box img {
    width: 200px;
    height: 210px;
    border-radius: 20px;
    object-fit: cover;
    border: solid 3px #43b6b6;
}

/* About Section (Fully Centered) */
.about-section {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything horizontally */
    text-align: center; /* Ensures text is centered */
    border: solid 1px;
    border-radius: 10px;
}

.about-section h2 {
    font-family: var(--title-font);
    font-size: 28px;
}

.about-section p {
    font-size: 20px;
    line-height: 1.6; 
    padding: 5px;
}

/* Remove small dot from top-left and all unwanted list-style marks */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Remove any default checkbox and radio appearance */
input[type="checkbox"], input[type="radio"] {
    appearance: none;
    visibility: hidden;
}

/* Buttons */
.visit {
    color: white;
    background-color: #575757;
    width: 100px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #91C9FF;
    outline: none;
    background: transparent;
    transition: 0.3s ease-in-out; 
}

a {
    text-decoration: none;
}

.visit:hover {
    background: #4F95DA;
}

.BTN {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        display: none;
    }


    /* Hide default navbar on small screens */
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    /* Image grid in two columns */
    .image-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .image-box {
        width: 45%;
        margin-bottom: 20px;
    }

    /* Hamburger Menu */
    #menu-toggle {
        display: none;
    }

    .hamburger {
        display: block; /* Show hamburger menu only on mobile */
        position: fixed;
        top: 20px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
        z-index: 1001;
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #222;
        box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.3);
        transition: right 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    /* Show menu when checkbox is checked */
    #menu-toggle:checked + .hamburger + .mobile-nav {
        right: 0;
    }

    .mobile-nav ul {
        list-style-type: none;
        text-align: center;
    }

    .mobile-nav ul li {
        margin: 20px 0;
    }

    .mobile-nav ul li a {
        color: white;
        font-size: 20px;
    }

    .mobile-nav ul li a:hover {
        color: #4F95DA;
    }
}

/* Hide Hamburger on Large Screens */
@media screen and (min-width: 769px) {
    .hamburger,
    .mobile-nav {
        display: none;
    }
}

/* Default About Section Styles */
.about-section h2 {
    font-family: var(--title-font);
    font-size: 28px; /* Default font size */
}

.about-section p {
    font-size: 16px; /* Default font size */
    line-height: 1.6;
}

/* Responsive Design for About Section */
@media screen and (max-width: 768px) {
    /* Adjust font size for h2 in about section */
    .about-section h2 {
        font-size: 24px; /* Make it smaller on mobile */
    }

    /* Adjust font size for paragraph in about section */
    .about-section p {
        font-size: 16px; /* Make it smaller on mobile */
    }
}

