﻿        :root {
            --primary-color: #0b2241;
            --secondary-color: #1e5c8f;
            --accent-color: #c98e2c;
            /* Updated pirqa accent */
            --success-color: #27ae60;
            --dark-bg: #0a1628;
            --light-bg: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: var(--light-bg);
        }

        /* Animated Background */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: #111;
        }

        .hero-bg-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
            animation: heroSlideshow 20s infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            /* Dark overlay */
            z-index: 2;
        }

        @keyframes heroSlideshow {

            0%,
            35% {
                background-image: url('assets/img/fondo.png');
            }

            40%,
            75% {
                background-image: url('assets/img/fondo1.png');
            }


            80%,
            100% {
                background-image: url('assets/img/tazaRON.png');
            }
        }

        /* Floating particles */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh) translateX(50px);
                opacity: 0;
            }
        }

        /* Navbar */
        .navbar-landing {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: transparent;
            padding: 2rem 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }

        .navbar-landing.scrolled {
            background: rgba(10, 10, 10, 0.95);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .navbar-brand img {
            max-height: 60px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .btn-access {
            background: linear-gradient(135deg, var(--accent-color), #e67e22);
            color: white;
            border: none;
            padding: 0.8rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
            text-decoration: none;
            display: inline-block;
        }

        .btn-access:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(243, 156, 18, 0.6);
            color: white;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            color: white;
            text-align: center;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease;
            letter-spacing: 2px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-cta {
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 2rem;
            color: white;
            opacity: 0.7;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Carousel Section */
        .carousel-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            font-weight: 300;
        }

        .carousel-item img {
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        .carousel-caption {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            border-radius: 0 0 20px 20px;
            padding: 2rem;
            bottom: 0;
            left: 0;
            right: 0;
        }

        .carousel-caption h5 {
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--accent-color);
            border-radius: 50%;
            padding: 30px;
            transition: all 0.3s ease;
        }

        .carousel-control-prev-icon:hover,
        .carousel-control-next-icon:hover {
            transform: scale(1.1);
            background-color: var(--primary-color);
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            color: white;
        }

        .empty-state i {
            font-size: 5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .empty-state h4 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .empty-state p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Map Section */
        .map-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, white, var(--light-bg));
        }

        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
        }

        .map-info {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }

        .map-info h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .map-info p {
            color: #6c757d;
            margin-bottom: 0.5rem;
        }

        .map-info i {
            color: var(--accent-color);
            margin-right: 10px;
        }

        /* About Section (Mission & Vision) */
        .about-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .about-section .section-title,
        .about-section .section-subtitle {
            color: white;
        }

        .mission-card,
        .vision-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 3rem;
            border-radius: 20px;
            height: 100%;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .mission-card:hover,
        .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .mission-card .icon-wrapper,
        .vision-card .icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), #e67e22);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .mission-card .icon-wrapper i,
        .vision-card .icon-wrapper i {
            font-size: 2.5rem;
            color: white;
        }

        .mission-card h3,
        .vision-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .mission-card p,
        .vision-card p {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: white;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg);
        }

        .service-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: statsBackground 20s linear infinite;
        }

        @keyframes statsBackground {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .stat-item {
            position: relative;
            z-index: 1;
            padding: 1.5rem;
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .contact-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color), #e67e22);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon i {
            font-size: 2rem;
            color: white;
        }

        .contact-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .contact-card a {
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--accent-color);
        }

        .business-hours {
            margin-top: 3rem;
        }

        .hours-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hours-card h4 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hours-list li {
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list span {
            color: #666;
            font-size: 1.1rem;
        }

        .hours-list strong {
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* Footer */
        .footer-landing {
            background: var(--dark-bg);
            color: white;
            padding: 3rem 0 1.5rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h5 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.5rem;
            display: block;
        }

        .footer-section a:hover {
            color: var(--accent-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 1rem;
            opacity: 0.7;
        }

        .footer-brand img {
            height: 25px;
        }

        /* Hero Logo Display */
        .hero-logo-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            opacity: 0.15;
            pointer-events: none;
        }

        .hero-logo {
            width: 500px;
            height: 500px;
            animation: logoFloat 6s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
            filter: drop-shadow(0 0 80px rgba(243, 156, 18, 0.6));
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-20px) rotate(2deg);
            }

            50% {
                transform: translateY(0) rotate(0deg);
            }

            75% {
                transform: translateY(-15px) rotate(-2deg);
            }
        }

        @keyframes logoGlow {
            0% {
                filter: drop-shadow(0 0 40px rgba(243, 156, 18, 0.4)) brightness(1);
            }

            100% {
                filter: drop-shadow(0 0 100px rgba(243, 156, 18, 0.8)) brightness(1.2);
            }
        }

        /* ===================== WhatsApp Floating Button ===================== */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            left: 25px;
            z-index: 9999;
            width: 58px;
            height: 58px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
            text-decoration: none;
            animation: waPulse 2.5s infinite;
            transition: transform 0.3s ease;
        }
        .whatsapp-float:hover { transform: scale(1.15); }
        .whatsapp-float i { font-size: 1.9rem; color: white; }
        .whatsapp-tooltip {
            position: fixed;
            bottom: 115px;
            left: 90px;
            background: rgba(0,0,0,0.82);
            color: #fff;
            font-size: 0.82rem;
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            z-index: 9999;
        }
        .whatsapp-float:hover + .whatsapp-tooltip { opacity: 1; }
        @keyframes waPulse {
            0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
            50%      { box-shadow: 0 6px 35px rgba(37,211,102,0.85); }
        }

        /* ===================== Hero Hours Badge ===================== */
        .hero-hours-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(8px);
            color: #fff;
            font-size: 0.88rem;
            font-weight: 500;
            letter-spacing: 1px;
            padding: 8px 22px;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease 0.3s backwards;
        }
        .hero-hours-badge i { color: var(--accent-color); }

        /* ===================== Testimonials ===================== */
        .testimonials-section {
            padding: 90px 0;
            background: linear-gradient(135deg, #0b2241 0%, #1a3a5c 100%);
            position: relative;
            overflow: hidden;
        }
        .testimonials-section::before {
            content: '"';
            font-size: 28rem;
            color: rgba(255,255,255,0.03);
            position: absolute;
            top: -80px; left: -30px;
            font-family: 'Playfair Display', serif;
            line-height: 1;
            pointer-events: none;
        }
        .testimonial-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.2rem 2rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
        .testimonial-stars { color: var(--accent-color); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
        .testimonial-text {
            color: rgba(255,255,255,0.9);
            font-style: italic;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 1.4rem;
        }
        .testimonial-avatar {
            width: 55px; height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-color), #e67e22);
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 0.6rem;
            font-size: 1.4rem; color: white; font-weight: 700;
        }
        .testimonial-name { color: #fff; font-weight: 600; font-size: 0.95rem; }
        .testimonial-role { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

        /* ===================== Star Rating Input ===================== */
        .star-rating { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
        .star-rating input { display: none; }
        .star-rating label {
            cursor: pointer;
            font-size: 2rem;
            color: rgba(255,255,255,0.25);
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: var(--accent-color); }
        .form-control::placeholder { color: rgba(255,255,255,0.4) !important; }

        /* ===================== Gallery ===================== */
        .gallery-section {
            padding: 90px 0;
            background: #f9f6f0;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 14px;
        }
        .gallery-item {
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        .gallery-item:first-child {
            grid-row: span 2;
        }
        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }
        .gallery-item:hover img { transform: scale(1.07); }
        .gallery-overlay {
            position: absolute; inset: 0;
            background: rgba(11,34,65,0.55);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: opacity 0.3s;
        }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay i { color: white; font-size: 2rem; }
        @media (max-width: 768px) {
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .gallery-item:first-child { grid-row: span 1; }
        }

        /* ===================== Contact Section ===================== */
        .contact-info-section {
            padding: 90px 0;
            background: white;
        }
        .contact-info-card {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            border-bottom: 4px solid transparent;
        }
        .contact-info-card:hover {
            transform: translateY(-8px);
            border-bottom-color: var(--accent-color);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .contact-info-icon {
            width: 70px; height: 70px;
            background: linear-gradient(135deg, var(--accent-color), #e67e22);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 1.6rem; color: white;
        }
        .contact-info-card h5 { color: var(--primary-color); font-weight: 700; margin-bottom: 0.5rem; }
        .contact-info-card p, .contact-info-card a {
            color: #555; text-decoration: none; font-size: 0.95rem; line-height: 1.7;
        }
        .contact-info-card a:hover { color: var(--accent-color); }

        /* ===================== Scroll to Top Button ===================== */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--accent-color), #e67e22);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(243, 156, 18, 0.5);
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 8px 30px rgba(243, 156, 18, 0.7);
        }

        .scroll-top-btn:active {
            transform: translateY(-2px) scale(1.05);
        }



        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .carousel-item img {
                height: 400px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-logo {
                width: 300px;
                height: 300px;
            }

            .scroll-top-btn {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1.2rem;
            }
        }

        .hover-accent {
            transition: color 0.3s ease;
        }

        .hover-accent:hover {
            color: var(--accent-color) !important;
        }

/* ===================== Lightbox ===================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.show {
    display: block;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}
