/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f0f0f;
    color: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --batman-black: #0f0f0f;
    --batman-charcoal: #1a1a1a;
    --batman-gray: #292929;
    --batman-gold: #ffd700;
    --batman-amber: #ffcc00;
    --text-white: #fafafa;
    --text-gray: #d1d5db;
}

/* Typography */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--batman-gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 768px;
    margin: 0 auto 3rem;
}

.text-gold {
    color: var(--batman-gold);
}

.text-amber {
    color: var(--batman-amber);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--batman-black);
    border-bottom: 1px solid var(--batman-gray);
    transition: all 0.3s ease;
}

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--batman-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-white {
    color: white;
}

.logo-amber {
    color: var(--batman-amber);
    font-size: 0.875rem;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop button {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.nav-desktop button:hover {
    color: var(--batman-gold);
}

.nav-cta {
    background-color: var(--batman-gold) !important;
    color: var(--batman-black) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--batman-amber) !important;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--batman-gray);
}

.mobile-menu button {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0;
    text-align: left;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.mobile-menu button:hover {
    color: var(--batman-gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--batman-black) 0%, var(--batman-charcoal) 50%, var(--batman-gray) 100%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./images/main.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.8) 0%, transparent 50%, rgba(15, 15, 15, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background-color: var(--batman-gold);
    color: var(--batman-black);
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

.btn-primary:hover {
    background-color: var(--batman-amber);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--batman-gold);
    padding: 1rem 2rem;
    border: 2px solid var(--batman-gold);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--batman-gold);
    color: var(--batman-black);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.chevron-down {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--batman-gold);
    border-bottom: 2px solid var(--batman-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--batman-charcoal) 0%, var(--batman-gray) 100%);
}

.about-content {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

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

.about-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--batman-gold);
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

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

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--batman-black);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--batman-gray);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 25px 50px -12px rgba(255, 215, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--batman-gold);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--batman-gray) 0%, var(--batman-charcoal) 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, transparent 100%);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
}

/* Rest of sections - continued in next part due to length limit */

/* Baraat Section */
.baraat {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--batman-charcoal) 0%, var(--batman-black) 100%);
}

.baraat-content {
    max-width: 1200px;
    margin: 0 auto;
}

.baraat-header {
    text-align: center;
    margin-bottom: 4rem;
}

.baraat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.baraat-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--batman-gold);
    margin-bottom: 1.5rem;
}

.baraat-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.baraat-text strong {
    color: var(--batman-gold);
}

.baraat-features {
    background-color: var(--batman-gray);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 1.5rem;
    border-radius: 1rem;
}

.baraat-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--batman-gold);
    margin-bottom: 1rem;
}

.baraat-features ul {
    list-style: none;
}

.baraat-features li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.baraat-image {
    position: relative;
}

.baraat-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

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

.baraat-decorations {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    font-size: 2rem;
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    padding: 0.75rem;
}

.celebration {
    top: 1rem;
    right: 1rem;
}

.crown {
    bottom: 1rem;
    left: 1rem;
}

.baraat-cta {
    text-align: center;
}

.baraat-cta p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.baraat-cta strong {
    color: var(--batman-gold);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--batman-black);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-list {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: linear-gradient(to right, var(--batman-charcoal) 0%, var(--batman-gray) 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    color: var(--batman-gold);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(41, 41, 41, 0.5);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--batman-gray) 0%, var(--batman-black) 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-info {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    background: linear-gradient(135deg, var(--batman-charcoal) 0%, var(--batman-gray) 100%);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--batman-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.contact-details h3 {
    color: var(--batman-gold);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--batman-gold);
}

.contact-details p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--batman-black);
    border-top: 1px solid var(--batman-gray);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--batman-gold);
    cursor: pointer;
}

.footer-text {
    color: #9ca3af;
}

.footer-text p {
    margin-bottom: 0.5rem;
}

.footer-text p:last-child {
    font-size: 0.875rem;
}

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 215, 0, 0.8);
    color: var(--batman-black);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    color: white;
    font-weight: 600;
}

.lightbox-counter {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
}

/* Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--batman-gold), 0 0 10px var(--batman-gold);
    }
    100% {
        box-shadow: 0 0 10px var(--batman-gold), 0 0 20px var(--batman-gold);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-slide-in {
    animation: slideIn 1s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .baraat-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2rem;
        grid-template-columns: 1fr;
    }
}
