﻿/* Rae Ann Weddings and Design - Modern Elegant Theme */
:root {
    --primary-color: #8e7a8f; /* Dusty lavender */
    --primary-dark: #4e3a4b; /* Deep plum */
    --secondary-color: #cbb7c6; /* Pale lilac */
    --accent-color: #c8a97e; /* Muted gold */
    --accent-dark: #4e3a4b; /* Deep plum */
    --text-color: #4e3a4b;
    --text-light: #8e7a8f;
    --white: #f6f2ed; /* Cream */
    --light-bg: #d9d2c6; /* Warm sand */
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(78, 58, 75, 0.08);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-cta {
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-width: 3px;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.site-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.05);
    z-index: 2000; /* Increased z-index to ensure it's above everything */
    padding: 15px 0;
    transition: var(--transition);
    overflow: visible;
}

.site-header .container {
    display: flex;
    justify-content: center; /* Changed from space-between to center */
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    position: relative; /* Ensure proper positioning context */
    gap: 40px; /* Add gap between elements */
}

.logo-container {
    flex: 0 0 auto;
    margin-right: 0; /* Remove any right margin */
}

.site-header .logo {
    max-height: 72px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.logo {
    max-height: 72px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center; /* Center the navigation items */
}

.main-nav li {
    margin: 0 20px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    margin-left: 0; /* Remove left margin */
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
    z-index: 1002;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.home-hero {
    height: 70vh;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1606800052052-a08af7148866?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 90px;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

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

/* Hero Slider Main Styles */
.hero-slider {
    position: relative;
    height: auto;
    min-height: 600px;
    overflow: hidden;
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Adjust vertical position to focus more on the rings */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    color: var(--white);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.hero-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Elegant Divider */
.elegant-divider {
    text-align: center;
    padding: 40px 0;
    background-color: var(--white);
}

.divider-image {
    margin-bottom: 20px;
}

.divider-logo {
    max-width: 220px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    letter-spacing: 3px;
    margin: 0;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.divider {
    position: relative;
    height: 1px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 20px auto 30px;
}

.divider span {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: -4.5px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 45%;
}

.about-text {
    flex: 1;
}

.rounded-image {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services-section {
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Gallery Preview Section */
.gallery-preview-section {
    background-color: var(--white);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: var(--white);
    font-size: 2rem;
    background-color: rgba(142, 122, 143, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

.gallery-item-category {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision Section */
.vision-section {
    background-color: var(--light-bg);
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vision-text {
    flex: 1;
}

.vision-image {
    flex: 0 0 45%;
}

/* Team Preview Section */
.team-preview-section {
    background-color: var(--white);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--box-shadow);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--secondary-color);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
}

.testimonial-author {
    margin-top: 20px;
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Consultation Section */
.consultation-section {
    background-color: var(--white);
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(142, 122, 143, 0.2);
}

/* Footer */
.site-footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .about-content,
    .vision-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-image,
    .vision-image {
        flex: 0 0 100%;
        order: -1;
    }

    .about-text,
    .vision-text {
        text-align: center;
    }

    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    /* Ensure mobile menu toggle is always visible */
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
    
    /* Fix hero content on mobile */
    .hero-slider {
        position: relative;
        height: auto;
        min-height: 70vh;
        overflow: hidden;
        padding-top: 90px; /* Space for header */
        padding-bottom: 40px; /* Extra space at bottom */
    }
    
    .slide {
        position: relative;
        min-height: calc(70vh - 130px);
        height: auto;
    }
    
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-content {
        position: relative;
        top: auto;
        transform: none;
        padding: 40px 0;
        display: block; /* Override flex for mobile */
    }
    
    .hero-content .container {
        padding: 0 20px;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Improve team grid responsiveness */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Optimize animations for mobile */
    [data-aos] {
        transform: none !important; /* Prevent any transform that might cause horizontal scrolling */
        opacity: 1 !important; /* Ensure elements are visible if animation fails */
        transition-duration: 0.5s !important; /* Faster animations on mobile */
    }
    
    /* Ensure vertical animations only */
    [data-aos="fade-up"] {
        transform: translateY(20px) !important;
    }
    
    [data-aos="fade-up"].aos-animate {
        transform: translateY(0) !important;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav li {
        margin: 15px 0;
        width: 100%;
    }

    .main-nav a {
        display: block;
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: block !important;
        position: fixed; /* Changed from absolute to fixed */
        z-index: 2001; /* Higher than header to ensure visibility */
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        margin-left: auto;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
        right: 10px; /* Position from right edge */
        top: 25px; /* Fixed position from top */
        transform: none; /* Remove transform */
    }

    .header-cta {
        display: none;
    }

    /* Ensure mobile menu toggle is always visible on mobile */
    .site-header .container {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }
    
    /* This style block is no longer needed as we've consolidated the mobile menu toggle styles */

    .hero-slider {
        height: 80vh;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-slider {
        min-height: auto;
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .hero-content .container {
        padding: 0 15px;
    }
    
    .hero-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .consultation-form {
        padding: 30px 20px;
    }

    section {
        padding: 50px 0;
    }
    
    /* Fix for team grid on small screens */
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        overflow: hidden;
    }
    
    .team-member {
        width: 100%;
        max-width: 100%;
    }
}

/* LightGallery Styles */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
}

.lg-image {
    max-height: 90vh !important;
    max-width: 90vw !important;
    object-fit: contain !important;
}

.lg-outer .lg-item {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 38 38" stroke="%238e7a8f"><g fill="none" fill-rule="evenodd"><g transform="translate(1 1)" stroke-width="2"><circle stroke-opacity=".5" cx="18" cy="18" r="18"/><path d="M36 18c0-9.94-8.06-18-18-18"><animateTransform attributeName="transform" type="rotate" from="0 18 18" to="360 18 18" dur="1s" repeatCount="indefinite"/></path></g></g></svg>');
    background-repeat: no-repeat;
    background-position: center center;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--primary-color);
}

.lg-progress-bar .lg-progress {
    background-color: var(--primary-color);
}

.lg-toolbar .lg-icon:hover,
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: var(--primary-color);
}

.lg-outer .lg-thumb {
    padding: 10px 0;
}

.lg-sub-html {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.lg-zoom-in,
.lg-zoom-out {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    margin: 5px;
}

/* Navigation Arrows */
.lg-actions .lg-next,
.lg-actions .lg-prev {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 22px;
    margin-top: -10px;
    padding: 8px 10px 9px;
    position: absolute;
    top: 50%;
    z-index: 1080;
    border: none;
    outline: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    line-height: 24px;
    text-align: center;
}

.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    opacity: 1;
}

.lg-actions .lg-next {
    right: 20px;
}

.lg-actions .lg-prev {
    left: 20px;
}

.lg-actions .lg-next:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.lg-actions .lg-prev:after {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.lg-outer .lg-has-video .lg-video-play {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.lg-outer .lg-has-video:hover .lg-video-play {
    opacity: 1;
}

.lg-custom-theme .lg-toolbar {
    background-color: rgba(0, 0, 0, 0.45);
}

.lg-custom-theme .lg-sub-html {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    padding: 10px;
}
