/*--------------------------------------------------------------
# Hero Section CSS Styling
--------------------------------------------------------------*/
.hero {
    position: relative;
    height: 80vh;
    width: 100%;
    background: linear-gradient(180deg, rgb(3, 33, 13) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    color: var(--accent-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at top center,
            transparent 0%,
            rgba(0, 0, 0, 0.2) 35%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.8) 65%,
            rgba(0, 0, 0, 0.95) 80%);
    z-index: 1;
    pointer-events: none;
}

.page-title {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    width: 100%;
    z-index: 3;
    background: linear-gradient(90deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.run-club-hero {
    padding-top: 160px;
}

.hero-container {
    text-align: center;
    color: rgba(255, 255, 255, 1);
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    left: 50px;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px !important;
    color: white;
    font-weight: 600;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image {
    margin-top: 40px;
    width: 80%;
    max-width: 1200px;
    height: 800px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.hero-image img {
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 0 35px rgba(118, 118, 118, 0.6);
}

.section-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow:
        inset 0 0 15px rgba(12, 99, 41, 0.6),
        inset 0 0 5px rgba(255, 255, 255, 0.2);
}

/* --- Hotbar Styles --- */
.hotbar-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.hotbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 0 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hotbar-item {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotbar-item i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    transition: all 0.15s ease-out;
    text-shadow: 0 0 6px rgba(0, 0, 0, 1)
}

.hotbar-title {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.9);
    color: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hotbar-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(255, 255, 255, 0.9);
}

.hotbar-item:hover i {
    transform: scale(1.3);
    color: rgba(255, 255, 255, 1);
}

.hotbar-item:hover .hotbar-title {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    font-weight: bold;
}


/* --- Scroll Arrow Styles --- */
.hero-container .scroll-arrow {
    text-align: center;
    margin-top: 20px;
  }
  
.hero-container a {
    color: rgba(255, 255, 255, 1);
    font-size: 24px;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    display: inline-block;
}

.hero-container .scroll-arrow a:hover {
    color: #ffffff;
    transform: translateY(5px);
    animation-play-state: paused;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {   
        transform: translateY(0);   
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
  .hero-image {
      height: 90%;
  }

  .hero-container {
    top: 40px;
  }

  .hero-container h1 {
    font-size: 42px;
  }

  .hero-container .section-tag span {
    font-size: 14px !important;
  }
}

@media (max-width: 992px) {
  .hotbar {
    gap: 1rem;
    padding: 0.5rem 1rem;
  }

  .hotbar-title {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    left: 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hotbar {
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
  }

  .hotbar-item i {
    font-size: 1.2rem;
  }

  .hero-image {
    display: none;
  }
}

@media (max-width: 480px) {
    .hero .page-title {
        font-size: 32px !important;
        width: 50%;
    }

    .hero-content h1 {
        font-size: 32px !important;
    }

  .hero-content p {
    font-size: 14px;
  }

  .hotbar {
    gap: 1rem;
    padding: 0.5rem 1rem;
  }
}


/*--------------------------------------------------------------
# WhatsApp Section CSS Styling
--------------------------------------------------------------*/
.whatsapp {
    padding: 30px 0 50px;
}

.whatsapp-intro {
    text-align: center;
}

.whatsapp-intro h2 {
    font-size: 42px;
    padding-bottom: 20px;
    font-weight: 700;
}

.whatsapp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.whatsapp-image img {
    width: 80%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(var(--accent-color-rgb), 0.4);
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.whatsapp-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.limited-text {
    font-size: 0.9rem !important;
    opacity: 0.7;
}

.whatsapp-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-button i {
    margin-right: 6px;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    background-color: rgba(var(--accent-color-rgb), 0.75);
    color: white;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
    .whatsapp-text h2 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .whatsapp-text h2 {
        font-size: 24px;
    }

    .whatsapp-text p {
        font-size: 16px;
    }

    .whatsapp-image img {
        width: 120%;
        margin-left: -14%;
    }

    .whatsapp-button {
        margin-top: 0;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .whatsapp-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-text {
        text-align: center;
        align-items: center;
    }

    .whatsapp-text h2 {
        font-size: 2rem;
    }

    .whatsapp-image img {
        width: 80%;
        display: block;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-intro h2 {
        font-size: 30px;
    }

    .whatsapp-text h2 {
        font-size: 24px;
    }

    .whatsapp-image img {
        width: 80%;
        display: block;
        margin: 0 auto !important;
    }
}


/*--------------------------------------------------------------
# App Section CSS Styling
--------------------------------------------------------------*/
.app {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgb(3, 33, 13) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
    height: 70vh;
}

.app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.app::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      ellipse at top center,
      transparent 0%,
      rgba(0, 0, 0, 0.2) 35%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.8) 65%,
      rgba(0, 0, 0, 0.95) 80%
    );
    z-index: 1;
    pointer-events: none;
}

#app .container {
    position: relative;
    z-index: 2;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 220px;
    align-items: center;
    z-index: 2;
}

.app-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.app-text h2 {
    font-size: 62px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--background);
}

.app-text h2:nth-child(2) {
    font-size: 32px;
}

.app-text p {
    font-size: 16px;
    margin-bottom: 2rem;
    color: var(--background);
    opacity: 0.9;
    max-width: 500px;
}

.app-text a {
    font-size: 14px;
}

.app-text a i {
    margin-right: 8px;
}

.app-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--background);
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.app-button:hover {
    transform: translateY(-2px);
    background-color: rgba(var(--accent-color-rgb), 0.75);
    color: white;
}

.phone-mockup {
    width: 280px;
    height: 540px;
    background: #000;
    border-radius: 40px;
    position: relative;
    padding: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 12px rgba(var(--accent-color-rgb), 0.25);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    transform-origin: center center;
    bottom: 30px;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.screen-view {
    right: 5%;
    top: 5%;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--background);
}

.app-interface {
    padding: 20px;
    color: white;
    text-align: left;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.app-logo {
    font-weight: bold;
    font-size: 1.2rem;
}

.app-menu {
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
}

.app-menu::before,
.app-menu::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
}

.app-menu::before {
    top: -6px;
}

.app-menu::after {
    bottom: -6px;
}

.app-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 25px;
    margin: 10px 0;
    font-size: 0.9rem;
}

