body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f4f0;
    margin: 0;
    color: #222;
}
/* Hide page scrollbars globally while preserving scrolling */
html, body {
    -ms-overflow-style: none; /* IE and old Edge */
    scrollbar-width: none;    /* Firefox */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
.main-nav {
    background: rgba(60, 60, 60, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: fixed;
    width: 100%;
    z-index: 100;
}
.main-nav, .main-nav a, .main-nav span { color: #fff !important; }
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.hero {
    position: relative;
    height: 100vh;
    min-height: 400px;
    width: 100%;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 1;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-section {
    position: relative;
    height: 300px;
    width: 100%;
}
.hero-bg {
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px #222;
}
.gallery-main {
    padding: 2.5rem 6vw 4rem 6vw;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
}
.gallery-section {
    display: flex;
    flex-direction: column;
}
.gallery-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-card {
    background: transparent;
    box-shadow: none;
}
.gallery-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
}
.gallery-card-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.gallery-card-menu button {
    background: #eee;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.gallery-label {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Gallery Link Styles */
.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-link:hover {
    transform: translateY(-5px);
}

.gallery-link:hover .gallery-img {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-video {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- LOGIN PAGE STYLES --- */
.login-bg {
    min-height: 100vh;
    background: url('/assets/images/hero-bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-card {
    background: #f7f4f0;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    width: 420px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.login-logo img {
    width: 80px;
    margin-bottom: 1rem;
}
.login-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.login-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #222;
    font-weight: 500;
}
.login-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.1rem;
    border: none;
    border-radius: 16px;
    background: #fff;
    font-size: 1.1rem;
    color: #444;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    outline: none;
    transition: box-shadow 0.2s;
}
.login-input:focus {
    box-shadow: 0 0 0 2px #b6e36b;
}
.login-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.login-links a {
    color: #3a7d1c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.login-links a:hover {
    color: #e6c800;
}
.login-btn {
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(90deg, #e6c800 0%, #b6e36b 100%);
    color: #222;
    font-size: 1.3rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}
.login-btn:hover {
    background: linear-gradient(90deg, #b6e36b 0%, #e6c800 100%);
    color: #222;
}
.arrow {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    color: #3a7d1c;
    font-weight: bold;
}

/* --- FOOTER STYLES --- */
.footer {
    background: #666;
    color: #fff;
    padding: 2.5rem 0 1.5rem 0;
    font-family: 'Montserrat', Arial, sans-serif;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}
.footer-col {
    flex: 1 1 250px;
    min-width: 220px;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-top: 0.2rem;
}
.footer-company {
    font-weight: 700;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.3rem;
}
.footer-desc {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: #fff;
    line-height: 1.5;
}
.footer-learn {
    color: #fff;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-learn:hover {
    color: #e6c800;
}
.footer-contact h4,
.footer-links h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.footer-label {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 0.5rem;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #e6c800;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .footer-col {
        min-width: 0;
    }
    .footer-brand {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* --- PROMOS PAGE --- */
.promos-main {
    padding: 3rem 6vw 4rem 6vw;
}
.promo-row {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 3rem;
    margin: 2.5rem 0 4rem 0;
}
.promo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.promo-text span {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}
.promo-text span:before,
.promo-text span:after {
    content: "";
    display: block;
    height: 3px;
    background: #222;
    width: 260px;
    margin: 18px auto;
}
.promo-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 12px 12px 0 rgba(0,0,0,0.2);
    overflow: hidden;
    width: 100%;
    max-width: 520px;
}
.promo-card img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .promo-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0 3rem 0;
    }
    .promo-text span:before,
    .promo-text span:after {
        width: 200px;
    }
    .promo-card {
        justify-self: center;
    }
}

/* --- BUYER'S GUIDE --- */
.buyers-main {
    padding: 3rem 6vw 5rem 6vw;
}
.buyers-header {
    text-align: center;
    margin: 1.5rem 0 2.5rem 0;
}
.buyers-heading {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}
.buyers-heading:before,
.buyers-heading:after {
    content: "";
    display: inline-block;
    height: 2px;
    background: #222;
    width: 80px;
    vertical-align: middle;
    margin: 0 18px;
}
.buyers-sub {
    font-weight: 600;
    margin-top: 1rem;
}
.buyers-flow {
    display: flex;
    justify-content: center;
}
.buyers-flow .buyers-flow-wrap {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem 1rem 1.25rem 1rem;
    width: 700px !important;
}
.buyers-flow .buyers-flow-img {
    width: 700px !important;
    height: 600px !important;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .buyers-heading:before,
    .buyers-heading:after {
        width: 48px;
    }
    .buyers-flow-wrap {
        padding: 0.5rem;
        border-radius: 14px;
    }
}

/* --- CLUBHOUSES --- */
.clubhouses-main {
    padding: 3rem 6vw 5rem 6vw;
}
.clubhouses-section {
    margin-bottom: 3.5rem;
}
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.section-title h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
}
.title-line {
    display: inline-block;
    height: 2px;
    background: #222;
    width: 180px;
}
.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}
.club-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.4rem;
}
.club-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 600px) {
    .title-line { width: 90px; }
}

/* --- ABOUT US --- */
.about-main { padding: 3rem 6vw 5rem 6vw; max-width: 1100px; margin: 0 auto; }
.lined-title { display:flex; align-items:center; justify-content:center; gap:1.2rem; margin-bottom:1.5rem; }
.lined-title h2 { font-size:2rem; letter-spacing:2px; }
.lined-title .line { height:2px; width:300px; background:#222; display:inline-block; }
.about-mv { display:grid; grid-template-columns: 1fr 1fr; gap:3rem; max-width: 980px; margin:2rem auto 2.5rem auto; align-items: start; }
.mv-item { display:flex; flex-direction: column; justify-content: flex-start; min-height: 120px; }
.about-mv h3 { font-weight: 700; letter-spacing: 0.5px; }
.about-mv p { font-size: 1.05rem; line-height: 1.7; text-align: justify; text-justify: inter-word; }
.about-mv h3 { margin-bottom:0.5rem; }
.about-copy { max-width: 980px; margin: 2rem auto; line-height: 1.8; font-size: 1.05rem; text-align: justify; text-justify: inter-word; }
.about-divider { border:none; border-top:2px solid rgba(0,0,0,0.6); margin:2.5rem auto; max-width: 980px; }
@media (max-width: 900px) {
    .lined-title .line { width: 160px; }
    .about-mv { grid-template-columns: 1fr; }
}

/* --- NEWS & EVENTS --- */
.news-main { max-width: 1200px; margin: 0 auto; padding: 2.5rem 6vw 4rem 6vw; }
.news-heading { text-align: center; font-size: 2.2rem; margin: 0 0 1.5rem 0; }
.news-card { background:#fff; border-radius:20px; box-shadow:0 2px 8px rgba(0,0,0,0.08); padding:0.5rem; margin-bottom:2rem; }
.news-video { width:100%; height: 420px; border:0; border-radius:16px; display:block; }
@media (max-width: 700px) { .news-video { height: 260px; } }

/* --- MOBILE NAV BEHAVIOR --- */
@media (max-width: 900px) {
    .main-nav { padding: 0 .9rem; }
    .center-nav { display: none; }
    .logo img { width: 180px !important; height: auto !important; }
}