:root {
    --primary-color: #d4af37;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Libertinus Serif Display', 'Tajawal', serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 0px; /* Account for fixed header and quick nav */
}

/* Arabic font styling */
[dir="rtl"] body,
[lang="ar"] body,
body[dir="rtl"],
body[lang="ar"] {
    font-family: 'Tajawal', 'Libertinus Serif Display', sans-serif;
}

/* English font for specific elements */
h1, h2, h3, h4, h5, h6,
.navbar-brand,
.nav-link,
.card-title,
.btn {
    font-family: 'Libertinus Serif Display', serif;
    font-weight: 500;
}

/* Arabic font for specific elements */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3, [lang="ar"] h4, [lang="ar"] h5, [lang="ar"] h6,
[dir="rtl"] .navbar-brand, [lang="ar"] .navbar-brand,
[dir="rtl"] .nav-link, [lang="ar"] .nav-link,
[dir="rtl"] .card-title, [lang="ar"] .card-title,
[dir="rtl"] .btn, [lang="ar"] .btn {
    font-family: 'Tajawal', 'Libertinus Serif Display', sans-serif;
    font-weight: 500;
}

/* English font for sidebar */
.sidebar {
    font-family: 'Libertinus Serif Display', serif;
}

.sidebar-header h4 {
    font-family: 'Libertinus Serif Display', serif;
    font-weight: 600;
}

.sidebar-nav .nav-link {
    font-family: 'Libertinus Serif Display', serif;
    font-weight: 400;
}

/* Arabic font for sidebar */
[dir="rtl"] .sidebar,
[lang="ar"] .sidebar {
    font-family: 'Tajawal', 'Libertinus Serif Display', sans-serif;
}

[dir="rtl"] .sidebar-header h4,
[lang="ar"] .sidebar-header h4 {
    font-family: 'Tajawal', 'Libertinus Serif Display', sans-serif;
    font-weight: 600;
}

[dir="rtl"] .sidebar-nav .nav-link,
[lang="ar"] .sidebar-nav .nav-link {
    font-family: 'Tajawal', 'Libertinus Serif Display', sans-serif;
    font-weight: 400;
}

.quick-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 1030;
}

.quick-nav .btn {
    transition: all 0.3s ease;
}

.quick-nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100vh;
    width: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: left 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

.sidebar.show {
    left: 0 !important;
}

/* RTL Support for Arabic */
[dir="rtl"] .sidebar {
    left: auto;
    right: -300px;
    transition: right 0.3s ease;
}

[dir="rtl"] .sidebar.show {
    left: auto !important;
    right: 0 !important;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav-link {
    color: white;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.sidebar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary-color);
    transform: translateX(10px);
}

/* RTL Support for Sidebar Navigation Hover */
[dir="rtl"] .sidebar-nav .nav-link:hover {
    transform: translateX(-10px);
}

.sidebar-nav .nav-link i {
    margin-right: 10px;
    width: 20px;
}

/* RTL Support for Sidebar Navigation Icons */
[dir="rtl"] .sidebar-nav .nav-link i {
    margin-right: 0;
    margin-left: 10px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}

/* RTL Support for Sidebar Overlay */
[dir="rtl"] .sidebar-overlay {
    left: auto;
    right: 0;
}

.sidebar-overlay.show {
    display: block;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* padding: 0 20px; */
    /* Ensure proper centering */
    flex-direction: column;
    margin-top: -40px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensure vertical centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: 0 !important;
    /* Ensure background image is visible */
    background-color: transparent !important;
}

