/* Primary Color Variable (for easy reference) */
:root {
    --lentir-primary: #ed145b;
    --primary: #ed145b;
}

.navbar-brand .site-logo {
    color: #ed145b;
    font-weight: 900;
    letter-spacing: 5px;
}

a {
    color: #ed145b;
}

.text-primary {
    color: #ed145b !important;
}

.btn.btn-primary {
    color: #fff !important;
}

.btn.btn-primary:hover {
    color: #ed145b !important;
}

.btn-outline-primary {
    color: #ed145b;
    border-color: #ed145b;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #ed145b;
    border-color: #ed145b;
}

.loading {
    position: relative;
}

.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9) url("/images/loading.gif") center
        center no-repeat;
    background-size: 100px 100px;
    z-index: 10;
}

ul,
ol {
    margin-bottom: 20px;
}

.input-group .btn.btn-primary {
    padding-right: 20px;
    padding-left: 20px;
}

.input-group .btn.btn-primary i {
    position: absolute;
    right: 10px;
    top: 8px;
    margin-left: 0;
}

/* Container styling */
.nav-pills .nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding-right: 30px; /* Make space for the icon */
    color: #495057;
}

/* The Hover Animation (Move Right) */
.nav-pills .nav-link:hover {
    transform: translateX(8px);
    background-color: rgba(237, 20, 91, 0.05); /* Optional: subtle highlight */
    color: #ed145b;
}

/* The Chevron Icon (using a Unicode arrow) */
.nav-pills .nav-link::after {
    content: "\276F"; /* Chevron Right Unicode */
    position: absolute;
    right: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Show Chevron on Hover */
.nav-pills .nav-link:hover::after {
    opacity: 1;
    right: 10px;
}

/* --- Lentir Sign-Up Banner Styling --- */

/* Banner Container */
.lentir-signup-banner {
    /* Create a vibrant gradient based on the primary color */
    background: var(--lentir-primary); /* Fallback */
    background: linear-gradient(135deg, #f03e7a 0%, #ed145b 100%);
    border: none;
    overflow: hidden; /* For pseudo-element effects */
    position: relative;
}

/* Subtle background accent (optional, adds depth) */
.lentir-signup-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 70%
    );
    transform: rotate(-30deg);
}

/* Ensure text stays readable over the gradient */
.lentir-signup-banner h1,
.lentir-signup-banner .lead {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* --- The Sign Up Button --- */
.lentir-signup-banner .signup-btn {
    color: var(
        --lentir-primary
    ) !important; /* Button text uses primary color */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Pillow shape */
    transition: all 0.3s ease-in-out;
    padding: 15px 30px;
}

/* Button Hover State */
.lentir-signup-banner .signup-btn:hover {
    background-color: #fff; /* Solid white background on hover */
    transform: translateY(-3px) scale(1.02); /* Slight lift and grow */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    color: #c90a4a !important; /* Darker shade of primary for contrast */
}

/* Button Active/Click State */
.lentir-signup-banner .signup-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2) !important;
}

/* --- Vertical Sidebar Banner --- */

.lentir-vertical-banner {
    background-color: #ed145b;
    /* Diagonal gradient for movement */
    background: linear-gradient(180deg, #f03e7a 0%, #ed145b 100%);
    min-height: 450px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

/* Subtle Geometric Background Pattern */
.lentir-vertical-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Icon Circle Decoration */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* Button Styling */
.vertical-signup-btn {
    color: #ed145b !important;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vertical-signup-btn:hover {
    transform: scale(1.05);
    background-color: #ffffff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Helper Class */
.opacity-90 {
    opacity: 0.9;
}
.x-small {
    font-size: 0.75rem;
}

.popular-post-item {
    transition: all 0.2s ease-in-out;
}
.popular-post-item:hover {
    transform: translateX(5px);
    background-color: transparent !important;
}
.popular-post-item:hover h6 {
    color: #ed145b !important;
}
.extra-small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.popular-posts-card {
    border-radius: 12px;
}

/* Sidebar Contact Card Styling */
.faq-contact-sidebar {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

/* Pulse Icon Animation */
.contact-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #ed145b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    z-index: 1;
}

.pulse-ring {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ed145b;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-animation 2s infinite;
    z-index: -1;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Small Icons */
.icon-sm {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed145b;
    font-size: 0.9rem;
}

/* Button and Text Styling */
.contact-sidebar-btn {
    background-color: #ed145b;
    border: none;
    transition: all 0.3s ease;
}

.contact-sidebar-btn:hover {
    background-color: #c9124e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 20, 91, 0.3) !important;
}

.font-weight-600 {
    font-weight: 600;
}
.x-small {
    font-size: 0.7rem;
}
.extra-small {
    font-size: 0.65rem;
}

.dash-nav .nav-link {
    color: #6c757d;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
}

.dash-nav .nav-link:hover,
.dash-nav .nav-link.active {
    background-color: rgba(237, 20, 91, 0.05);
    color: #ed145b;
}

/* Player Visualizer Animation */
.visualizer-bars {
    display: flex;
    align-items: flex-end;
    height: 60px;
    gap: 5px;
}

.visualizer-bars span {
    width: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    animation: bounce 1.2s ease-in-out infinite;
}

.visualizer-bars span:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.visualizer-bars span:nth-child(2) {
    height: 70%;
    animation-delay: 0.3s;
}

.visualizer-bars span:nth-child(3) {
    height: 100%;
    animation-delay: 0.2s;
}

.visualizer-bars span:nth-child(4) {
    height: 60%;
    animation-delay: 0.4s;
}

.visualizer-bars span:nth-child(5) {
    height: 80%;
    animation-delay: 0.1s;
}

@keyframes bounce {
    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.5);
    }
}

.player-card {
    overflow: hidden;
    position: relative;
}

/* Polish Utilities */
.opacity-75 {
    opacity: 0.75;
}

.rounded-lg {
    border-radius: 15px !important;
}
