* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --111-black: #111;
    --666-grey: #666;
    --313-black: #313131;
    --golden: #D09B3A;
    --green: #009D53;
    --font-geist: "Geist", sans-serif;
    --font-literata: "Literata", serif;
}

body {
    font-family: var(--font-geist);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: var(--666-grey);
}


/* utilities */
p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.text-white {
    color: white !important;
}

.text-center {
    text-align: center !important;
}

.d-none {
    display: none !important;
}

.mx-auto {
    margin-inline: auto;
}

.mt-100 {
    margin-top: 100px;
}

.mb-0 {
    margin-bottom: 0;
}

.ym-container {
    max-width: 1600px;
    width: 100%;
    margin-inline: auto;
}

.title_90 {
    font-size: 120px;
    line-height: 130px;
    letter-spacing: -0.0417em;
    font-family: var(--font-literata);
    font-weight: 500;
    color: white;
}

.title_72 {
    font-family: var(--font-literata);
    font-size: 72px;
    line-height: 72px;
    margin-bottom: 40px;
    font-weight: 400;
    color: var(--111-black);

}

.title_68 {
    font-size: 42px;
    line-height: 58px;
    font-weight: 400;
    font-family: var(--font-literata);
    color: var(--111-black);
}

.title_24 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    font-family: var(--font-literata);
    color: var(--111-black);
}

.title_18_geist {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
}

.title_24_geist {
    font-size: 24px;
    line-height: 24px;
    color: var(--111-black);
}

.title_40_geist {
    font-size: 40px;
    font-weight: 500;
    line-height: normal;
    color: var(--golden);
}

.btn_1 {
    position: relative;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 20px;
    color: white;
    border: 1px solid transparent;
    z-index: 1;
    transition: all 0.4s ease;
    font-family: var(--font-literata);
    font-size: 24px;
    text-transform: capitalize;
    transition: 0.2s;
    padding: 15px 20px;
}

.btn_1::before {
    top: 0;
    right: 0;
    border-top: 1px solid var(--golden);
    border-left: 1px solid var(--golden);
}

.btn_1::before,
.btn_1::after {
    width: 0%;
    height: 0%;
    opacity: 0;
    transition: width 0.2s 0.15s linear, height 0.15s linear, opacity 0s 0.35s;
}

.btn_1::before,
.btn_1::after {
    position: absolute;
    content: "";
    background: transparent;
    z-index: 2;
}

.btn_1::after {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid var(--golden);
    border-right: 1px solid var(--golden);
}

.btn_1:hover::before,
.btn_1:hover::after {
    width: 100%;
    height: 99%;
    opacity: 1;
    transition: width 0.2s linear, height 0.15s 0.2s linear, opacity 0s;
}

/* Image transition */
.btn_1 svg {
    scale: 0.8;
}

.btn_1 #arrow {
    transition: transform 0.3s ease;
    animation: nudgeRight 0.8s ease-in-out infinite;
}

@keyframes nudgeRight {
    0% {
        transform: translateX(-3px);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(-3px);
    }
}

.btn_1.black {
    color: var(--111-black);
}

/* utilities */

/* Header */
/* ===== HEADER ===== */

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    padding: 20px 0;
}

header.is-glass {
    background: rgba(43, 43, 43, 0.83);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(43, 43, 43, 0.64);
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
}

/* ===== LOGO ===== */
.logo img {
    max-height: 66px;
}

/* ===== MENU ===== */
.nav-links {
    display: flex;
    gap: 60px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: all 0.6s ease;
}

.nav-links a:hover {
    color: var(--golden);
    transition: all 0.6s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Active Cross */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    background: #111;
    display: flex;
    align-items: center;
    transition: right 0.5s ease;
    padding: 20px;
}

.mobile-menu.active {
    top: 100px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 30px;
}

