/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: pink;
    color:black;
    font-style:italic;
}

/* Header and Navigation */
header {
    background-color:pink;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position:static;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    max-height: 150px; /* Adjust as needed */
    width: 100px;
    height: 100px;
    display:-moz-box;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color:black;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color:red;
}

.contact-button {
    background-color:black;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color:grey;
}

/* Home Section */
.home {
    background: url('elegant-floral-wedding-backdrop-wallpaper_756748-2488.avif') no-repeat center center/cover; /* Replace with your image */
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color:black;
    text-align: center;
    position: relative;
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:balck 
     /* Dark overlay for readability */
}

.home-content {
    z-index: 1; /* Ensure content is above the overlay */
    padding: 2rem;
    max-width: 800px;
}

.home-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.home-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


/* Wedding Section */
.wedding {
    background: url('bg2.jpg') no-repeat center center/cover;
    height: 60vh;
    position: relative;
    color:black ;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.wedding-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:none; /* Darker overlay for contrast */
}

.wedding-content {
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

.wedding-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Us Section */
.about {
    padding: 4rem 0;
    text-align: center;
    background-color:pink;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.about-content p {
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: #e44d26;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d13b1a;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        margin-top: 1rem;
        flex-direction: column;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }

    .home-content h1 {
        font-size: 2.5rem;
    }

    .gallery-item {
        width: 100%; /* Full width on smaller screens */
    }
}