/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Lato:wght@400;700&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 30px; /* more space between menu items */
}

.nav-links a {
    font-size: 1rem;
    padding: 8px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #e91e63;
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    text-align: center;
    overflow: hidden;
}


.hero-content {
    position: absolute;
    bottom: 50px; /* Distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.4); /* Optional dark overlay */
    padding: 20px;
    border-radius: 10px;
    max-width: 90%; /* Prevents text from stretching too wide */
}


.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-primary {
    background: #e91e63;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #c2185b;
}

.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills container */
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Smooth fade */
}

.hero-slider img.active {
    opacity: 1;
    z-index: 1;
}

/* About */
.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    text-align: justify;
}

.btn-secondary {
    background: #333;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #555;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Gallery Intro */
.gallery-intro {
    text-align: center;
    padding: 40px 20px;
}

.gallery-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Masonry Gallery */
.gallery-grid {
    column-count: 3;
    column-gap: 15px;
}

.gallery-grid img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 20px 0;
    text-align: center;
}

.footer-links, .footer-social, .footer-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 0;
}

.footer-social a {
    font-size: 1.3rem;
    color: #333;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #e91e63;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 10px;
        border-radius: 5px;
    }

    #navbar.active .nav-links {
        display: flex;
    }

    .gallery-grid {
        column-count: 1;
    }
}









/* About Hero Section */
.about-hero {
    position: relative;
    background: rgb(0, 0, 0);
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero .hero-overlay {
   
    padding: 30px;
    border-radius: 10px;
    color: #fff;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2rem;
}

/* About Content Split */
.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
}

.about-text, .about-image {
    flex: 1 1 50%;
    max-width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    text-align: justify;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-text ul li i {
    color: #e91e63;
    margin-right: 8px;
}

.about-btn {
    background-color: #e91e63;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.about-btn:hover {
    background-color: #c2185b;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        max-width: 100%;
    }

    .about-hero h1 {
        font-size: 2rem;
    }
}
