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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: white;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

/* Marquee */
.marquee-bar {
    position: relative;
    top: 0;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    color: #fff;
    z-index: 900;
    font-weight: 600;
}
.marquee-track {
    display: inline-block;
    white-space: nowrap;
    padding: 0.4rem 0;
    animation: marquee 15s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Top Carousel */
.top-carousel { background: #000; margin-top: 0.5rem; }
.top-carousel-inner { display: flex; position: relative; height: 50vh; max-height: 640px; overflow: hidden; }
.top-carousel .carousel-slide { min-width: 100%; height: 100%; opacity: 0; transition: opacity .6s ease; position: absolute; left: 0; top: 0; }
.top-carousel .carousel-slide.active { opacity: 1; }
.top-carousel img { width: 100%; height: 100%; object-fit: contain; background: #000; }

@media (max-width: 768px) {
    .marquee-bar { top: 0; }
    .top-carousel-inner { height: 38vh; max-height: 420px; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.logo-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
}

.logo-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.nav-menu { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; margin-right: 1rem; margin-left: auto; }
.brand-lines { text-align: right; }
.brand-lines h3 { font-size: 1.2rem; line-height: 1.1; margin: 0; }
.brand-lines p { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin: 0; }
.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f7931e;
}

.get-quote-btn {
    background: linear-gradient(135deg, #8b5cf6, #f7931e);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.get-quote-btn:hover {
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(236, 72, 153, 0.8));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    width: 100%;
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slide 1: Wedding Celebrations */
.slide:nth-child(1) {
    background-image: url('images/marriage/WhatsApp Image 2025-08-18 at 11.21.06_9eae7f26.jpg');
}

/* Slide 2: Birthday Parties */
.slide:nth-child(2) {
    background-image: url('images/birthday/WhatsApp Image 2025-08-18 at 11.09.12_1e379923.jpg');
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(236, 72, 153, 0.7));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f7931e;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #f7931e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: none;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 1);
}

.btn-secondary i {
    font-size: 0.9rem;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-arrow {
    left: 2rem;
}

.next-arrow {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #f7931e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero { padding-top: 60px; }
    .slide { height: calc(100% - 60px); }
    .nav-container { padding: 0 1rem; }
    .nav-menu { flex-direction: column; align-items: flex-end; gap: 0.25rem; margin-right: 0; }
    .brand-lines { display: block; text-align: right; }
    .brand-lines h3 { font-size: 1rem; }
    .brand-lines p { font-size: 0.7rem; }
    .nav-menu { gap: 1rem; }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .get-quote-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: 1rem;
    }
    
    .next-arrow {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-text h3 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.video-modal-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.video-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.video-item video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.video-item h3 {
    color: white;
    padding: 1rem;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Connect With Us Section */
.contact-section {
    background: #000;
    padding: 6rem 0;
}

.contact-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #ec4899;
}

.contact-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.85);
    margin-top: 0.75rem;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    border-radius: 18px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.35);
    margin-bottom: 1rem;
    text-decoration: none;
}

.icon-circle.whatsapp { background: #25D366; }
.icon-circle.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.icon-circle.maps { background: #4285F4; }

.contact-card h3 { margin: 0.5rem 0 0.25rem; }
.contact-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 1.75rem 1.25rem; }
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .video-modal-header {
        padding: 1rem;
    }
    
    .video-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .video-item video {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .video-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .video-item h3 {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-column { position: relative; }
.gallery-side-heading {
    position: absolute;
    top: -2.2rem;
    left: 0;
    color: rgba(255,255,255,0.95);
    font-weight: 700;
    background: rgba(0,0,0,0.35);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}
.gallery-side-heading.right { right: 0; left: auto; text-align: right; }

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 56px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0,0,0,0));
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    pointer-events: none;
}

/* Ensure gallery card stays clickable */
.gallery-item { cursor: pointer; position: relative; }

.overlay-content {
    color: white;
    width: 100%;
}

.category-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p { font-size: 1rem; margin-bottom: 0; opacity: 0.95; }
.overlay-hint { font-weight: 700; color: #fff; background: rgba(0,0,0,0.35); padding: 0.25rem 0.5rem; border-radius: 6px; display: inline-block; }

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.image-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.image-modal-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.close-image-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-image-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.modal-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.modal-image-item:hover {
    transform: scale(1.05);
}

.modal-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }
    
    .gallery-header h2 {
        font-size: 2.5rem;
    }
    
    .gallery-header p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image { height: 300px; }
    .gallery-side-heading { position: static; margin-bottom: 0.35rem; padding: 0; background: transparent; }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .overlay-content h3 {
        font-size: 1.3rem;
    }
    
    .image-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .image-modal-header {
        padding: 1rem;
    }
    
    .image-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .image-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-header h2 {
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .image-overlay {
        padding: 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
    
    .overlay-stats {
        gap: 1rem;
    }
    
    .image-modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .image-modal-header h2 {
        font-size: 1.2rem;
    }
}