:root {
    --club-blue: #1a3e6f;
    --club-gold: #d4af37;
    --club-light: #f5f5f5;
    --club-dark: #0a1a2f;
    --club-red: #b30000;
    --club-green: #2e5e2e;
}

[data-aos] {
  transition-property: transform, opacity !important;
  transition-duration: 600ms !important;
  transition-timing-function: ease-out !important;
}

body {
    background-color: var(--club-light);
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: var(--club-blue) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: white !important;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--club-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--club-gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-gold {
    background-color: var(--club-gold);
    color: var(--club-blue);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold:hover {
    background-color: #c19d2e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel .carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: rgba(26, 62, 111, 0.6);
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--club-blue);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--club-gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.facility-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.facility-card .card-body {
    padding: 25px;
}

.facility-icon {
    font-size: 2.5rem;
    color: var(--club-blue);
    margin-bottom: 15px;
}

.gallery-section {
    background-color: white;
    padding: 100px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 62, 111, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.members-section {
    background: linear-gradient(135deg, var(--club-blue) 0%, var(--club-dark) 100%);
    color: white;
    padding: 100px 0;
}

.member-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 10px;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--club-gold);
    margin-bottom: 15px;
    align-items: center;
    margin: 0px auto;
}

.member-card .card-body {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.member-card .card-body a{
    margin-bottom: 7px;
}

.member-position {
    color: var(--club-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.member-name {
    color: var(--club-dark);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.member-bio {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-title {
    color: var(--club-gold);
    text-align: center;
    margin: 40px 0 20px;
    font-weight: 700;
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before, .slick-next:before {
    font-size: 40px;
    color: var(--club-blue);
    opacity: 0.7;
}

.slick-prev:hover:before, .slick-next:hover:before {
    opacity: 1;
    color: var(--club-gold);
}

.members-section .slick-prev:before,
.members-section .slick-next:before {
    color: white;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--club-blue);
}

.slick-dots li.slick-active button:before {
    color: var(--club-gold);
}

.members-section .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
}

.members-section .slick-dots li.slick-active button:before {
    color: var(--club-gold);
}

@media (max-width: 768px) {
    .member-card {
        height: 280px;
        padding: 15px;
    }

    .member-img {
        height: 80px;
        width: 80px;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-position {
        font-size: 0.8rem;
    }

    .member-bio {
        font-size: 0.8rem;
    }

    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}


.footer {
    background-color: var(--club-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--club-gold);
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--club-gold);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}


.event-card {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    height: 250px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-date-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--club-blue);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-date-overlay .day {
    font-size: 1.5rem;
    line-height: 1;
}

.event-date-overlay .month {
    font-size: 0.8rem;
    line-height: 1;
    text-transform: uppercase;
}

.event-content {
    width: 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-title {
    color: var(--club-blue);
    margin-bottom: 10px;
}

.event-description {
    color: #666;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
    }

    .event-image {
        width: 100%;
        height: 200px;
    }

    .event-content {
        width: 100%;
    }
}

.member-category-btn {
    background-color: white;
    color: var(--club-blue);
    border: 1px solid var(--club-blue);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
    font-weight: 600;
}

.member-category-btn:hover {
    background-color: var(--club-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(212, 175, 55, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-icon {
    background-color: var(--club-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        height: 70vh;
    }

    .hero-carousel .carousel-item {
        height: 70vh;
    }
}
