:root {
  --blue: #006E7F;
  --dark: #0b3550;
  --gold: #000000;
  --muted: #5b6b7a;
  --white: #ffffff;
  --light-bg: #f8f9fb;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.7;
}
 /* NAVBAR */
.navbar {
  background: #000;
  height: 80px;
  padding: 0 20px;
}

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

/* DESKTOP MENU (FIXED ALIGNMENT) */
.desktop-menu {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.desktop-menu .nav-item {
  list-style: none;
}

.desktop-menu .nav-link {
  color: #f1f1f1 !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding: 0 !important;
  line-height: normal !important;
}

/* Hover underline */
.desktop-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f3c623d0;
  transition: width 0.3s ease;
}

.desktop-menu .nav-link:hover::after {
  width: 100%;
}


/* BRAND AREA */
.brand-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  margin-right: 12px;
}

.brand-text {
    padding-top: 8px;
  font-family: "Lexend Peta", sans-serif;
  display: flex;
  flex-direction: column;
  line-height: 18px;
}

.brand-title {
    padding-top: 4px;
     font-size: 30px; /* 26px*/
  /* font-weight: 300; */
  color:#debf5b;;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 13px;
  color: #fff9eb;
  margin-top: 1px;/* -2px*/
}

/* MOBILE MENU ICON */
.menu-icon {
  font-size: 25px; /* 35px*/
  color: #d8a114;
  cursor: pointer;
  display: none;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}


/* FORCE MOBILE HIDE — IMPORTANT FIX */
@media (max-width: 1000px) {
  .desktop-menu {
    display: none !important;
  }
  .menu-icon {
    display: block !important;
  }
  .brand-title {
    padding-top: 4px;
   font-size: 20px; /* 26px*/
  /* font-weight: 700; */
  color: #f8db7d;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 8px;
  color: #fff9eb;
  margin-top: 0px;/* -2px*/
}


}

/* SIDE MENU (Mobile Drawer) */
.side-menu {
  height: 100%;
  width: 260px;
  position: fixed;
  top: 0;
  right: 0;
  background: #000000;
  overflow-y: auto;
  padding-top: 80px;
  z-index: 999999;
  
  /* OLD: width transition → REMOVE */
  /* transition: 0.4s ease; */

  /* NEW SMOOTH ANIMATION */
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.9, 0.36, 1);
}

/* When opened */
.side-menu.open {
  transform: translateX(0);
}


/* Side menu links */
.side-menu a {
  padding: 15px 30px;
  font-size: 20px;
  color: #fff;
  display: block;
  text-decoration: none;
}

.side-menu a:hover {
  /* background: #0b740f; */
  color: #e1b532;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1000000;
}

/* ===== Hero Section ===== */
.hero {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(to right, #3b3b3b, #000000);
  border-bottom: 2px solid var(--gold);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: var(--dark);
}

.hero .subtitle {
  color: goldenrod;
  font-size: 18px;
  margin-bottom: 20px;
}

/* -------------------------- */
/* 📱 MOBILE RESPONSIVE PART  */
/* -------------------------- */
@media (max-width: 768px) {

  .hero {
    padding: 100px 20px;
    text-align: center;
  }

  .hero-content {
    margin-top: 100px;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 25px;
  }

  .hero-text h2 {
    font-size: 1.9rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .hero-image img {
    width: 280px;
  }
}

/* ===== Content ===== */
.content {
  padding: 80px 10%;
  background-color: var(--white);
}

.content h2 {
  color: var(--dark);
  font-size: 24px;
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  margin-top: 50px;
}

.content p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 16px;
}

.content ul {
  margin: 10px 0 20px 30px;
  color: var(--muted);
}

.content a {
  color: var(--blue);
  text-decoration: none;
}

blockquote {
  margin: 40px auto;
  padding: 20px 30px;
  background: var(--light-bg);
  border-left: 5px solid var(--gold);
  font-style: italic;
  color: var(--dark);
  border-radius: 10px;
}



/* Footer */
.footer a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

.footer p, .footer li {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
  .content {
    padding: 60px 6%;
  }
  .navbar {
    flex-direction: column;
  }
}
