/* ------------------------------ */
/* Root Variables                 */
/* ------------------------------ */
:root {
    --ux-gray-100: #f1f3f5;
    --ux-gray-600: #6c757d;
    --ux-dark: #1f1f1f;
    --primary: #cc00cc;
    --ux-pink: #ff6ad5;
    --ux-fuchsia-pink-200: #ffc7ff;
    --ux-bg-gray: #e9ecef;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Helvetica,
        Arial, sans-serif;
    color: #1a1a1a;
    background-color: #fff;
}

.icon-size-lg {
    width: 48px;
    height: 48px;
}

.primary-heading {
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0%;
    line-height: 50px;
}

.sub-heading {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;

    line-height: 100%;
    letter-spacing: 0%;
}

.body-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    color: #6c757d;
}

.text-brand {
    color: var(--primary);
}

.text-dark-gray {
    color: #555;
}

/* ------------------------------ */
/* Brand                          */
/* ------------------------------ */
.brand-pill {
    max-width: 100px;
    background: var(--ux-gray-100);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
}

.brand-pill img {
    object-fit: cover;
    max-height: 40px;
}

.search-bar {
    max-width: 280px;
    flex: 1;
}

/* ------------------------------ */
/* Buttons                        */
/* ------------------------------ */

/* 1. Main Button Styling */
.utopia-btn {
    display: inline-flex !important;
    padding: 5px 10px 5px 5px;
    background-color: var(--primary);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.utopia-btn:hover {
    background-color: color-mix(in srgb, var(--primary) 90%, black);
    color: white;
}

.utopia-btn-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
}

/* 1. White Button Styling */
.utopia-btn-white {
    display: inline-flex !important;
    padding: 5px 20px 5px 5px;
    background-color: white;
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.utopia-btn-white:hover {
    border: solid 1px white;
    background-color: var(--ux-fuchsia-pink-200);
    /* background-color: color-mix(in srgb, var(--primary) 90%, black); */
    color: var(--primary);
}

.utopia-btn-icon-wrapper-white {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 50%;
}

.utopia-icon-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #fff2ff;
    border-radius: 50%;
    color: var(--primary);
    font-size: 16px;
}

.utopia-btn-icon-wrapper .bi {
    color: var(--primary);
}

/* ------------------------------ */
/* Navigation Menu (.menu-pill)   */
/* ------------------------------ */
.menu-pill {
    background: var(--ux-bg-gray);
    border-radius: 50px;
    padding: 6px;
    display: flex;
    align-items: center;
    height: 48px;
}
.menu-pill .nav-link {
    color: #6b7280;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 16px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}
.menu-pill .nav-link.active {
    background: var(--ux-fuchsia-pink-200);
    color: var(--primary);
}

/* ------------------------------ */
/* Icon Buttons & Badges          */
/* ------------------------------ */
.icon-pill {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 35px;
    background: var(--ux-bg-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #343a40;
}

.counter-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    line-height: 1;
    padding: 0.2rem 0.35rem;
    border-radius: 999px;
    box-shadow: 0 0 0 3px #fff;
}

/* ------------------------------ */
/* Profile Dropdown               */
/* ------------------------------ */
.profile-dropdown {
    width: 80px;
    height: 44px;
    padding: 4px;
    background: var(--ux-bg-gray);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.profile-caret {
    color: #343a40;
    font-size: 12px;
    margin-right: 8px;
}

/* ------------------------------ */
/* Collapsed Menu (SM/MD)         */
/* ------------------------------ */
.vertical-menu {
    border-radius: 10px;
    background: #fff;
}
.vertical-menu .nav-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--ux-gray-100);
}
.vertical-menu .nav-link {
    color: #333;
    padding: 10px 15px;
    font-size: 16px;
}
.vertical-menu .nav-link.active {
    background: var(--ux-gray-100);
    color: var(--primary);
}

/* ------------------------------ */
/* Search Bar Button              */
/* ------------------------------ */

.searh-btn {
    width: 32px;
    height: 32px;
}

.badges {
    font-size: small;
    padding: 5px 20px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
}

/* ------------------------------ */
/* Home Page                      */
/* ------------------------------ */
.hero-section {
    height: 250px;
    background: url("../assets/images/header-img.png") center center/cover
        no-repeat;
}

@media (min-width: 768px) {
    .hero-section {
        height: 471px;
    }
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 700px;
    }
}

