/* =========================================
   🌍 GLOBAL RESET
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
}

body {
  background: #0c0c0c;
  color: #fff;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* Hero / Section Titles */
h1, h2, h3, .ppf-main-title, .elite-banner-content h1 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 10px 40px;
}

.Elite_Pro_Logo {
  height: 50px;
  transition: height 0.3s ease;
}

/* =========================================
   DESKTOP NAVIGATION
========================================= */
.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  position: relative;
}

.nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 4px;
}

.nav-list a:hover {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.05);
}

/* Submenu desktop */
.nav-list li {
  position: relative;
}

.nav-list li ul {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(0,0,0,0.95);
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.nav-list li:hover > ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-list li ul li a {
  display: block;
  padding: 10px 20px;
  font-weight: 400;
  transition: background 0.3s ease;
}

.nav-list li ul li a:hover {
  background: rgba(255,215,0,0.1);
  color: #ffd700;
}

/* =========================================
   MOBILE MENU
========================================= */
.menu {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu:hover {
  color: #ffd700;
}

/* MOBILE NAV FIXED */
.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(12px);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 998;
}

.mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255,215,0,0.1);
  color: #ffd700;
}

/* Mobile submenu */
.mobile-nav li ul {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 12px;
  padding-left: 15px;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.mobile-nav li ul li a {
  font-weight: 400;
  font-size: 1rem;
}

.mobile-nav li ul.active {
  max-height: 500px;
  opacity: 1;
}

/* =========================================
   BANNER
========================================= */
.elite-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.elite-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.elite-banner-content {
  position: absolute;
  top: 40%;
  left: 80px;
  transform: translateY(-50%);
  max-width: 650px;
}

.elite-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 14px;
  margin-bottom: 15px;
}

.elite-banner-content h1,
.elite-banner-content h2 {
  font-size: 3.2rem;
  font-weight: 600;
}

.elite-banner-content p {
  margin-top: 15px;
  color: #ddd;
}

/* =========================================
   RESPONSIVE
========================================= */

/* Large screens (4K) */
@media (min-width:1920px){
  .navbar{padding:25px 80px;}
  .Elite_Pro_Logo{height:70px;}
  .nav-list a{font-size:1.2rem; gap:40px;}
  .nav-list li ul{min-width:220px;}
  .elite-banner-content{left:150px; max-width:900px;}
  .elite-banner-content h1,.elite-banner-content h2{font-size:5rem;}
}

/* Desktop / Laptop */
@media (max-width:1440px) and (min-width:1025px){
  .navbar{padding:20px 60px;}
  .Elite_Pro_Logo{height:55px;}
  .nav-list a{font-size:1rem; gap:30px;}
  .elite-banner-content{left:60px; max-width:700px;}
  .elite-banner-content h1,.elite-banner-content h2{font-size:3.5rem;}
}

/* Tablets */
@media (max-width:1024px) and (min-width:769px){
  .navbar{padding:15px 40px;}
  .Elite_Pro_Logo{height:50px;}
  .nav-list a{font-size:0.95rem; gap:20px;}
  .elite-banner-content{left:40px; max-width:500px;}
  .elite-banner-content h1,.elite-banner-content h2{font-size:2.5rem;}
}

/* Mobile */
@media (max-width:768px){
  .nav-list{display:none;}
  .menu{display:block;}
  .Elite_Pro_Logo{height:45px;}
  .elite-banner-content{left:20px; top:40%; max-width:90%;}
  .elite-banner-content h1,.elite-banner-content h2{font-size:2rem;}
  .mobile-nav{top:60px; height:calc(100vh - 60px); padding:20px;}
  .mobile-nav li ul.active{max-height:400px;}
}

/* Extra small phones */
@media (max-width:400px){
  .Elite_Pro_Logo{height:40px;}
  .elite-banner-content h1,.elite-banner-content h2{font-size:1.5rem;}
  .elite-banner-content{left:15px; top:35%;}
  .mobile-nav li ul.active{max-height:350px;}
}
