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

body{
    background-color: #f7f7f2;
}
 /* scroll2Dtop */
 
    /* Scroll to top button styles */
        #scrollToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        /* Show button when scrolled */
        #scrollToTop.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Hover effects */
        #scrollToTop:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }

        /* Active state */
        #scrollToTop:active {
            transform: translateY(0);
        }

        /* Alternative square button style */
        .square-btn {
            border-radius: 8px !important;
            width: 45px;
            height: 45px;
        }

        /* Alternative with icon */
        .arrow-up {
            font-size: 16px;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

      







/* Navigation - Same as index.html */
.navbar {
 background-color: #FFA6C9;
    padding: 0.5rem 0;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ddd;
}

.nav-link.active {
    color: black;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content
.main-content {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
} */

/* Gallery Header */
/* .gallery-header {
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    color: #DAA520;
    margin-bottom: 2rem;
    font-family: serif;
}

.page-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem auto;
} */

/* Gallery Section */
/* .gallery-section {
    padding: 40px 0 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
} */

/* Different aspect ratios for masonry effect */
/* .gallery-item:nth-child(3n+1) img {
    aspect-ratio: 3/4;
}

.gallery-item:nth-child(3n+2) img {
    aspect-ratio: 2/3;
}

.gallery-item:nth-child(3n+3) img {
    aspect-ratio: 4/3;
} */

/* Modal */
/* .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* .modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #DAA520;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover {
    color: #FFFFFF;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    background-color: rgba(218, 165, 32, 0.8);
    color: #000000;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #DAA520;
} */

/* Footer */



/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #444;
    }

    .nav-link:hover {
        background-color: #444;
    }
/* 
    .page-title {
        font-size: 2.5rem;
    }

    .page-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 16px;
    }

    .container {
        padding: 0 1rem;
    }

    .modal-content {
        padding: 10px;
    }

    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 30px;
    } */

    .nav-btn {
        font-size: 20px;
        padding: 8px 12px;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

 










/* gallery */
  .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            margin-top: 20px;
        }

        .title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #FF69B4;
            margin-bottom: 30px;
           
        }

        .description {
            font-size: 1.1rem;
            line-height: 1.8;
            color:#121212;
            max-width: 800px;
            margin: 0 auto;
            text-align: justify;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255,165,0,0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,165,0,0.1) 0%, rgba(255,165,0,0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        /* Special styling for different grid items */
        .gallery-item:nth-child(1) { grid-row: span 1; }
        .gallery-item:nth-child(2) { grid-row: span 1; }
        .gallery-item:nth-child(3) { grid-row: span 2; }
        .gallery-item:nth-child(4) { grid-row: span 2; }
        .gallery-item:nth-child(5) { grid-row: span 1; }
        .gallery-item:nth-child(6) { grid-row: span 1; }
        /* .gallery-item:nth-child(7) { grid-row: span 3; }
        .gallery-item:nth-child(8) { grid-row: span 3; } */
        .gallery-item:nth-child(9) { grid-row: span 1; }
        .gallery-item:nth-child(10) { grid-row: span 1; }
        .gallery-item:nth-child(11) { grid-row: span 1; }
        .gallery-item:nth-child(12) { grid-row: span 1; }
        .gallery-item:nth-child(13) { grid-row: span 2; }
        .gallery-item:nth-child(14) { grid-row: span 1; }
        .gallery-item:nth-child(15) { grid-row: span 1; }

        /* Adjust heights for spanning items */
        .gallery-item:nth-child(3) img,
        .gallery-item:nth-child(4) img,
        .gallery-item:nth-child(13) img {
            height: 400px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

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

            .description {
                font-size: 1rem;
                line-height: 1.6;
                padding: 0 10px;
            }

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

            .gallery-item {
                border-radius: 10px;
            }

            .gallery-item img {
                height: 200px;
            }

            /* Reset special styling for mobile */
            .gallery-item:nth-child(3) img,
            .gallery-item:nth-child(4) img,
            .gallery-item:nth-child(13) img {
                height: 200px;
            }

            .gallery-item:nth-child(n) {
                grid-row: span 1;
            }
        }

        @media (max-width: 480px) {
            .title {
                font-size: 2rem;
            }

            .description {
                font-size: 0.9rem;
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-item img {
                height: 180px;
            }
        }

        /* Lightbox modal */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(10px);
        }

        .lightbox-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #ffa500;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }

        .close:hover {
            color: #fff;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .gallery-item:nth-child(n) {
            animation-delay: calc(0.1s * var(--i));
        }






        
        /* fifth-container */
        
 