/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFD1DC;
    color: #5B3A29;
    text-align: center;
    scroll-snap-type: y mandatory; /* Enables full-page scrolling */
    overflow-y: scroll;
    height: 100vh;
}

/* Sections - Fullscreen and Snap Scrolling */
.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh; /* Full screen height */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    scroll-snap-align: start; /* Ensures section snapping */
}

/* Show the active section */
.content-section.active {
    opacity: 1;
}


/* Navigation Bar */
nav {
    background-color: #5B3A29;
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 10px 0;
}

/* Navigation List */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

/* Navigation Links */
.nav-list a {
    background: #FFC0CB;
    box-shadow: 0 4px 6px rgba(255, 20, 147, 0.5);
    color: #5A2D1A;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
}

.nav-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 20, 147, 0.6);
}

/* Sections - Hide all sections initially */
.content-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Show the active section */
.content-section.active {
    display: flex;
    opacity: 1;
}

/* Logo */
.logo {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Headings */
h1 {
    font-size: 32px;
    color: #5B3A29;
    margin-bottom: 10px;
}

h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #5B3A29;
}

p {
    font-size: 18px;
    color: #754C34;
    max-width: 80%;
    margin: 0 auto;
}

/* Calendar */
.calendar-container {
    background: #FFB6C1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 90%;
    max-width: 600px;
}

.calendar {
    width: 100%;
    border-collapse: collapse;
}

.calendar th, .calendar td {
    padding: 10px;
    text-align: center;
    border: 1px solid #5B3A29;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.08);
}

/* Objectives Section */
.objectives-container {
    display: flex;
    justify-content: center; /* Center the row */
    align-items: center;
    gap: 30px; /* Space between each objective */
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Each objective */
.objective-item {
    display: flex;
    flex-direction: column; /* Stack icon on top, text below */
    align-items: center;
    text-align: center;
    background: #FFB6C1;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
    width: 30%; /* Adjusts width for 3 items in a row */
    max-width: 270px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect (Expanding/Floating) */
.objective-item:hover {
    transform: scale(1.1); /* Makes it slightly bigger */
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Icons */
.objective-item img {
    width: 120px; /* Bigger icons */
    height: 120px;
    border-radius: 10px;
    object-fit: contain; /* Keeps image inside without distortion */
}

/* Text */
.objective-item p {
    font-size: 16px;
    color: #5B3A29;
    margin-top: 10px; /* Space between icon and text */
}




/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 55px;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img:hover {
    transform: scale(1.15);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
}
