@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================================================================
   GV HOME — SELF-CONTAINED PRESIDENTIAL PAGE
   ================================================================ */

.gv-home {
    min-height: 100vh;
    background: linear-gradient(160deg, #040d08 0%, #081a10 20%, #0e2d1c 50%, #14432a 80%, #1a5535 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gv-home-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 500px 500px at 15% 50%, rgba(0,148,96,0.08) 0%, transparent 100%),
        radial-gradient(ellipse 400px 400px at 85% 30%, rgba(252,209,22,0.04) 0%, transparent 100%),
        radial-gradient(ellipse 300px 300px at 50% 90%, rgba(206,17,38,0.03) 0%, transparent 100%);
    pointer-events: none;
}
.gv-home-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.gv-orb { position: absolute; border-radius: 50%; opacity: 0.06; }
.gv-orb-1 { width: 400px; height: 400px; top: -100px; right: -80px; background: radial-gradient(circle, rgba(0,148,96,0.3) 0%, transparent 70%); animation: gvFloat 20s ease-in-out infinite; }
.gv-orb-2 { width: 300px; height: 300px; bottom: -60px; left: 10%; background: radial-gradient(circle, rgba(252,209,22,0.3) 0%, transparent 70%); animation: gvFloat 25s ease-in-out infinite reverse; }
.gv-orb-3 { width: 200px; height: 200px; top: 40%; left: 45%; background: radial-gradient(circle, rgba(206,17,38,0.2) 0%, transparent 70%); animation: gvFloat 18s ease-in-out infinite 3s; }
@keyframes gvFloat { 0%,100%{transform:translate(0,0)} 25%{transform:translate(20px,-30px)} 50%{transform:translate(-10px,20px)} 75%{transform:translate(15px,10px)} }

.gv-home-tricolor { position: absolute; top: 0; left: 0; right: 0; height: 4px; display: flex; z-index: 100; }
.gv-home-tricolor span:nth-child(1) { flex: 1; background: #CE1126; }
.gv-home-tricolor span:nth-child(2) { flex: 1; background: #FCD116; }
.gv-home-tricolor span:nth-child(3) { flex: 1; background: #009460; }

/* ================================================================
   INTEGRATED NAV
   ================================================================ */
.gv-nav {
    position: relative;
    z-index: 50;
    padding: 0;
}
.gv-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.gv-nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.gv-nav-brand img {
    height: 44px;
    width: auto;
}
.gv-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gv-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    background: transparent;
    border: none;
}
.gv-nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.gv-nav-link svg { width: 16px; height: 16px; stroke-width: 1.5; }
.gv-nav-theme {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}
.gv-nav-theme:hover { background: rgba(255,255,255,0.1); color: #fff; }
.gv-nav-theme svg { width: 18px; height: 18px; }
.gv-nav-login {
    display: inline-flex;
    align-items: center;
    padding: 9px 24px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.gv-nav-login:hover { background: rgba(255,255,255,0.15); color: #fff; transform: translateY(-1px); }
.gv-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.gv-nav-toggle svg { width: 20px; height: 20px; }
.gv-nav-mobile {
    display: none;
    padding: 12px 48px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.gv-nav-mobile.show { display: flex; flex-direction: column; gap: 4px; }
.gv-nav-mob-link {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.gv-nav-mob-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Dropdown on home */
.gv-nav .dropdown-menu {
    background: rgba(10,31,20,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 4px;
    margin-top: 8px;
}
.gv-nav .dropdown-item {
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    font-size: 13px;
    padding: 8px 14px;
    font-family: 'Poppins', sans-serif;
}
.gv-nav .dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ================================================================
   CONTENT
   ================================================================ */
.gv-home-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 40px 60px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.gv-home-left { flex: 1; max-width: 560px; }
.gv-home-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.04);
    padding: 8px 18px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
}
.gv-home-pulse { width: 7px; height: 7px; border-radius: 50%; background: #009460; box-shadow: 0 0 10px #009460; animation: gvPH 2s infinite; }
@keyframes gvPH { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.gv-home-title { font-family: 'Playfair Display', Georgia, serif; font-size: 52px; font-weight: 500; color: #fff; margin: 0 0 18px; line-height: 1.12; }
.gv-home-highlight { background: linear-gradient(135deg, #FCD116 0%, #009460 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gv-home-desc { font-family: 'Poppins', sans-serif; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.42); margin: 0 0 36px; max-width: 460px; }
.gv-home-stats { display: flex; gap: 32px; align-items: center; }
.gv-hs { text-align: center; }
.gv-hs-num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: #FCD116; line-height: 1; }
.gv-hs-label { font-family: 'Poppins', sans-serif; font-size: 10px; color: rgba(255,255,255,0.28); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.gv-hs-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* JOIN CARD */
.gv-home-right { flex-shrink: 0; width: 420px; }
.gv-join-card {
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px; padding: 40px 36px;
    position: relative; overflow: hidden;
}
.gv-join-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #CE1126, #FCD116, #009460); }
.gv-join-card-header { text-align: center; margin-bottom: 28px; }
.gv-join-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(0,148,96,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.gv-join-icon svg { width: 26px; height: 26px; stroke: #009460; }
.gv-join-card-header h2 { font-family: 'Poppins', sans-serif; font-size: 19px; font-weight: 600; color: #fff; margin: 0 0 5px; }
.gv-join-card-header p { font-family: 'Poppins', sans-serif; font-size: 12px; color: rgba(255,255,255,0.38); margin: 0; }
.gv-join-form { margin-bottom: 18px; }
.gv-join-input-wrap { position: relative; margin-bottom: 12px; }
.gv-join-input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: rgba(255,255,255,0.22); pointer-events: none; }
.gv-join-input-wrap input {
    width: 100%; padding: 14px 18px 14px 46px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px; color: #fff;
    font-family: 'Poppins', sans-serif; font-size: 14px;
    outline: none; transition: all 0.3s; box-sizing: border-box;
}
.gv-join-input-wrap input::placeholder { color: rgba(255,255,255,0.22); }
.gv-join-input-wrap input:focus { border-color: #009460; background: rgba(255,255,255,0.08); box-shadow: 0 0 0 4px rgba(0,148,96,0.12); }
.gv-join-submit {
    width: 100%; padding: 14px;
    background: #009460; color: #fff; border: none; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 6px 28px rgba(0,148,96,0.4);
}
.gv-join-submit:hover { background: #007a4e; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,148,96,0.5); }
.gv-join-submit svg { width: 20px; height: 20px; }
.gv-join-footer { text-align: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 4px; }
.gv-join-footer span { font-family: 'Poppins', sans-serif; font-size: 12px; color: rgba(255,255,255,0.32); }
.gv-join-footer a { font-family: 'Poppins', sans-serif; font-size: 12px; color: #FCD116; text-decoration: none; font-weight: 600; margin-left: 4px; transition: color 0.2s; }
.gv-join-footer a:hover { color: #fff; }
.gv-join-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; font-family: 'Poppins', sans-serif; font-size: 10px; color: rgba(255,255,255,0.2); }
.gv-join-secure svg { color: #009460; }

/* Bottom */
.gv-home-bottom { position: relative; z-index: 1; text-align: center; padding: 16px; }
.gv-home-bottom p { font-family: 'Poppins', sans-serif; font-size: 11px; color: rgba(255,255,255,0.18); margin: 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media screen and (max-width: 1100px) {
    .gv-home-content { gap: 40px; padding: 40px 32px; }
    .gv-home-title { font-size: 40px; }
    .gv-home-right { width: 380px; }
    .gv-nav-inner { padding: 16px 32px 0; }
}
@media screen and (max-width: 991px) {
    .gv-nav-links { display: none; }
    .gv-nav-toggle { display: flex; }
    .gv-nav-mobile { padding: 12px 32px 16px; }
    .gv-nav-inner { padding: 16px 24px 0; }
}
@media screen and (max-width: 767px) {
    .gv-home-content { flex-direction: column; padding: 24px 20px; gap: 28px; text-align: center; }
    .gv-home-left { max-width: 100%; }
    .gv-home-title { font-size: 30px; }
    .gv-home-desc { font-size: 13px; max-width: 100%; margin-bottom: 24px; }
    .gv-home-stats { justify-content: center; gap: 20px; }
    .gv-hs-num { font-size: 22px; }
    .gv-hs-sep { height: 28px; }
    .gv-home-right { width: 100%; max-width: 380px; }
    .gv-join-card { padding: 28px 22px; border-radius: 16px; }
    .gv-home-badge { font-size: 9px; padding: 6px 14px; margin-bottom: 18px; }
    .gv-nav-inner { padding: 12px 16px 0; }
    .gv-nav-brand img { height: 36px; }
    .gv-nav-mobile { padding: 8px 16px 16px; }
}
@media only screen and (min-width:768px) and (max-width:959px) {
    .gv-home-content { gap: 36px; padding: 32px 24px; }
    .gv-home-title { font-size: 36px; }
    .gv-home-right { width: 340px; }
    .gv-join-card { padding: 32px 28px; }
}

/* ================================================================
   DARK / LIGHT MODE
   The home page base is dark green. In light mode, we keep it.
   In dark mode, we make it even darker/more contrast.
   ================================================================ */
[data-bs-theme="dark"] .gv-home {
    background: linear-gradient(160deg, #020805 0%, #040d08 20%, #071a0f 50%, #0a2416 80%, #0d2e1c 100%);
}
[data-bs-theme="dark"] .gv-join-card {
    background: rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.05);
}
[data-bs-theme="dark"] .gv-join-input-wrap input {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
}
[data-bs-theme="dark"] .gv-home-title { color: #e8e8e8; }
[data-bs-theme="dark"] .gv-home-desc { color: rgba(255,255,255,0.35); }
[data-bs-theme="dark"] .gv-hs-num { color: #e6be00; }

/* Light mode — warmer, brighter feel */
[data-bs-theme="light"] .gv-home {
    background: linear-gradient(160deg, #081a10 0%, #0e2d1c 20%, #14432a 50%, #1a5535 80%, #1f6640 100%);
}
[data-bs-theme="light"] .gv-join-card {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
}
[data-bs-theme="light"] .gv-join-input-wrap input {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
}
[data-bs-theme="light"] .gv-home-title { color: #ffffff; }
[data-bs-theme="light"] .gv-hs-num { color: #FCD116; }

/* ================================================================
   DARK MODE — Light theme changes for home page
   ================================================================ */
[data-bs-theme="light"] .gv-home {
    background: linear-gradient(160deg, #f5f7f6 0%, #e8ede9 30%, #dce5de 60%, #d0ddd3 100%);
}
[data-bs-theme="light"] .gv-home-bg {
    background:
        radial-gradient(ellipse 500px 500px at 15% 50%, rgba(0,148,96,0.06) 0%, transparent 100%),
        radial-gradient(ellipse 400px 400px at 85% 30%, rgba(252,209,22,0.04) 0%, transparent 100%),
        radial-gradient(ellipse 300px 300px at 50% 90%, rgba(206,17,38,0.02) 0%, transparent 100%);
}
[data-bs-theme="light"] .gv-orb-1 { background: radial-gradient(circle, rgba(0,148,96,0.1) 0%, transparent 70%); }
[data-bs-theme="light"] .gv-orb-2 { background: radial-gradient(circle, rgba(252,209,22,0.08) 0%, transparent 70%); }
[data-bs-theme="light"] .gv-orb-3 { background: radial-gradient(circle, rgba(206,17,38,0.06) 0%, transparent 70%); }
[data-bs-theme="light"] .gv-home-badge { color: rgba(0,0,0,0.45); background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.06); }
[data-bs-theme="light"] .gv-home-title { color: #0f2b1e; }
[data-bs-theme="light"] .gv-home-highlight { background: linear-gradient(135deg, #b8860b 0%, #006340 100%); -webkit-background-clip: text; background-clip: text; }
[data-bs-theme="light"] .gv-home-desc { color: rgba(0,0,0,0.5); }
[data-bs-theme="light"] .gv-hs-num { color: #006340; }
[data-bs-theme="light"] .gv-hs-label { color: rgba(0,0,0,0.35); }
[data-bs-theme="light"] .gv-hs-sep { background: rgba(0,0,0,0.1); }
[data-bs-theme="light"] .gv-join-card { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); border-color: rgba(0,0,0,0.08); }
[data-bs-theme="light"] .gv-join-card-header h2 { color: #0f2b1e; }
[data-bs-theme="light"] .gv-join-card-header p { color: rgba(0,0,0,0.45); }
[data-bs-theme="light"] .gv-join-input-wrap input { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.12); color: #1a1a1a; }
[data-bs-theme="light"] .gv-join-input-wrap input::placeholder { color: rgba(0,0,0,0.3); }
[data-bs-theme="light"] .gv-join-input-wrap input:focus { border-color: #009460; background: #fff; box-shadow: 0 0 0 4px rgba(0,148,96,0.1); }
[data-bs-theme="light"] .gv-join-input-icon { color: rgba(0,0,0,0.25); }
[data-bs-theme="light"] .gv-join-footer span { color: rgba(0,0,0,0.4); }
[data-bs-theme="light"] .gv-join-footer a { color: #006340; }
[data-bs-theme="light"] .gv-join-secure { color: rgba(0,0,0,0.3); }
[data-bs-theme="light"] .gv-home-bottom p { color: rgba(0,0,0,0.25); }

/* Nav in light mode */
[data-bs-theme="light"] .gv-nav-link { color: rgba(0,0,0,0.55); }
[data-bs-theme="light"] .gv-nav-link:hover { color: #0f2b1e; background: rgba(0,0,0,0.04); }
[data-bs-theme="light"] .gv-nav-theme { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); color: rgba(0,0,0,0.45); }
[data-bs-theme="light"] .gv-nav-theme:hover { background: rgba(0,0,0,0.08); color: #1a1a1a; }
[data-bs-theme="light"] .gv-nav-login { background: #009460; border-color: #009460; color: #fff; }
[data-bs-theme="light"] .gv-nav-login:hover { background: #007a4e; }
[data-bs-theme="light"] .gv-nav .dropdown-menu { background: rgba(255,255,255,0.95); border-color: rgba(0,0,0,0.08); }
[data-bs-theme="light"] .gv-nav .dropdown-item { color: rgba(0,0,0,0.7); }
[data-bs-theme="light"] .gv-nav .dropdown-item:hover { background: rgba(0,0,0,0.04); color: #1a1a1a; }
[data-bs-theme="light"] .gv-nav-mob-link { color: rgba(0,0,0,0.6); }
[data-bs-theme="light"] .gv-nav-mob-link:hover { color: #1a1a1a; background: rgba(0,0,0,0.04); }
[data-bs-theme="light"] .gv-nav-mobile { background: rgba(255,255,255,0.95) !important; }
