/* =========================
   GLOBAL THEME
========================= */

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #000;          /* full black */
    color: #D4AF37;            /* gold text */
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* default text styling */
p, h1, h2, h3, h4, span, li {
    color: #D4AF37;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 70px 20px;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    background: #D4AF37;
    color: #000;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

/* =========================
   INPUTS
========================= */

.input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;

    background: #111;
    border: 1px solid #333;
    border-radius: 8px;

    color: #D4AF37;
}

/* =========================
   CARDS (GLOBAL)
========================= */

.card {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.15);
}
/* =========================
   NAVBAR LAYOUT
========================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;
    background: #000;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* LEFT */
.nav-left h1 {
    margin: 0;
    color: #D4AF37;
    letter-spacing: 3px;
}

/* RIGHT LINKS */
.nav-right a {
    margin-left: 20px;
    text-decoration: none;
    color: #D4AF37;
    transition: 0.3s ease;
}

.nav-right a:hover {
    color: #FFD700;
}

/* =========================
   LUXURY NAVBAR
========================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 40px;

    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(212,175,55,0.15);

    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo {
    color: #D4AF37;
    margin: 0;
    letter-spacing: 4px;
    font-size: 20px;
}

/* LINKS */
.nav-right {
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 1px;

    transition: 0.3s;
    position: relative;
}

/* HOVER EFFECT */
.nav-link:hover {
    color: #FFD700;
}

/* GOLD UNDERLINE ANIMATION */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0%;
    height: 1px;
    background: #D4AF37;

    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}
/* =========================
   GLOBAL FORM STYLE SYSTEM
========================= */

.field input,
.field select,
.field textarea,
.dj-card button {

    width: 100%;
    padding: 14px;

    border-radius: 10px;

    font-size: 14px;
    letter-spacing: 0.5px;

    box-sizing: border-box;
}

/* =========================
   INPUT STYLE
========================= */

.field input,
.field select,
.field textarea {

    background: rgba(0, 0, 0, 0.4);

    border: 1px solid rgba(212,175,55,0.2);

    color: #fff;

    transition: 0.3s ease;
}

/* focus effect */
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212,175,55,0.15);
}

/* =========================
   BUTTON STYLE (MATCH INPUTS)
========================= */

.dj-card button {

    background: #D4AF37;
    color: #000;

    border: 1px solid #D4AF37;

    font-weight: bold;
    letter-spacing: 2px;

    cursor: pointer;
    transition: 0.3s ease;
}

/* hover */
.dj-card button:hover {
    background: transparent;
    color: #D4AF37;

    box-shadow: 0 0 15px rgba(212,175,55,0.25);
}

/* =========================
   DROPDOWN TEXT COLOR FIX
========================= */

.field select:invalid {
    color: #777;
}
.social-links a {
    font-size: 20px;
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}
nav a {
  font-size: 16px;
  font-family: inherit;
  text-decoration: none;
  color: white;
  margin: 0 15px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #000;
  color: #fff;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: black;
    position: absolute;
    top: 60px;
    right: 0;
    width: min(240px, calc(100vw - 24px));
    padding: 20px;
  }

  .nav-links a {
    margin: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .logo {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.membership-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: white;
    font-size: 16px;
}

.membership-input::placeholder {
    color: #aaa;
}

.membership-input:focus {
    outline: none;
    border-color: #ffcc00;
}

/* Shared nav system (overrides legacy nav blocks above) */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.logo {
    font-size: clamp(14px, 2.3vw, 20px);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    color: #f3f3f3;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #D4AF37;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    color: #D4AF37;
    background: transparent;
    padding: 6px 10px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        right: 16px;
        top: calc(100% + 8px);
        min-width: 220px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 10px;
        background: #090909;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        font-size: 16px;
    }
}

/* Mobile polish overrides */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 14px;
    }

    .logo {
        font-size: 14px;
        letter-spacing: 1px;
        max-width: calc(100vw - 88px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .section {
        padding: 46px 14px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 14px;
    }
}