.vertical-text {
    display: inline-block;
    transform: rotate(90deg);
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatar-stack img:first-child {
    margin-left: 0; /* first avatar no overlap */
}

/* -------------------------------------------------------------------------- */
/* Custom Glassmorphism / Blur Effect                                         */
/* -------------------------------------------------------------------------- */

.glass-effect {
    /* Required for the blur effect to work across browsers */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Adds a subtle white border and light background to enhance the glass look */
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(
        255,
        255,
        255,
        0.05
    ); /* Use a very slight white background */
}

.scroll-text {
    transform: rotate(90deg);
}

.scroll-arrow-tail {
    /* The long line part of the arrow */
    width: 80px;
    height: 2px; /* Adjust height for tail length */
    background-color: white;
    margin-top: 10px;
}

/* ------------------------------ */
/* About Section                  */
/* ------------------------------ */
.about-section {
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.section-description {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-image-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-image-card img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.3s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

.about-stats-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-height: 150px;
}

.about-badge-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-height: 150px;
}

.membership-badge svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bg-light-pink {
    background-color: #fff2ff !important;
}

.btn-brand {
    background-color: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-brand:hover {
    background-color: #b300b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 0, 204, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }

    .about-stats-card {
        min-height: 120px;
    }

    .about-badge-card {
        min-height: 120px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.9rem;
    }
}

.goals-cards {
    border: 1px solid #e442f4;
    background-color: #fcf4fe;
}

.custom-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
}
.custom-indicator-active {
    width: 32px;
    height: 10px;
    background-color: var(--primary);
}
.custom-slider-btn {
    width: 36px;
    height: 36px;
    background-color: var(
        --primary
    ); /* Assuming --primary is defined, e.g., #8a2be2 */
    display: flex; /* Added to center the icon */
    align-items: center; /* Added to center the icon */
    justify-content: center; /* Added to center the icon */
}

/* New style for making the arrow bolder */
.custom-arrow-bold {
    font-weight: 600; /* Use a higher value for bolder appearance. Adjust as needed. */
    font-size: 1.5rem; /* You might want to increase font size to make it more prominent */
}

.resource-img-left-cards {
    height: 654px;
    object-fit: cover;
}

.resource-img-right-cards {
    height: 315px;
    object-fit: cover;
}

/* Medium screens (≥768px and ≤991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .resource-img-left-cards {
        height: 654px;
        object-fit: cover;
    }
    .resource-img-right-cards {
        height: 315px;
        object-fit: cover;
    }
}

/* Small screens (<768px) */
@media (max-width: 767.98px) {
    .resource-img-left-cards,
    .resource-img-right-cards {
        height: 412px;
    }
}

.cta-gradient-bg {
    background: #ffc7ff;
    background: radial-gradient(
        circle,
        rgba(255, 199, 255, 1) 0%,
        rgba(204, 0, 204, 1) 40%
    );
}

.hero-section-event {
    min-height: 630px;
    background: url("../assets/images/events-cover.png") center center/cover
        no-repeat;
}
.hero-section-about {
    min-height: 630px;
    background: url("../assets/images/about-cover.png") center center/cover
        no-repeat;
}



@media (max-width: 991.98px) {
    .hero-section-about,
    .hero-section-event {
        height: 366px;
        min-height: 366px;
    }
}

@media (max-width: 767.98px) {
    .hero-section-about,
    .hero-section-event {
        height: 188px;
        min-height: 188px;
    }
}

.icon-registration-active {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50px;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fafbfb;
}
.icon-registration-inactive {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50px;
    background: #e9ecef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}
.step-text-active {
    color: var(--primary);
}
.step-text-inactive {
    color: #adb5bd;
}
.form-check-input:checked {
    background-color: var(--primary); /* Your primary purple color */
    border-color: var(--primary);
}

/* Ensure only one step is visible at a time */
.step-content {
    display: none !important;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.step-content.active {
    display: block !important;
    opacity: 1;
}

/* Progress bar styles */
.progress-container {
    height: 6px;
    background-color: var(--ux-fuchsia-pink-200);
    position: relative;
    margin-top: 5px;
}
.progress-bar {
    height: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: width 0.3s ease-in-out;
}

.bg-primary-light {
    background: #fff2ff;
}

.pink-border {
    border: var(--ux-fuchsia-pink-200) 1px solid;
}

/* About Page image */


.about-image {
   object-fit: cover;
    width: 100%;
    height: 350px;
}

@media (min-width: 768px) {
    .about-image {
        object-fit: cover;
        width: 100%;
        height: 375px;
    }
}

@media (min-width: 992px) {
    .about-image {
        object-fit: cover;
        width: 100%;
        height: 400px;
    }
}


/* Hide Scroll Bar */
.events-scroll-container {
    -ms-overflow-style: none;    /* IE and Edge */
    scrollbar-width: none;       /* Firefox */
}
.events-scroll-container::-webkit-scrollbar {
    display: none;               /* Chrome, Safari, Opera */
}
