/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-img {
    height: 80px;
    width: auto;
}
nav ul {
    display: flex;
}
nav ul li {
    margin-left: 2rem;
}
nav ul li a {
    font-weight: bold;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #c2185b;
}
.nav-btn {
    background-color: #c2185b;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.nav-btn:hover {
    background-color: #880e4f;
    color: #fff;
}
.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Festival Hero Section */
#festival {
    height: 100vh;
    background-image: url('images/festival-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f8f8; /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}
.festival-content {
    max-width: 1000px;
    margin: 0 auto;
}
.festival-content h1 {
    font-size: 3rem;
    padding-top: 30rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.festival-content p {
    font-size: 1.7rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.cta-btn {
    background-color: #c2185b;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-bottom: 5rem;
}
.cta-btn:hover {
    background-color: #880e4f;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    overflow: hidden;
}
.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
}
.carousel-prev {
    left: 10px;
}
.carousel-next {
    right: 10px;
}
.carousel-prev:hover, .carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Event Details Section */
#event-details {
    padding: 5rem 1rem;
    padding-top: 10rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f8f8;
}
h2 {
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.detail-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
.detail-item:hover {
    transform: translateY(-10px);
}
.detail-item h3 {
    margin-bottom: 1rem;
    color: #c2185b;
}
.detail-item p {
    color: #666;
}

/* Contact Section */
#contact {
    padding: 3rem 1rem;
    max-width: 1500px;
    margin: 0 auto;
    display: flex; /* Make the section a flex container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.contact-btn {
    background-color: #c2185b;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center; /* Ensure text inside the button is centered */
    text-decoration: none; /* Remove underline from the link */
}
#contact2{
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-bottom: 60px;
}
.contact-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}
/* .contact-item:hover {
    transform: translateY(-10px);
} */
.contact-item h3 {
    margin-bottom: 1rem;
    color: #c2185b;
}
.contact-item p {
    color: #666;
}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin: 1rem 0;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
    .festival-content h1 {
        font-size: 2rem;
    }
}