@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@100;200;300;400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    color: #333;
}

.navbar .logo {
    max-height: 40px;
    width: auto;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-links {
    list-style-type: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.hero {
    position: relative;
    background-image: url("/images/bg-3.jpg"); 
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.2; 
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #be7356;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}

.cta-button-2 {
    background-color: #fff2ed;
    padding: 15px 30px;
    font-size: 16px;
    color: #be7356;
    border: 1px solid #be7356;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
}

.cta-button-2:hover {
    background-color: #be7356;
    color: white;
}

.cta-button:hover {
    background-color: #e7825a;
}

.intro {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

.about {
    padding: 60px 20px;
    text-align: center;
    /* background-color: #fff; */
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: justify;
    padding: 0px 20px;
}

.about p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: justify;
    padding: 0px 20px;
}

.motto {
    font-size: 15px;
    font-style: italic;
    color: #000;
    border-left: 4px solid #000;
    padding-left: 20px;
    margin-bottom: 30px;
}

.show-on-mobile {
    display: none;
}

.show-on-desktop {
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    position: relative;
    z-index: 1100;
}

.footer {
    bottom: 0;
    position: absolute;
    width: 100%;
    background-color: #704233;
    color: white;
    font-size: 12px;
    padding: 20px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-links a img {
    width: 100%;
    height: 100%;
    display: block;
}

.social-links a:hover {
    transform: scale(1.3);
}


.video-container {
    margin: 20px auto;
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.signature {
    /* float: right; */
    /* font-family: serif; */
    font-weight: 500;
    font-size: 18px;
    margin-right: 40px;
    text-align: right;
    line-height: 1.9rem;
}

.president {
    max-width: 200px;
    width: auto;
    background-color: #be7356;
    border-radius: 15px 0 15px 0;
    height: auto;
    margin-left: 40px;
    float: left;
}

.address {
    background-color: #fdf7f5;
    padding: 60px 40px;
    text-align: center;
    color: black;
    padding-bottom: 150px;
}

.address ul {
    text-align: justify;
    line-height: 1.6rem;
    padding: 0px 60px;
}

.address-bullets {
    list-style-type: decimal;   
}

.address-text {
    padding: 0px 40px;
    text-align: justify;
    line-height: 1.6rem;
}

.address h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.logo-small {
    display: none;
}


@media (max-width: 768px) {
    .values {
        flex-direction: column;
        gap: 30px;
    }

    .navbar {
        padding: 10px 20px;
    }

    .navbar .logo {
        font-size: 1.5rem;
    }

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

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links a {
        padding: 10px 20px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
    }
    
    .nav-links a:hover {
        padding: 15px 20px;
        background-color: #f4f4f9;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        width: 250px;
        background-color: #fff;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        padding-top: 25px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .nav-links.show {
        left: 0; 
    }

    .logo-small {
        display: block;
        max-height: 40px;
        width: 50px;
        margin-left: 20px;
        margin-bottom: 30px;
    }

    .show-on-mobile {
        display: block;
    }

    .show-on-desktop {
        display: none;
    }

    .footer {
        text-align: center;
        padding: 20px;
        background-color: #704233;
        color: white;
        font-size: 14px;
        position: relative;
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-links {
        margin-bottom: 15px;
        display: flex;
        gap: 15px;
    }
    
    .social-links a {
        display: inline-block;
        width: 25px;
        height: 25px;
        transition: transform 0.3s ease;
    }
    
    .social-links a img {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .social-links a:hover {
        transform: scale(1.2);
    }

    .intro p {
        font-size: 16px;
        padding: 0px 10px;
    }

    .about p {
        font-size: 16px;
        padding: 0px 10px;
    }

    .address {
        padding: 60px 20px;
    }

    .video-container {
        margin: 0px;
    }

    .address-text {
        padding: 0px 10px;
    }

    .address ul {
        padding: 0px 30px;
    }

    .signature {
        margin-right: 10px;
    }

    .president {
        max-width: 250px;
    }
}

