/* ========================================
   SITE LAYOUT CSS - COMBINED LAYOUT STYLES
   ======================================== */

/* ========================================
   BASE STYLES (from layouts-site-base.css)
   ======================================== */

/* Base Variables */
:root {
    /* Extracted color scheme from welcome blade */
    --primary-color: #e73c7e;
    --secondary-color: #23a6d5;
    --accent-color: #ee7752;
    --accent-secondary: #23d5ab;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #f1c40f;
    --info-color: #3498db;
    --light-color: rgba(255, 255, 255, 0.9);
    --dark-color: #2c3e50;
    --body-bg: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    --body-color: white;

    /* Additional variables for the animated background */
    --gradient-animation-duration: 15s;
    --shape-animation-duration: 10s;
    --blur-effect: 10px;
    --card-bg: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--body-bg);
    background-size: 400% 400%;
    animation: gradient var(--gradient-animation-duration) ease infinite;
    color: var(--body-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Background Shapes */
.shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: float var(--shape-animation-duration) infinite;
}

.shape-1 {
    background: rgba(255, 0, 0, 0.4);
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
}

.shape-2 {
    background: rgba(0, 0, 255, 0.4);
    width: 400px;
    height: 400px;
    bottom: -200px;
    right: -200px;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(100px, 100px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* Layout Structure */
#site-header {
    position: relative;
    width: 100%;
    z-index: 10;
}

#site-content {
    flex: 1 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

#site-footer {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

/* Glass Card Effect */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--blur-effect));
    border-radius: 25px;
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateZ(20px);
}

/* Container Modifications */
.container {
    max-width: 1200px;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-info { color: var(--info-color) !important; }
.text-light { color: var(--light-color) !important; }
.text-dark { color: var(--dark-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-success { background-color: var(--success-color) !important; }
.bg-danger { background-color: var(--danger-color) !important; }
.bg-warning { background-color: var(--warning-color) !important; }
.bg-info { background-color: var(--info-color) !important; }

/* Glow effect */
@keyframes glow {
    from { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--primary-color); }
    to { text-shadow: 0 0 10px #fff, 0 0 20px var(--primary-color), 0 0 30px var(--primary-color); }
}

.glow-text {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Float animation */
@keyframes float-element {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.float {
    animation: float-element 6s ease-in-out infinite;
}

/* Blink animation for status indicators */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.blink {
    animation: blink 1.5s infinite;
}

/* ========================================
   TOPBAR STYLES (from layouts-site-topbar.css)
   ======================================== */

/* Topbar Styles */
.topbar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.topbar .container {
    position: relative;
}

.topbar-content {
    position: relative;
}

.topbar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.topbar a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Contact Info */
.topbar-contact {
    min-width: 0;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
}

.topbar-contact i {
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
    margin-right: 0.25rem;
    color: var(--primary-color);
}

/* Social Links */
.topbar-social {
    min-width: 0;
}

.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin: 0 0.125rem;
}

.topbar-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(231, 60, 126, 0.4);
}

.topbar-social i {
    font-size: 0.875rem;
}

/* Quick Links */
.topbar-links {
    min-width: 0;
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
}

.topbar-links i {
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
    margin-right: 0.25rem;
    color: var(--primary-color);
}

/* Mobile-specific styles */
.topbar-mobile-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 40px;
    touch-action: manipulation;
}

.topbar-mobile-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(231, 60, 126, 0.4);
}

.topbar-mobile-link i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.25rem;
}