.mobile-menu a {
    color: white;
    font-size: 22px;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    nav {
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo {
        order: 1;
    }

    .hamburger {
        order: 2;
    }
}

/* hero css */
.hero_wrapper {
    position: relative;
}

.hero_content {
    position: absolute;
    max-width: 1600px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.hero_title {
    width: fit-content;
    margin-left: auto;
    margin-bottom: 50px;
}

/* hero css */
/* philosophy css */
.black_bg {
    background-color: var(--313-black);
    padding: 70px 0;
}

.philosophy {
    margin-top: -0.3%;
}

.phil_container {
    max-width: 1760px;
    width: 100%;
    margin-left: auto;
    overflow: hidden;
}

.phil_wrapper {
    display: grid;
    grid-template-columns: 38% 58%;
    justify-content: space-between;
}

.phil_container .btn_1 {
    margin-top: 40px;
}

/* philosophy css*/
/* welcome css */
.club_head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.welcome_wrapper {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
}

.club_box {
    height: 180px;
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* welcome css */
/* member css */
.member_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px
}

.member_left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.member_left .title_72{margin-bottom:20px;}

.member {
    list-style-image: url('../images/marker.svg');
    padding-inline-start: 40px;
}

.member li:not(:last-child) {
    margin-bottom: 20px;
}

/* member css */
/* facilities css */
.facilities_wrapper {
    display: flex;
}

.fac_left {
    width: 60%;
}

.fac_right {
    width: 40%;
    transform: translate(-20%, 8%);
    position: absolute;
    right: 0;
}

.slider_nav_wrap {
    background-color: white;
    height: 500px;
    padding: 50px;
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.custom-fraction {
    font-size: 38px;
    /* margin-bottom: 30px; */
    color: var(--golden);
    font-weight: 500;
}

.slider_nav_wrap .title_24_geist {
    margin-bottom: 0;
}

.slider_nav_wrap .custom_arrow {
    margin: 0;
}

/* facilities css */
/* activities css */
.activity_head {
    text-align: center;
    max-width: 1110px;
    margin-inline: auto;
    margin-bottom: 40px;
}

.act_slide {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.custom_arrow {
    display: flex;
    justify-content: start;
    width: fit-content;
    height: 50px;
    gap: 24px;
    margin-top: 23px;
    cursor: pointer;
    margin-left: 20px;
}

.is-disabled {
    filter: opacity(0.5);
    cursor: no-drop;
}

.act-prev,
.fac-prev {
    rotate: -180deg;
}

.act_slider .slick-slide {
    margin-inline: 20px;
}

/* activities css */
/* contact */
.contact_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 200px;
    /*margin-top: 60px;*/
}

.contact_wrapper .title_24 {
    display: block;
    margin-bottom: 10px;
}

.ct_bg {
    background-image: url('../images/ct-bg.png');
    background-repeat: no-repeat;
}


.form_wrapper input,
.form_wrapper textarea {
    border: none;
    border-bottom: 1px solid #D9D9D9;
    padding: 6px;
    width: 100%;
    font-size: 18px;
    font-family: var(--font-geist);
    background-color: transparent;
}

.form_group {
    margin-bottom: 20px;
}

.submit_btn {
    /* Layout & Base Styles */
    position: relative;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 20px;
    background: transparent;
    /* Changed from var(--111-black) */
    color: var(--111-black);
    z-index: 1;
    font-family: var(--font-literata);
    /* Use your Literata font variable */
    font-size: 24px;
    /* Increased from inherit */
    text-transform: capitalize;
    padding: 15px 20px;
    /* Adjusted from the pill-padding */
    border: 1px solid transparent;
    /* Required for the drawing effect */
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* 1. Drawing Borders - Common Setup */
.submit_btn::before,
.submit_btn::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    opacity: 0;
    z-index: 2;
    background: transparent;
    box-sizing: border-box;
    transition: width 0.2s 0.15s linear, height 0.15s linear, opacity 0s 0.35s;
}

/* 2. Top-Right Corner (Draws Top and Left) */
.submit_btn::before {
    top: 0;
    right: 0;
    border-top: 1px solid var(--golden);
    border-left: 1px solid var(--golden);
}

/* 3. Bottom-Left Corner (Draws Bottom and Right) */
.submit_btn::after {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid var(--golden);
    border-right: 1px solid var(--golden);
}

/* 4. Hover State: Triggering the Draw */
.submit_btn:hover::before,
.submit_btn:hover::after {
    width: 100%;
    height: 100%;
    /* Changed to 100% for a better seal */
    opacity: 1;
    transition: width 0.2s linear, height 0.15s 0.2s linear, opacity 0s;
}

/* 5. Icon/SVG Handling */
.submit_btn svg {
    transform: scale(0.8);
    /* Replaces 'scale: 0.8' for better browser support */
}

.submit_btn #arrow {
    animation: nudgeRight 0.8s ease-in-out infinite;
}



/* contact */

/* footer */
footer {
    background-color: var(--111-black);
    padding: 40px 0;
    color: white;
}

.ft_wrapper {
    display: grid;
    grid-template-columns: 27% 52%;
    justify-content: space-between;
}

.ft_right {
    display: flex;
    gap: 25%;
}

.ft_left img {
    margin-bottom: 50px;
}

.ft_list {
    list-style: none;
    padding: 0;
}

.ft_list li {
    margin-top: 30px;
    white-space: nowrap;
}

.ft_line {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.ft_line a{flex:1;}

.ft_btm {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid #bbb;
    display: flex;
    justify-content: space-between;
}

footer .ft_line a:hover,
.ft_btm a:hover,
.ft_list li a:hover {
    color: var(--green);
    transition: all 0.6s ease;
}

/* footer */
/* lifestyle slider */