/* General Styling */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    
    background-position: top center;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    /* background: url('images/AMWosh_Cover_Photo.jpg') no-repeat center center fixed; */
    background-size: cover;
}
.home-page {
    background: url('images/AMWosh_Cover_Photo.jpg') no-repeat center center fixed;
    background-size: cover;
}
.about-page {
    background-color: #faf2f3;
    background-size: cover;
}
.program-page {
    background-color: #f8d7da;
    background-size: cover;
}
.blog-page {
    background-color: #f8d7da;
    background-size: cover;
}
.video-page {
    background-color: #f8d7da;
    background-size: cover;
}
.sustain-btn {
    background: none; 
    color: #0d3b1e; /* Keeps the text color */
    padding: 8px 20px;
    /* border: 2px solid #0d3b1e; Add a border around the button */
    /* border-radius: 5px; */
    margin-right: 20px; /* Space the button from the right side */
}
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8d7da;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.logo img {
    height: 50px;
    vertical-align: left;
    border-radius: 50%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 20px;
    justify-content: space-between;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-menu div {
    width: 30px;
    height: 4px;
    background-color: black; /* Make it black */
    border-radius: 5px;
}
/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: #0d3b1e;
    font-weight: bold;
    padding: 10px 15px;
}

/* Sustain Button */
.sustain-btn {
    background: none; 
    color: #0d3b1e; /* Keeps the text color */
    padding: 8px 20px;
    /* border: 2px solid #0d3b1e; Add a border around the button */
    /* border-radius: 5px; */
    margin-right: 20px; /* Space the button from the right side */
}


/* Main Content */
main {
    flex-grow: 1;
    padding: 20px;
    width: 100%;
    margin-top: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Princess Card Design */
.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(255, 102, 178, 0.3);
    padding: 20px;
    margin: 20px auto;
    max-width: 500px;
    border: 2px solid #ff99cc;
}

.card h2 {
    color: #ff66b2;
    font-size: 24px;
}

/* Footer */
.footer {
    background-color: #f8d7da;
    padding: 15px 0;
    text-align: center;
    width: 100vw;
    max-width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    font-size: 24px;
    color: #444;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #d63384;
}

.footer-content p {
    font-size: 14px;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}
.about-container {
    display: flex; /* Enables Flexbox */
    align-items: center; /* Aligns items vertically */
    justify-content: space-between; /* Adds space between the image and paragraph */
    gap: 20px; /* Adds spacing between the image and paragraph */
    padding: 20px;
}
.image-container {
    position: relative;
    width: 100%;
    height: 300px; /* Fixed height for desktop */
    overflow: hidden;
}
.about-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
    align-items: center;
}
.about-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    z-index: 2;
}
.vision {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Add space between image and text */
    gap: 20px; /* Space between image and text */
    padding: 20px;
    text-align: center;
}

.vision img {
    max-width: 45%; /* Image takes 45% of the container */
    height: auto;
    text-align: center;
    margin: 0 auto; /* Center the image */
    display: block; /* Ensures the image behaves like a block element */
}
.vision-text {
    max-width: 90%;
    text-align: center;
    margin: 0 auto; /* Center the block */
}

.mission p,
.vision p {
    max-width: 100%;
    text-align: center;
    margin: 0 auto; /* Center the paragraph block */
}
.mission {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Add space between image and text */
    gap: 20px; /* Space between image and text */
    padding: 20px;
    text-align: center;
}

.mission img {
    max-width: 45%; /* Image takes 45% of the container */
    height: auto;
    text-align: center;
    margin: 0 auto; /* Center the image */
    display: block; /* Ensures the image behaves like a block element */
}

.mission-text {
    max-width: 90%;
    text-align: center;
    margin: 0 auto; /* Center the block */
}

.mission h2 {
    color: #0c0c0c;
    font-size: 24px;
    margin-bottom: 10px;
}

.container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #efc6da;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%; /* Place it below the header */
        left: 50%;
        width: 200px; /* Give it a width */
        background: white;
        padding: 10px;
        display: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .nav-links a {
        display: block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
    .logo img {
        height: 40px;
    }

    .card {
        max-width: 90%;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-content p {
        font-size: 12px;
    }

    .hamburger-menu {
        display: flex;
    }

    .sustain-btn {
        margin-right: 10px;
        width: 100%;
        text-align: left;
        padding-left: 15px;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .about-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally */
        text-align: center; /* Center-align text */
    }

    .about-container img {
        max-width: 100%; /* Adjust image size for smaller screens */
    }

    .about-container p {
        max-width: 90%; /* Adjust paragraph width */
    }
    .vision {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        text-align: center;
    }
    
    .vision img {
        max-width: 80%; /* Resize image for smaller screens */
        margin-bottom: 15px; /* Add space between image and text */
    }
    
    .vision-text {
        max-width: 90%;
    }
    
    .vision p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
    }    
    
    .mission {
        flex-direction: column; /* Stack image and text vertically */
        align-items: center;
        text-align: center;
    }
    
    .mission img {
        max-width: 80%; /* Adjust image size for smaller screens */
    }
    
    .mission p {
        max-width: 90%; /* Adjust paragraph width */
        align-items: center;
        text-align: center;
    }
    .image-container {
        height: 200px; /* Smaller height on mobile */
    }
    
    .about-title {
        font-size: 2.5rem; /* Smaller font on mobile */
    }
    
}