.topbar-mobile-link span {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Live status indicator */
.topbar-live-status {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.topbar-live-status i {
    font-size: 0.75rem;
    color: var(--danger-color);
    animation: blink 1.5s infinite;
    margin-right: 0.5rem;
}

.topbar-live-status.active i {
    color: var(--success-color);
}

.topbar-live-status span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced mobile responsiveness */
@media (max-width: 991.98px) {
    .topbar {
        font-size: 0.8125rem;
        padding: 0.25rem 0;
    }

    .topbar-social a {
        width: 36px;
        height: 36px;
        margin: 0 0.25rem;
    }

    .topbar-mobile-link {
        min-width: 44px;
        min-height: 44px;
        margin: 0 0.25rem;
    }

    .topbar-mobile-link i {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
    }

    .topbar-social a {
        width: 40px;
        height: 40px;
        margin: 0 0.25rem;
    }

    .topbar-social i {
        font-size: 1rem;
    }

    .topbar-mobile-link {
        min-width: 48px;
        min-height: 48px;
        margin: 0 0.25rem;
    }

    .topbar-mobile-link i {
        font-size: 1.25rem;
    }

    .topbar-mobile-link span {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .topbar {
        padding: 0.75rem 0;
    }

    .topbar-mobile-link {
        border-radius: 12px;
        padding: 0.75rem;
    }

    .topbar-mobile-link span {
        display: none !important;
    }

    .topbar-mobile-link i {
        margin-right: 0;
        font-size: 1.25rem;
    }

    .topbar-social a {
        width: 44px;
        height: 44px;
    }

    .topbar-social i {
        font-size: 1.125rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .topbar a,
    .topbar-mobile-link,
    .topbar-social a {
        transition: none;
    }

    .topbar-live-status i {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .topbar {
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    }

    .topbar a {
        color: white;
    }

    .topbar-mobile-link,
    .topbar-social a {
        background-color: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* ========================================
   HEADER STYLES (from layouts-site-header.css)
   ======================================== */

/* Header Styles */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    border-radius: 0 0 15px 15px;
}

.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    text-decoration: none;
    white-space: nowrap;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: bold;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.navbar-nav .nav-link i {
    margin-right: 0.5rem;
}

/* Logo styling similar to welcome blade */
.logo-container {
    position: relative;
    text-align: center;
    padding: 1rem 0;
    perspective: 1000px;
}

.logo {
    max-width: 150px;
    height: auto;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.logo:hover {
    transform: translateZ(30px) rotateY(10deg);
}

.pulse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(255,0,0,0.8) 0%, rgba(255,0,0,0) 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Dropdown Styles */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    margin-right: 0.5rem;
    width: 1.25rem;
    text-align: center;
}

/* User Menu */
.navbar-nav .user-menu .nav-link {
    display: flex;
    align-items: center;
}

.navbar-nav .user-menu img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-nav .user-menu:hover img {
    transform: scale(1.1);
    border-color: white;
}

/* Live indicator for navbar */
.nav-live-indicator {
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
}

.nav-live-indicator i {
    font-size: 0.75rem;
    color: var(--danger-color);
    animation: blink 1.5s infinite;
    margin-right: 0.25rem;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 15px;
        box-shadow:
            0 8px 32px 0 rgba(31, 38, 135, 0.37),
            0 0 0 1px rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    .dropdown-menu {
        box-shadow: none;
        padding-left: 1rem;
        background: rgba(255, 255, 255, 0.05);
    }
}

/* ========================================
   CONTENT STYLES (from layouts-site-content.css)
   ======================================== */

#site-content {
    margin: 2rem 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Remove any Bootstrap container padding if used */
#site-content .container,
#site-content .container-fluid {
    padding: 0;
    max-width: 100%;
}

/* Standard card styling for content areas */
.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: perspective(1000px) rotateX(0deg) translateZ(20px);
}

/* Card titles */
.content-card .card-title {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

/* Profile image styling similar to welcome blade */
.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.1);
    animation: float-profile 6s ease-in-out infinite;
}

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

/* Audio player styling for content areas */
.custom-player {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.play-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.play-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.5);
    z-index: -1;
    animation: pulse-play 2s infinite;
}

@keyframes pulse-play {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.volume-controls {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 200px;
}

.volume-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-slider {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Stream status indicator */
.stream-status {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger-color);
    animation: blink 1s infinite;
}

.status-dot.success {
    background: var(--success-color);
}

/* Live indicator */
.live-indicator {
    display: inline-block;
    margin-left: 10px;
}

.live-indicator.active {
    animation: blink 1.5s infinite;
}

.live-indicator i {
    color: #6c757d; /* Default grey color when not live */
}

.live-indicator.active i {
    color: var(--danger-color); /* Red color when live */
}

/* Responsive Design for content */
@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem;
        margin: 1rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .play-button {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .custom-player {
        padding: 1.5rem;
    }
}

/* ========================================
   FOOTER STYLES (from layouts-site-footer.css)
   ======================================== */

/* Footer Styles */
.footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    box-shadow:
        0 -8px 32px 0 rgba(31, 38, 135, 0.37),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    border-radius: 25px 25px 0 0;
    margin-top: 2rem;
}

/* Company Info Section */
.footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Social Links */
.footer .social-links {
    margin-top: 1.5rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.footer .social-links a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 60, 126, 0.4);
}

.footer .social-links i {
    font-size: 1rem;
}

/* Quick Links & Services */
.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
}

.footer ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer ul li a i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Contact Info */
.footer .list-unstyled li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer .list-unstyled li i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 0.75rem;
}

/* Footer Logo */
.footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

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

/* Pulse Effect for elements */
.footer .pulse-element {
    position: relative;
}

.footer .pulse-element::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(231, 60, 126, 0.5);
    z-index: -1;
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer h5 {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer .social-links {
        margin-top: 1rem;
    }

    .footer .mb-4 {
        margin-bottom: 2rem !important;
    }
}

/* ========================================
   BOTTOMBAR STYLES (from layouts-site-bottombar.css)
   ======================================== */

/* Bottombar Styles */
.bottombar {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.bottombar p {
    margin: 0;
}

.bottombar .list-inline {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.bottombar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.bottombar a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.bottombar .list-inline-item:not(:last-child) {
    margin-right: 0;
}

.bottombar .list-inline-item {
    position: relative;
    margin: 0 0.75rem;
}

.bottombar .list-inline-item span {
    color: rgba(255, 255, 255, 0.3);
}

/* Animation for links */
.bottombar a {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.bottombar a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.bottombar a:hover::after {
    width: 100%;
}

/* Copyright text styling */
.copyright-text {
    position: relative;
    display: inline-block;
}

.copyright-text .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
    .bottombar {
        text-align: center;
    }

    .bottombar .row {
        flex-direction: column;
    }

    .bottombar .list-inline {
        margin-top: 1rem;
        justify-content: center;
    }

    .bottombar .list-inline-item {
        margin: 0.25rem 0.5rem;
    }

    .bottombar .list-inline-item span {
        display: none;
    }

    .bottombar .list-inline-item:not(:last-child)::after {
        content: "•";
        color: rgba(255, 255, 255, 0.3);
        position: absolute;
        right: -0.75rem;
    }
}
