:root {
            --jkclub-primary: #1a365d;
            --jkclub-secondary: #2a528a;
            --jkclub-accent: #e9b949;
            --jkclub-light: #f8f9fa;
            --jkclub-dark: #0d1b2a;
            --jkclub-sand: #e6d5b8;
            --jkclub-ocean: #1e6f8c;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            --jkclub-ocean: #059805;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, var(#015801), var(#059805));
            color: var(--jkclub-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .jkclub-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .jkclub-header {
            background: rgba(13, 27, 42, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .jkclub-navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .jkclub-logo {
            display: flex;
            align-items: center;
        }
        
        .jkclub-logo h1 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(45deg, var(--jkclub-accent), #f1b24a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 10px;
        }
        
        .jkclub-logo-icon {
            color: var(--jkclub-accent);
            font-size: 32px;
        }
        
        .jkclub-nav-links {
            display: flex;
            list-style: none;
        }
        
        .jkclub-nav-links li {
            margin-left: 30px;
        }
        
        .jkclub-nav-links a {
            color: var(--jkclub-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .jkclub-nav-links a:hover {
            color: var(--jkclub-accent);
        }
        
        .jkclub-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--jkclub-accent);
            transition: width 0.3s ease;
        }
        
        .jkclub-nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .jkclub-hero {
            padding: 120px 0;
            text-align: center;
            background: url('../others/murchison.webp') no-repeat center center/cover;
            position: relative;
        }
        
        .jkclub-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        }
        
        .jkclub-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .jkclub-hero h2 {
            font-family: 'Roboto', serif;
            font-size: 4.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        
        .jkclub-hero p {
            font-size: 1.6rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .jkclub-btn {
            display: inline-block;
            padding: 14px 38px;
            background: green;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.6rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid green;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .jkclub-btn:hover {
            background: transparent;
            color: white;
            transform: translateY(-5px);
        }
        
        /* About Section */
        .jkclub-about {
            padding: 100px 0;
            background: #f9f6f0;
        }
        
        .jkclub-section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .jkclub-section-title h2 {
            font-family: 'Roboto', serif;
            font-size: 3.5rem;
            display: inline-block;
            padding-bottom: 15px;
            position: relative;
            color: black;
        }
        
        .jkclub-section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: red;
        }
        
        .jkclub-about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .jkclub-about-text {
            flex: 1;
            color: #333;
        }
        
        .jkclub-about-text h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: green;
            text-align: justify;
        }
        
        .jkclub-about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 3px solid white;
        }
        
        .jkclub-about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .jkclub-about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Members Section */
        .jkclub-members {
            padding: 100px 0;
            /* background: rgba(203, 205, 207, 0.9); */
        }
        
        .jkclub-members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }
        
        .jkclub-member-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px;
            height: 100%;
        }
        
        .jkclub-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--jkclub-accent);
            background: rgba(255, 255, 255, 0.12);
        }
        
        .jkclub-member-image {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px;
            border-radius: 50%;
            /* background: linear-gradient(45deg, var(--jkclub-ocean), var(--jkclub-secondary)); */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            border: 3px solid var(--jkclub-accent);
        }
        
        .jkclub-member-info {
            padding: 10px 5px;
        }
        
        .jkclub-member-info h4 {
            font-size: 1.6rem;
            margin-bottom: 5px;
            color: green;
        }

        .jkclub-member-image img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 50%;
            /* border: 1px solid green; */
        }

        
        .jkclub-member-info p {
            color: #333;
            font-size: 1.4rem;
            font-style: italic;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .jkclub-trip-count {
            display: inline-block;
            background: rgba(233, 185, 73, 0.2);
            color: var(--jkclub-accent);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-top: 8px;
            font-style: normal;
        }
        
        /* Adventure Section */
        .jkclub-adventure {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../others/Diani.webp') no-repeat center center/cover;
            text-align: center;
            position: relative;
        }
        
        .jkclub-adventure::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66));
        }
        
        .jkclub-adventure-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .jkclub-adventure h2 {
            font-family: 'Roboto', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            color: green;
        }
        
        .jkclub-location {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 1.5rem;
        }
        
        .jkclub-location i {
            color: green;
            margin-right: 10px;
        }
        
        .jkclub-date {
            background: green;
            display: inline-block;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            margin: 20px 0;
            font-size: 1.6rem;
        }
        
        .jkclub-highlights {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin: 50px 0;
        }
        .jkclub-highlights h4 {
            font-size: 1.6rem;
        }
        
        .jkclub-highlight-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            padding: 25px 20px;
            width: 220px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .jkclub-highlight-card:hover {
            transform: translateY(-10px);
            border-color: green;
        }
        
        .jkclub-highlight-card i {
            font-size: 2.8rem;
            color: green;
            margin-bottom: 15px;
        }
        
        /* Join Section */
        .jkclub-join {
            padding: 100px 0;
            background: #f9f6f0;
        }
        
        
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .jkclub-about-content {
                flex-direction: column;
            }
            
            .jkclub-hero h2 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .jkclub-navbar {
                flex-direction: column;
            }
            
            .jkclub-nav-links {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .jkclub-nav-links li {
                margin: 10px 15px;
            }
            
            .jkclub-hero h2 {
                font-size: 2.2rem;
            }
            
            .jkclub-hero p {
                font-size: 1rem;
            }
            
            .jkclub-highlight-card {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .jkclub-nav-links {
                flex-direction: column;
                align-items: center;
            }
            
            .jkclub-nav-links li {
                margin: 8px 0;
            }
            
            .jkclub-hero {
                padding: 80px 0;
            }
            
            .jkclub-hero h2 {
                font-size: 1.8rem;
            }
            
            .jkclub-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .jkclub-members-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
                gap: 15px;
            }
        }