body {
    background-color: rgb(220, 164, 52);
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
}

/*------------------------------------------------NAVBAR----------------------------------------*/


        .nav {
            background-color: #002147;
            z-index: 0;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0px 3px 65px 0px rgba(0, 0, 0, 0.856);
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
        }

        .logo img {
            width: 200px;
            height: auto;
        }

        .menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 20px;
        }

        .menu li {
            display: inline;
        }

        .menu a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        .hamburger {
            display: none;
            font-size: 30px;
            color: white;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .menu {
                display: none;
                flex-direction: column;
                gap: 10px;
                position: absolute;
                top: 60px;
                right: 30px;
                background-color: #002147;
                padding: 10px;
                border-radius: 5px;
            }

            .menu.active {
                display: flex;
            }

            .hamburger {
                display: block;
            }
        }
/*------------------------------------------------MAIN----------------------------------------*/
.main {
    background-image: url("images/about.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px; /* Adjust for fixed navbar */
}

.main .main_content {
    width: 80%;
    max-width: 600px;
}

.main .main_content h2 {
    color: rgb(235, 228, 26);
    font-size: 2.2em;
    font-weight: bolder;
}

.main .main_content .btn a {
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    background-color: rgba(23, 222, 215, 0.774);
    color: white;
    border: 2px solid rgba(0, 0, 0, 0.856);
    transition: 0.5s;
}

.main .main_content .btn a:hover {
    background-color: rgba(255, 255, 255, 0.527);
    color: rgb(37, 0, 19);
    border: 4px solid rgb(37, 0, 19);
    transition: 0.5s;
}

/*--------------------------------------------DONATE----------------------------------------*/

.donate {
    background-image: url("images/bg_donate_page.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.donate .donate_container {
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

button {
    background-color: rgb(32, 195, 14);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: rgb(28, 166, 12);
}

.donate .donate_container h1 {
    color: rgb(13, 242, 63);
    font-size: 2.5em;
    margin-bottom: 20px;
}

.donate .donate_container p {
    font-size: 1.2em;
    width: 80%;
    max-width: 600px;
    text-align: center;
    margin: 20px auto;
    line-height: 1.5;
}

.donate .side_btn a {
    text-decoration: none;
    font-size: 1em;
    padding: 10px 20px;
    font-weight: bold;
    color: white;
    border: 2px double whitesmoke;
    transition: 0.5s;
    border-radius: 5px;
}

.donate .side_btn a:hover {
    background-color: white;
    color: black;
    font-weight: bolder;
    border: none;
    border: 4px solid green;
    transition: 0.5s;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .donate {
        padding: 30px 15px;
    }

    .donate .donate_container {
        padding: 30px;
        margin: 15px;
    }

    .donate .donate_container h1 {
        font-size: 2em;
    }

    .donate .donate_container p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .donate {
        padding: 20px 10px;
    }

    .donate .donate_container {
        padding: 20px;
        margin: 10px;
    }

    .donate .donate_container h1 {
        font-size: 1.8em;
    }

    .donate .donate_container p {
        font-size: 1em;
        width: 90%;
    }

    .donate .side_btn a {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .donate {
        padding: 15px 5px;
    }

    .donate .donate_container {
        padding: 15px;
        margin: 5px;
        border-radius: 10px;
    }

    .donate .donate_container h1 {
        font-size: 1.5em;
    }

    .donate .donate_container p {
        font-size: 0.9em;
        width: 100%;
    }

    .donate .side_btn a {
        font-size: 0.8em;
        padding: 6px 12px;
    }
}

/*------------------------------------------------SIDE----------------------------------------*/
.side {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.966);
    color: white;
    text-align: center;
    padding: 20px;
}

.side .left,
.side .right {
    width: 100%;
}

.side .left img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.side .right {
    margin-top: 20px;
}

.side .right h2 {
    font-size: 2em;
}

.side .right p {
    margin: 10px auto;
    width: 90%;
    font-size: 1.1em;
}

.side .right .side_btn a {
    display: inline-block;
    text-decoration: none;
    font-size: 1em;
    padding: 10px 20px;
    font-weight: bold;
    color: white;
    border: 2px double whitesmoke;
    transition: 0.5s;
}

.side .right .side_btn a:hover {
    background-color: white;
    color: black;
    font-weight: bolder;
    border: none;
    border: 4px solid green;
    transition: 0.5s;
}

/*------------------------------------------------PRODUCTS/Project----------------------------------------*/
.product {
    background-color: rgb(210, 187, 187);
    padding: 40px 20px;
}

.product h2 {
    text-align: center;
    color: green;
    font-size: 2em;
}

.product .product_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product .item {
    background-color: whitesmoke;
    width: 90%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product .item:hover {
    transform: translateY(-10px);
}

.product .item_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product .item_img img {
    width: 100%;
    height: auto;
}

.product .item_content {
    padding: 15px;
    text-align: center;
}

.product .item_content h3 {
    font-size: 1.5em;
    color: green;
}

.product .item_content p {
    font-size: 1em;
    color: black;
}

/*------------------------------------------------FOOTER----------------------------------------*/
footer {
    background-color: black;
    color: white;
    padding: 20px 10px;
    text-align: center;
}

footer .pages {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

footer .pages a {
    text-decoration: none;
    margin: 0 10px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

footer .pages a:hover {
    color: green;
}











