 /* ------------------------------
   GLOBAL STYLES — DARK THEME
--------------------------------*/

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;

    
}


    color: #e6e6e6;
    line-height: 1.6;
}

a {
    color: #f5c542;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
}

/* ------------------------------
   HEADER + NAVIGATION
--------------------------------*/

header {
    background-color: #0a0d12;
    border-bottom: 2px solid #f5c542;
    padding: 10px 0;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ✅ Small logo next to nav on ALL pages */
.logo {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav ul li a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("../img/hero-bg.jpg") center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

/* ✅ Centered logo ABOVE title (HOME PAGE ONLY) */
.home-logo {
    display: block;
    margin: 0 auto 24px;
    width: 600px; 
    height: auto;
    max-width: 80%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #f5c542;
}

/* ------------------------------
   CONTENT SECTIONS
--------------------------------*/

section {
    width: 90%;
    margin: 50px auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

section h2 {
    color: #f5c542;
    font-size: 2rem;
    margin-bottom: 15px;
}

section p {
    max-width: 300px;
    font-size: 1.05rem;
}

/* ------------------------------
   FOOTER
--------------------------------*/

footer {
    background-color: #0a0d12;
    color: #999;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 2px solid #f5c542;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* ------------------------------
   RESPONSIVE DESIGN
--------------------------------*/

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}
/* Hide header logo on home page only */
.home header .logo {
    display: none;
}
/* FINAL SAFETY NET — force home hero logo size */
.home section.hero img {
    width: 300px !important;
    height: auto !important;
    max-width: 80% !important;
}
 /* FINAL AUTHORITATIVE HOME LOGO RULE */
.home-logo {
    display: block;
    margin: 0 auto 24px;
    width: 300px;      /* adjust freely */
    height: auto;
    max-width: 600px;   /* large */ 
}
body {
     
}
/* ===== Header / Navigation ===== */

header {
  background: #fff;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
}

.logo {
  width: 260px;
  height: auto;
  flex-shrink: 0;
}/* ================== HEADER ================== */

header {
  background-color: #000000;   /* BLACK */
  border-bottom: 2px solid #c9a23f;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ================== LOGO ================== */

.logo {
  width: 260px;
  height: auto;
  flex-shrink: 0;
}

/* Bigger logo on home page */
.home.logo {
  width: 340px;
}

/* ================== NAV ================== */

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

nav a {
  color: #d4af37;              /* GOLD */
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #ffffff;              /* white on hover */
  text-decoration: underline;
}``