.app-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-image img {
    width: 28px;
    height: 28px;
    margin-right: 6px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 8s cubic-bezier(0.37, 0, 0.63, 1) infinite;
    transform-origin: center center;
}

.card-1 {
    left: -140px;
    top: 40%;
    animation-name: floatLeft;
}

.card-2 {
    right: -240px;
    top: 10%;
    animation-name: floatRight;
}

.card-3 {
    right: -160px;
    bottom: 20%;
    animation-name: floatRightBottom;
}

.floating-card h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 0;
}

@keyframes floatLeft {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(1deg);
    }
    50% {
        transform: translateY(0) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(15px) translateX(5px) rotate(1deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes floatRight {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(-5px) rotate(-1deg);
    }
    50% {
        transform: translateY(5px) translateX(5px) rotate(1deg);
    }
    75% {
        transform: translateY(-10px) translateX(-5px) rotate(-1deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes floatRightBottom {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(15px) translateX(-8px) rotate(-2deg);
    }
    50% {
        transform: translateY(-5px) translateX(10px) rotate(1.5deg);
    }
    75% {
        transform: translateY(8px) translateX(-5px) rotate(-1deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

.floating-card:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@keyframes phoneAppear {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-45deg) rotateX(15deg) translateY(100px) translateX(100px);
    }
    50% {
        opacity: 0.8;
        transform: perspective(1000px) rotateY(5deg) rotateX(-5deg) translateY(50px) translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0) translateX(0);
    }
}

.phone-mockup.aos-animate {
    animation: phoneAppear 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}


/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
    .app-content {
        margin-top: -60px;
    }

    .app-text h2:first-child {
        font-size: 46px;
    }

    .app-text h2:nth-child(2) {
        font-size: 26px;
    }

    .phone-mockup {
        width: 240px;
        height: 440px;
        top: 20px;
        right: 80px;
    }

    .screen-view {
        margin-top: 50px;
    }

    .card-1 {
        left: -200px !important;
    }

    .card-2 {
        right: -50px !important;
    }

    .card-3 {
        right: -40px !important;
    }
}

@media (max-width: 992px) {
    .app {
        height: 50vh;
    }

    .app-text {
        margin-top: 30px;
    }

    .app-text h2 {
        font-size: 3rem;
    }

    .app-content {
        gap: 10px;
    }

    .floating-card {
        display: none;
    }

    .phone-mockup {
        width: 200px;
        height: 380px;
        top: 20px;
        right: -60px;
    }
}

@media (max-width: 768px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .app-text {
        align-items: center;
    }

    .app-text h2 {
        font-size: 2.5rem;
    }

    .phone-mockup, .floating-card {
        display: none;
    }

    .phone-mockup.aos-animate {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .app {
        height: 45vh;
    }
    .app-content {
        gap: 0;
    }

    .app-text {
        margin-top: 0;
    }
    .app-text h2:first-child {
        font-size: 32px !important;
    }

    .app-text h2:nth-child(2) {
        font-size: 22px;
    }

    .app-text p {
        font-size: 16px;
        margin-bottom: 10px;
        width: 95%;
    }
}


/* --- Download Button Modal --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    opacity: 0;
}

.modal.show {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #1a1a1a;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #fff;
}

.modal h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.modal p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    width: 75%;
    margin: 0 auto;
}

.modal-footer {
    margin-top: 24px;
    padding-top: 16px;
    padding-bottom: 0;
}

.modal-close-btn {
    padding: 12px 26px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
    margin: 0 auto;
    margin-top: 8px;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(var(--accent-color-rgb), 0.3);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .modal-content {
        margin: 50% auto;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 60% auto;
    }
    .modal p {
        width: 90%;
    }
}


/*--------------------------------------------------------------
# Events Section CSS Styling
--------------------------------------------------------------*/
.events {
    padding: 32px 0;
}

.events-header {
    text-align: center;
}

.events-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.events-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.quick-btn-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.quick-btn {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.see-all {
    opacity: 0;
    pointer-events: none;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    margin-left: auto;
}

.events .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.events-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.events-grid {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.events-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.events-grid:active {
    cursor: grabbing;
}

.event-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    scroll-snap-align: start;
    user-select: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    height: fit-content;
    position: relative;
    cursor: pointer;
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.event-content {
    padding: 20px 24px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.event-card .card-arrow {
    position: absolute;
    top: 10px;
    right: 14px;
    color: #fff;
    font-size: 24px;
    transform: translate(0, -10px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.event-card:hover .content-overlay {
    opacity: 1;
}

.event-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.event-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 24px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* --- Responsive Adjustments --- */
@media (max-width: 1280px) {
    .events .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .quick-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .events-grid {
        margin-top: 16px;
    }

    .events-header h2 {
        font-size: 42px;
    }

    .event-card h3 {
        font-size: 22px;
    }

    .event-card p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .events .container {
        max-width: 95%;
    }

    .event-card {
        flex: 0 0 calc((100% - 50px) / 2);
    }

    .events-header p {
        font-size: 1rem;
    }

    .quick-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .event-content h3 {
        font-size: 20px;
    }

    .event-content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .events .container {
        padding: 0 15px;
    }

    .event-card {
        flex: 0 0 calc(100% - 1rem) / 2;
    }

    .events-header h2 {
        font-size: 30px;
    }

    .events-header p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .quick-btn-filters {
        gap: 0.8rem;
    }

    .quick-btn {
        max-width: 300px;
    }

    .event-card img {
        height: 160px;
    }

    .event-card .content-overlay {
        height: 160px;
    }

    .events-grid {
        gap: 24px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .events .container {
        padding: 0 12px;
        max-width: 90%;
    }

    .events-header h2 {
        font-size: 30px;
    }

    .events-header p {
        font-size: 14px;
        width: 90%;
        margin: 0 auto;
        margin-bottom: 14px;
    }

    .quick-btn-filters {
        gap: 0.5rem;
        width: 200%;
    }

    .quick-btn {
        padding: 8px 14px;
        font-size: 12px;

    }

    .event-card {
        flex: 0 0 80%;
    }

    .event-card img {
        height: 140px;
    }

    .event-card .content-overlay {
        height: 140px;
        padding: 20px;
    }

    .event-content {
        padding: 16px 20px 10px;
    }

    .event-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .event-content p {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .slider-pagination {
        gap: 0.8rem;
        margin-top: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}