/* More specific selector to override any conflicts */
div.hero-image-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    z-index: 0 !important;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-arrow:hover {
    background: var(--primary-color);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* RTL Support for Slider */
[dir="rtl"] .slider-prev {
    left: auto;
    right: 20px;
}

[dir="rtl"] .slider-next {
    right: auto;
    left: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-hero {
    background: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.btn-hero:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    color: white;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.language-btn:hover {
    background: var(--primary-color);
    color: white;
}

.language-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Sidebar Toggle Button Styles */
.sidebar-toggle-btn {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

/* RTL Support for Sidebar Toggle Button */
[dir="rtl"] .sidebar-toggle-btn {
    margin-right: 0;
    margin-left: 15px;
}

.sidebar-toggle-btn:hover {
    background: #b8941f !important;
    border-color: #b8941f !important;
    transform: scale(1.05);
}

.sidebar-toggle-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .sidebar {
        width: 100%;
        left: -100%;
    }
    
    /* RTL Mobile Support */
    [dir="rtl"] .sidebar {
        left: auto;
        right: -100%;
    }
}

[dir="rtl"] .sidebar-nav .nav-link i {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .sidebar-nav .nav-link:hover {
    transform: translateX(-10px);
}



:root {
    --primary-color: #d4af37;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
}


.navbar-brand img {
    height: 50px;
    width: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100vh;
    width: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transition: left 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

.sidebar.show {
    left: 0 !important;
}

/* RTL Support for Arabic */
[dir="rtl"] .sidebar {
    left: auto;
    right: -300px;
    transition: right 0.3s ease;
}

[dir="rtl"] .sidebar.show {
    left: auto !important;
    right: 0 !important;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-nav {
    padding: 20px 0;
}

.sidebar-nav .nav-link {
    color: white;
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.sidebar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary-color);
    transform: translateX(10px);
}

/* RTL Support for Sidebar Navigation Hover */
[dir="rtl"] .sidebar-nav .nav-link:hover {
    transform: translateX(-10px);
}

.sidebar-nav .nav-link i {
    margin-right: 10px;
    width: 20px;
}

/* RTL Support for Sidebar Navigation Icons */
[dir="rtl"] .sidebar-nav .nav-link i {
    margin-right: 0;
    margin-left: 10px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}

/* RTL Support for Sidebar Overlay */
[dir="rtl"] .sidebar-overlay {
    left: auto;
    right: 0;
}

.sidebar-overlay.show {
    display: block;
}

/* Hero Section Base Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -40px;
}

/* Hero Image Background (for both slider and static) */
.hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Hero Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

.hero-video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* YouTube Video Background */
.hero-video-background.youtube-video {
    z-index: -1;
}

.hero-video-background.youtube-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevent interaction with video */
}

.hero-video-background.youtube-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Ensure hero content is above video overlay */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensure vertical centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


/* Hero Slider Styles - Complete Rewrite */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content .hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.slider-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* RTL Support for Slider */
[dir="rtl"] .slider-prev {
    left: auto;
    right: 30px;
}

[dir="rtl"] .slider-next {
    right: auto;
    left: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-arrow {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 20px;
    }
    
    .slider-next {
        right: 20px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);   
    color: white;   
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: white;
}

.btn-hero {
    background: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.btn-hero:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    color: white;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.language-btn:hover {
    background: var(--primary-color);
    color: white;
}

.language-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Sidebar Toggle Button Styles */
.sidebar-toggle-btn {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

/* RTL Support for Sidebar Toggle Button */
[dir="rtl"] .sidebar-toggle-btn {
    margin-right: 0;
    margin-left: 15px;
}

.sidebar-toggle-btn:hover {
    background: #b8941f !important;
    border-color: #b8941f !important;
    transform: scale(1.05);
}

.sidebar-toggle-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .sidebar {
        width: 100%;
        left: -100%;
    }
    
    /* RTL Mobile Support */
    [dir="rtl"] .sidebar {
        left: auto;
        right: -100%;
    }
}

[dir="rtl"] .sidebar-nav .nav-link i {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .sidebar-nav .nav-link:hover {
    transform: translateX(-10px);
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.category-card .card-img-top {
    transition: all 0.3s ease;
}

.category-card:hover .card-img-top {
    transform: scale(1.05);
}

.category-card .card-body {
    padding: 1.5rem;
}

.category-card .card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.category-card .card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-card .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.category-card .btn-outline-primary {
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-card .btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive adjustments for category cards */
@media (max-width: 768px) {
    .category-card .card-body {
        padding: 1rem;
    }
    
    .category-card .card-title {
        font-size: 1.1rem;
    }
    
    .category-card .card-text {
        font-size: 0.9rem;
    }
}

.banquet-header{
    margin-top: 0px;
}

.text-primary{
    color: var(--primary-color)!important;
}

/* Social Media Links */
.sidebar-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
}

.social-media-links {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon i {
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Platform-specific colors on hover */
.social-icon:hover i.fa-instagram {
    color: #E4405F;
}

.social-icon:hover i.fa-snapchat {
    color: #FFFC00;
}

.social-icon:hover i.fa-tiktok {
    color: #000000;
}

.social-icon:hover i.fa-facebook {
    color: #1877F2;
}

.social-icon:hover i.fa-x-twitter {
    color: #000000;
}

.social-icon:hover i.fa-whatsapp {
    color: #25D366;
}

/* Footer Social Media Icons */
.footer {
    margin-top: auto;
}

.social-icons-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: #ccc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon-footer:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon-footer i {
    transition: all 0.3s ease;
}

.social-icon-footer:hover i {
    transform: scale(1.1);
}

/* Platform-specific colors on hover for footer */
.social-icon-footer:hover i.fa-instagram {
    color: #E4405F;
}

.social-icon-footer:hover i.fa-snapchat {
    color: #FFFC00;
}

.social-icon-footer:hover i.fa-tiktok {
    color: #000000;
}

.social-icon-footer:hover i.fa-facebook {
    color: #1877F2;
}

.social-icon-footer:hover i.fa-x-twitter {
    color: #000000;
}

.social-icon-footer:hover i.fa-whatsapp {
    color: #25D366;
}

/* Responsive adjustments for footer social icons */
@media (max-width: 768px) {
    .social-icons-footer {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer .col-md-6.text-md-end {
        text-align: center !important;
    }
}
