:root {
    --primary-color: #FF69B4;
    --secondary-color: #FF1493;
    --background-color: #FFF0F5;
    --text-color: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
}

h2 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-top: 0;
}

/* Add these styles to your CSS */

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    perspective: 1000px; /* This creates a 3D space for our flap effect */
}

.photo-wrapper {
    position: relative;
    transform-style: preserve-3d;
    visibility: hidden;
}

.photo-wrapper.aos-animate {
    visibility: visible;
}

/* Base flap styles */
.photo-flap {
    position: relative;
    transform-origin: top;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateX(-90deg);
}

/* Animated state */
.aos-animate .photo-flap {
    transform: rotateX(0deg);
}

/* Actual photo styles */
.photo-flap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Hover effect */
.photo-flap:hover img {
    transform: scale(1.05);
}

/* Create a staggered effect for the flaps */
.photo-wrapper:nth-child(odd) .photo-flap {
    transform-origin: left top;
    transform: rotateY(-90deg);
}

.aos-animate .photo-wrapper:nth-child(odd) .photo-flap {
    transform: rotateY(0deg);
}

/* Add some delay for a cascade effect */
@media (min-width: 768px) {
    .photo-wrapper:nth-child(2) { transition-delay: 0.1s; }
    .photo-wrapper:nth-child(3) { transition-delay: 0.2s; }
    .photo-wrapper:nth-child(4) { transition-delay: 0.3s; }
    .photo-wrapper:nth-child(5) { transition-delay: 0.4s; }
    .photo-wrapper:nth-child(6) { transition-delay: 0.5s; }
    .photo-wrapper:nth-child(7) { transition-delay: 0.6s; }
    .photo-wrapper:nth-child(8) { transition-delay: 0.7s; }
    .photo-wrapper:nth-child(9) { transition-delay: 0.8s; }
}

/* Add to your existing CSS */
.see-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.see-more-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.see-more-btn span {
    margin-right: 8px;
}

.see-more-btn i {
    font-size: 0.8em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Additional styles for better responsiveness */
@media (max-width: 768px) {
    .see-more-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

.photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top; /* This ensures the top of the image is always visible */
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photo:hover {
    transform: scale(1.05);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
}

.lightbox-content {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 50px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.8);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info, .contact-map {
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

#contact a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    #contact {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }

    .contact-info, .contact-map {
        width: 45%;
    }
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-logo .logo {
    margin-right: 10px;
}

.nav-logo span {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .nav-logo span {
        font-size: 1rem;
    }

    .nav-logo .logo {
        width: 30px;
        height: 30px;
    }
}

.falling-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.heart {
    position: absolute;
    font-size: 20px;
    color: var(--primary-color);
    opacity: 0.5;
    animation: fall linear;
}

@keyframes fall {
    0% { transform: translateY(-100%) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 2;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

nav {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 1rem;
}

.nav-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.jumbotron {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.jumbotron-content {
    z-index: 2;
    padding: 2rem;
    position: relative;
}

.jumbotron h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.jumbotron p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.jumbotron-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.jumbotron-bg.active {
    opacity: 1;
}

.jumbotron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2.5rem;
    }

    .jumbotron p {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .jumbotron-bg {
        background-size: 100% auto;
        background-position: center top;
    }
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .jumbotron {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .jumbotron-content {
        z-index: 2;
        padding: 2rem;
        position: relative;
    }
    
    .jumbotron h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .jumbotron p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .jumbotron-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .jumbotron-bg.active {
        opacity: 1;
    }
    
    /* New overlay style */
    .jumbotron::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
        z-index: 1;
    } }
    /* Add these to your existing styles.css */

/* Smooth scroll behavior for the entire page */
html {
    scroll-behavior: smooth;
}

/* Base transition for all sections */
.section {
    transition: all 0.5s ease-in-out;
}

/* Optional: Add some custom animations */
[data-aos="custom-fade-up"] {
    opacity: 0;
    transform: translateY(100px);
    transition-property: transform, opacity;
}

[data-aos="custom-fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure animations work well on mobile */
@media (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}

/* Optional: Add a subtle scale effect to photos on hover */
.photo-gallery .photo {
    transition: transform 0.3s ease-in-out;
}

.photo-gallery .photo:hover {
    transform: scale(1.05);
}