/* =========================
RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
BASE
========================= */

body {
  font-family: Georgia, serif;
  background: #f7f3ee;
  color: #2a211c;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
NAVIGATION
========================= */

.nav {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 10;
}

.nav a,
.nav button {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 14px;
  border-radius: 24px;
  color: #2d1d12;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: 0.2s ease;
  font-size: 0.9rem;
}

.nav a:hover,
.nav button:hover {
  background: rgba(255,255,255,0.25);
}

/* =========================
GLOW HERO
========================= */

.glow-hero {
  height: 100vh;
background-image: url("./images/crown-glow-retreat.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px;
  position: relative;
}

.hero-overlay {
  max-width: 520px;
  padding: 40px;
}

.hero-tag {
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  color: #2d1d12;
}

.glow-hero h1 {
  font-size: 5.5rem;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #2d1d12;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #3d3128;
}

/* =========================
BUTTON
========================= */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  background: rgba(45, 29, 18, 0.92);
  color: white;
  transition: all 0.25s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(31, 20, 13, 0.96);

}

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

/* =========================
CONTAINER
========================= */

.container {
  width: 90%;
  max-width: 1100px;
  margin: 80px auto;
}

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

section {
  margin-bottom: 80px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

p {
  color: #5b514b;
}

/* =========================
PROJECT GRID
========================= */

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.project-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.project-card h3 {
  margin: 14px 0;
}

/* =========================
FOOTER
========================= */

.footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

/* =========================
MOBILE
========================= */

@media (max-width: 700px) {

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
  }

  .glow-hero {
    padding: 30px 20px;
    height: auto;
    min-height: 100vh;
  }

  .hero-overlay {
    padding: 24px;
  }

  .glow-hero h1 {
    font-size: 3.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .container {
    width: 92%;
  }
}
a {
  text-decoration: none;
}
/* =========================
CONTACT PAGE
========================= */

.contact-section {
  max-width: 700px;
  margin: 120px auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-section h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #2d1d12;
}

.contact-section p {
  font-size: 1.1rem;
  color: #5f5a56;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
}

/* Remove default link styling */
.project-card {
  text-decoration: none;
  color: inherit;
}

.project-card h3 {
  text-decoration: none;
}

.project-card p {
  text-decoration: none;
}

.project-card:hover {
  text-decoration: none;
}
.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto 80px;
background: rgba(255,255,255,0.52);
backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  
}

.hero,
.work-with-me,
.about-preview,
.skills-section,
.projects-section {
  margin-bottom: 70px;
  text-align: center;
}

.hero {
  padding: 70px 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8f4ef, #efe5dc);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 16px;
}

.projects,
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.project-card,
.skill-card {
  background: #faf8f6;
  border: 1px solid #eee5dc;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

@media (max-width: 700px) {
  .container {
    padding: 24px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .projects,
  .skills-grid {
    grid-template-columns: 1fr;
  }
}
.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}
.featured-project {
  grid-column: span 2;
}

.featured-project img {
  height: 320px;
}

@media (max-width: 700px) {
  .featured-project {
    grid-column: span 1;
  }
}
.project-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}

.featured-project {
  grid-column: span 2;
}

.featured-project .project-image {
  height: 320px;
}

@media (max-width: 700px) {
  .featured-project {
    grid-column: span 1;
  }

  .featured-project .project-image {
    height: 220px;
  }
}

/* =========================
HERITAGE ESSENTIALS PAGE
========================= */

.heritage-hero {
  min-height: 100vh;
  background-image: url("./images/heritage-essentials.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px;
  position: relative;
}

.heritage-content {
  max-width: 620px;
  background: rgba(248, 243, 236, 0.72);
  backdrop-filter: blur(6px);
  padding: 44px;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.heritage-content .hero-tag {
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 20px;
  color: #4b3425;
}

.heritage-content h1 {
  font-size: 4.8rem;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #2d1d12;
}

.heritage-content .hero-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #3d3128;
}

@media (max-width: 700px) {
  .heritage-hero {
    padding: 40px 24px;
    background-position: center right;
  }

  .heritage-content {
    padding: 28px;
  }

  .heritage-content h1 {
    font-size: 3rem;
  }
}
.heritage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
}

.heritage-content {
  position: relative;
  z-index: 2;

}
.about-image img {
  width: 180px !important;
  height: 180px !important;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin: 0 auto 24px;
}

/* =========================
SERVICES PAGE
========================= */

.services-hero {
  min-height: 90vh;
  background-image: url("./images/services-background.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px;
  position: relative;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
}

.services-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  padding: 50px;
  border-radius: 28px;
}

.services-hero h1 {
  font-size: 4rem;
  line-height: 0.95;
  margin-bottom: 24px;
  color: white;
}

.services-hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .services-hero {
    padding: 40px 24px;
  }

  .services-hero h1 {
    font-size: 3rem;
  }

  .services-hero .hero-content {
    padding: 30px;
  }
}
.about-image img {
  width: 180px !important;
  height: 180px !important;
  max-width: 180px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  display: block;
  margin: 0 auto 24px;
}.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
/* =========================
HOMEPAGE HERO
========================= */

.home-hero {
  min-height: 100vh;
  background-image: url("./images/homepage-hero.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px;
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
}

.home-hero .hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 720px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  padding: 50px;
  border-radius: 28px;
}

.home-hero h1 {
  font-size: 5rem;
  line-height: 0.95;
  margin-bottom: 24px;
  color: white;
}

.home-hero .hero-text {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.home-hero .hero-tag {
  color: rgba(255,255,255,0.75);
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.home-hero .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {

  .home-hero {
    padding: 40px 24px;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .home-hero .hero-overlay {
    padding: 30px;
  }
 }

/* =========================
CONTACT HERO
========================= */

.contact-hero {
  min-height: 100vh;
  background-image: url("./images/contact-background.PNG");
  background-size: cover;
  background-position: center;
  padding: 140px 80px 80px;
  display: flex;
  align-items: center;
}

.contact-overlay {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}

.contact-left h1 {
  font-size: 5rem;
  line-height: 0.95;
  color: white;
  margin-bottom: 24px;
}

.contact-left .hero-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 520px;
}

.contact-card {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 28px;
}

.contact-card h2 {
  margin-bottom: 24px;
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 160px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.72);
}

/* HERITAGE FIX */

.heritage-hero {
  min-height: 100vh !important;
  background-image: url("./images/heritage-essentials.PNG") !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex !important;
  align-items: center !important;
  padding: 90px 80px 80px !important;
  position: relative !important;
}

.heritage-content {
  max-width: 620px !important;
  background: rgba(248, 243, 236, 0.75) !important;
  backdrop-filter: blur(6px) !important;
  padding: 44px !important;
  border-radius: 26px !important;
  position: relative !important;
  z-index: 2 !important;
}

.nav {
  position: absolute !important;
  top: 25px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  width: auto !important;
  padding: 0 !important;
  z-index: 100 !important;
}

.nav a,
.nav button {
  padding: 8px 14px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,0.75) !important;
  color: #2d1d12 !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  font-size: 0.9rem !important;
}

/* FINAL CONTAINER SOFTENING FIX */

.container {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.04) !important;

}/* FINAL NAV SOFTENING FIX */

.nav a,
.nav button {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(10px) !important;
}
/* FINAL NAV FIX */

.nav {
  background: transparent !important;
  box-shadow: none !important;
}

.nav a,
.nav button {
  background: rgba(255, 255, 255, 0.28) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px) !important;
}
/* ABOUT PAGE FIX */

.about-page {
  padding: 120px 60px 80px;
  min-height: auto !important;
}

.about-header {
  align-items: center;
}

.about-content {
  max-width: 700px;
}
/* ABOUT PAGE TIGHTENING */

body:has(.about-section) .container {
  max-width: 1000px !important;
  padding: 40px !important;
  margin: 110px auto 40px !important;
  min-height: auto !important;
}

body:has(.about-section) .about-section {
  padding: 40px 20px !important;
  margin-bottom: 0 !important;
}

/* ABOUT EXTRA SECTIONS */

.about-extra {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-block {
  padding: 40px;
  background: rgba(255,255,255,0.38);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.about-block h2 {
  font-size: 2.2rem;
  margin: 16px 0;
}

.about-block p {
  max-width: 800px;
  line-height: 1.8;
}

.empowerment-hero {
  min-height: 100vh;
  background-image: url("./images/empowerment-background.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 90px 80px 80px;
  position: relative;
}
/* =========================
ART OF EMPOWERMENT
========================= */

.empowerment-hero {
  min-height: 100vh;
  background-image: url("./images/empowerment-background.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 90px 80px 80px;
  position: relative;
}

.empowerment-overlay {
  max-width: 700px;
  background: rgba(32, 26, 22, 0.42);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 30px;
}

.empowerment-overlay .hero-tag {
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.empowerment-overlay h1 {
  font-size: 5rem;
  line-height: 0.95;
  color: white;
  margin-bottom: 24px;
}

.empowerment-overlay .hero-text {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media (max-width: 700px) {

  .empowerment-hero {
    padding: 120px 24px 60px;
  }

  .empowerment-overlay {
    padding: 30px;
  }

  .empowerment-overlay h1 {
    font-size: 3rem;
  }

}
/* =========================
AEON'S LEGACY
========================= */

.aeon-hero {
  min-height: 100vh;
  background-image: url("./images/aeons-legacy-background.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 90px 80px 80px;
}

.aeon-overlay {
  max-width: 720px;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 30px;
}

.aeon-overlay h1 {
  font-size: 5rem;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #2d1d12;
}

.aeon-overlay .hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media (max-width: 700px) {

  .aeon-hero {
    padding: 120px 24px 60px;
  }

  .aeon-overlay {
    padding: 30px;
  }

  .aeon-overlay h1 {
    font-size: 3rem;
  }

}

/* =========================
GLOBAL MOBILE REFINEMENTS
========================= */

@media (max-width: 700px) {

  .home-hero h1,
  .services-hero h1,
  .glow-hero h1,
  .heritage-content h1,
  .contact-left h1,
  .empowerment-overlay h1,
  .aeon-overlay h1,
  .about-text h1 {
    font-size: 2.8rem !important;
    line-height: 1.02 !important;
  }

  .hero-overlay,
  .hero-content,
  .heritage-content,
  .contact-card,
  .empowerment-overlay,
  .aeon-overlay {
    padding: 28px !important;
  }

  .projects {
    grid-template-columns: 1fr !important;
  }

  .featured-project {
    grid-column: span 1 !important;
  }

  .nav {
    gap: 8px !important;
    width: 92% !important;
  }

  .nav a {
    font-size: 0.78rem !important;
    padding: 7px 12px !important;
  }

}
/* =========================
CALM POWER PODCAST
========================= */

.calm-hero {
  min-height: 100vh;
  background-image: url("./images/calm-power-background.PNG");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 90px 80px 80px;
}

.calm-overlay {
  max-width: 720px;
  background: rgba(20, 14, 12, 0.52);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 30px;
}

.calm-overlay h1 {
  font-size: 5rem;
  line-height: 0.95;
  color: white;
  margin-bottom: 24px;
}

.calm-overlay .hero-tag {
  color: rgba(255,255,255,0.82);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.calm-overlay .hero-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media (max-width: 700px) {
  .calm-hero {
    padding: 120px 24px 60px;
  }

  .calm-overlay {
    padding: 30px;
  }

  .calm-overlay h1 {
    font-size: 3rem;
  }
}
/* HOMEPAGE CLEANUP */

body:has(.home-hero) .container {
  margin: 0 auto 60px !important;
  padding: 0 30px 50px !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body:has(.home-hero) section {
  margin-bottom: 55px !important;
}

body:has(.home-hero) .work-with-me {
  padding-top: 50px !important;
}

@media (max-width: 700px) {
  body:has(.home-hero) .container {
    width: 100% !important;
    padding: 0 18px 40px !important;
  }

  body:has(.home-hero) .home-hero h1 {
    font-size: 2.6rem !important;
  }

  body:has(.home-hero) .home-hero {
    padding: 130px 24px 60px !important;
  }
}
.projects-preview {
  text-align: center;
  max-width: 760px;
  margin: 70px auto;
  padding: 40px 20px;
}

.projects-preview h2 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}

.projects-preview p {
  margin-bottom: 24px;
}
/* HOMEPAGE BUTTON SPACING */

.work-with-me .btn,
.about-preview .btn,
.projects-preview .btn {
  margin-top: 28px;
}

.work-with-me,
.about-preview,
.projects-preview {
  padding: 30px 0;
}
.projects .project-card:last-child {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
}

/* FINAL NAV CLEANUP */

.nav {
  position: absolute !important;
  top: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 1000 !important;
}

.nav a,
.nav button {
  background: rgba(255,255,255,0.42) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  color: #2d1d12 !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  backdrop-filter: blur(14px) !important;
  font-size: 0.9rem !important;
  box-shadow: none !important;
}
/* =========================
SERVICES SECTION GLOW UP
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.service-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 28px;
  padding: 42px 36px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.72);
}

.service-icon {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  line-height: 1.1;
  color: #2d1d12;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5f5147;
}

/* MOBILE */

@media (max-width: 700px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 32px 26px;
  }

}
/* =========================
LOGO NAV
========================= */

.nav {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;

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

  z-index: 1000;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

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

.nav-links a {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0px 32px;
  border-radius: 999px;
  color: #2d1d12;
}
/* =========================
DESKTOP NAV LAYOUT
========================= */

.nav {
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;

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

  padding: 0 50px;
  z-index: 1000;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

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

.nav-links a {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  color: #2d1d12;
}
/* FINAL LOGO LEFT NAV */

.nav {
  position: absolute !important;
  top: 24px !important;
  left: 0 !important;
  transform: none !important;
  width: 100% !important;
  padding: 0 48px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: transparent !important;
  z-index: 1000 !important;
}

.logo {
  margin-right: auto !important;
}

.logo img {
  height: 90px !important;
  width: auto !important;
  display: block !important;
}

.nav-links {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  margin-left: auto !important;
}
/* REMOVE LOGO PILL */

.logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  backdrop-filter: none !important;
}

.logo img {
  background: transparent !important;
}
/* STOP LOGO INHERITING NAV PILL */

.nav .logo {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* FINAL NAV OVERRIDE */

.nav {
  position: absolute !important;
  top: 24px !important;

  left: 0 !important;
  right: 0 !important;

  transform: none !important;

  width: 100% !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  padding: 0 32px !important;

  margin: 0 !important;

  background: transparent !important;
  z-index: 9999 !important;
}

.nav-links {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
  margin-left: auto !important;
}

.nav .logo {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.logo img {
  height: 90px !important;
  width: auto !important;
  display: block !important;
}
/* =========================
WSL HERITAGE VING TSUN
========================= */

.wingchun-hero {
  min-height: 100vh;
  background-image: url("./images/wingchun-hero.JPG");
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
}

.wingchun-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.wingchun-overlay {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 50px;
  border-radius: 28px;

  background: rgba(0,0,0,0.12);
}

.wingchun-overlay h1 {
  font-size: 4.8rem;
  line-height: 0.95;
  color: #f5e6b8;
  margin-bottom: 24px;
}

.wingchun-overlay .hero-tag {
  color: #d4af37;
}

.wingchun-overlay .hero-text {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

body:has(.wingchun-hero) {
  background: #0d0b09;
}

body:has(.wingchun-hero) .container {
  background: #12100e !important;
  color: white;
}

body:has(.wingchun-hero) .about-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.18);
}

body:has(.wingchun-hero) h2 {
  color: #d4af37;
}

body:has(.wingchun-hero) p {
  color: rgba(255,255,255,0.82);
}

/* =========================
WING CHUN CONTACT FORM
========================= */

.wingchun-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.wingchun-form input,
.wingchun-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 1rem;
}

.wingchun-form textarea {
  min-height: 160px;
  resize: vertical;
}

.wingchun-form input::placeholder,
.wingchun-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

/* WING CHUN INSTAGRAM LINK */

.contact-box a {
  color: #d4af37 !important;
  font-weight: 600;
}

.contact-box a:hover {
  opacity: 0.8;
}
.contact-box .btn {
  color: white !important;
}
body:has(.wingchun-hero) .btn {
  width: fit-content !important;
  min-width: 180px;
  text-align: center;
}
.footer-logo {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 90px;
  height: auto;
  opacity: 0.9;
}
.about-block {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 215, 0, 0.25);

  border-radius: 28px;

  padding: 40px;

  margin-bottom: 40px;

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25);

  transition: 0.3s ease;
}

.about-block:hover {
  transform: translateY(-4px);

  border-color: rgba(255, 215, 0, 0.45);
}
body:has(.wingchun-hero) .about-block {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 28px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35) !important;
}

body:has(.wingchun-hero) .about-block:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55) !important;
}.wing-card {
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(212,175,55,0.4) !important;
  border-radius: 28px !important;
  padding: 42px !important;
  box-shadow: 0 14px 42px rgba(0,0,0,0.35) !important;
}
.wing-image-break {
  margin: 70px auto;
  max-width: 950px;
}

.wing-image-break img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

.wing-quote {
  text-align: center;
  margin-top: 24px;
}

.wing-quote p {
  font-size: 1.2rem;
  color: #d4af37;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.wingchun-thumb {
  object-position: center 10% !important;
  filter: brightness(0.82);
}
/* WING CHUN MOBILE FIX */

@media (max-width: 700px) {

  body:has(.wingchun-hero) .nav {
    position: absolute !important;
    top: 16px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    padding: 0 14px !important;
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  body:has(.wingchun-hero) .logo img {
    height: 58px !important;
  }

  body:has(.wingchun-hero) .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  body:has(.wingchun-hero) .nav-links a {
    font-size: 0.72rem !important;
    padding: 6px 10px !important;
  }

  .wingchun-hero {
    min-height: 100vh !important;
    padding: 150px 20px 50px !important;
    background-position: center top !important;
  }

  .wingchun-overlay {
    max-width: 100% !important;
    padding: 28px !important;
    border-radius: 22px !important;
  }

.wingchun-overlay h1 {
  font-size: 4rem !important;
  line-height: 0.92 !important;
  letter-spacing: -2px;
.wingchun-overlay {
  background: rgba(0,0,0,0.45) !important;
  max-width: 100% !important;
}
.wingchun-hero {
  background-position: center top !important;
  overflow: hidden;
}
  }

  .wingchun-overlay .hero-text {
    font-size: 1rem !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  body:has(.wingchun-hero) .container {
    width: 94% !important;
    padding: 24px !important;
    margin: 0 auto 40px !important;
  }

  body:has(.wingchun-hero) .about-block {
    padding: 26px !important;
  }

  body:has(.wingchun-hero) h2 {
    font-size: 1.8rem !important;
  }

  .wing-image-break {
    max-width: 100% !important;
    margin: 50px auto !important;
  }

  .wing-image-break img {
    width: 100% !important;
    height: auto !important;
  }

  .footer-logo img {
    width: 70px !important;
  }
}

.project-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.project-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}

.project-card h3 {
  margin-bottom: 10px;
}

.project-card a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}
.case-study {
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}

.case-study h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}

.case-study h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.case-study p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.case-study-image {
  width: 100%;
  border-radius: 20px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.skills-list span {
  background: #f8f1f3;
  color: #8d5b6d;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.live-button {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: #8d5b6d;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  transition: 0.3s ease;
}

.live-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.project-badge {
  display: inline-block;
  background: #f8d7da;
  color: #8d5b6d;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 22px;
  border-radius: 24px;
  text-decoration: none;
}

.project-image,
.project-placeholder {
  width: 100%;
  height: 210px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 20px;
}

.project-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4ece8;
  color: #7a4f44;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.project-badge {
  display: inline-block;
  width: fit-content;
  background: #f8d7da;
  color: #8d5b6d;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.project-card h3 {
  margin-bottom: 12px;
}

.project-card p {
  flex-grow: 1;
}

@media (max-width: 900px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects {
    grid-template-columns: 1fr;
  }
}
.code-project {
  justify-content: center;
  text-align: center;
  min-height: 260px;
}

.code-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
/* =========================
PROJECTS PAGE FINAL FIX
========================= */

body:has(.projects-section) .portfolio-intro {
  max-width: 900px;
  margin: 50px auto 20px;
  padding: 0 24px;
  text-align: center;
}

body:has(.projects-section) .portfolio-intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

body:has(.projects-section) .container {
  max-width: 1200px !important;
  margin: 40px auto 80px !important;
  padding: 50px !important;
}

body:has(.projects-section) .projects-section {
  margin-bottom: 0 !important;
  text-align: center;
}

body:has(.projects-section) .projects {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  margin-top: 0 !important;
}

body:has(.projects-section) .project-card {
  min-height: 430px !important;
  padding: 24px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,0.7) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  text-align: center !important;
}

body:has(.projects-section) .project-image {
  width: 100% !important;
  height: 190px !important;
  object-fit: cover !important;
  border-radius: 18px !important;
  margin-bottom: 18px !important;
}

body:has(.projects-section) .project-card h3 {
  font-size: 1.25rem !important;
  line-height: 1.25 !important;
  margin-bottom: 10px !important;
}

body:has(.projects-section) .project-card p {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

body:has(.projects-section) .projects .project-card:last-child {
  grid-column: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

body:has(.projects-section) .code-project {
  min-height: 430px !important;
}

@media (max-width: 900px) {
  body:has(.projects-section) .projects {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  body:has(.projects-section) .projects {
    grid-template-columns: 1fr !important;
  }
}
body:has(.projects-section) .project-card:nth-child(7) {
  grid-column: 2 / 3;
}
.heritage-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pillar {
  background: rgba(255,255,255,0.58);
  padding: 34px 28px;
  border-radius: 24px;
  text-align: center;
  min-height: 240px;
}

.pillar span {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.pillar h3 {
  margin-bottom: 12px;
}

.pillar p {
  line-height: 1.7;
}

@media (max-width: 700px) {
  .heritage-pillars {
    grid-template-columns: 1fr;
  }
}
.testimonial {
  margin-top: 20px;
  padding: 24px;
  background: #f8f1f3;
  border-radius: 18px;
  border-left: 4px solid #d9a5b3;
}

.testimonial p {
  font-style: italic;
  margin: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pricing-card {
  background: rgba(255,255,255,0.7);
  border-radius: 26px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #8d5b6d;
  margin-bottom: 12px;
}

.pricing-card ul {
  margin-top: 22px;
  padding-left: 20px;
}

.pricing-card li {
  margin-bottom: 10px;
}

.featured-price {
  border: 2px solid #d9a5b3;
  transform: translateY(-10px);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured-price {
    transform: none;
  }
}
@media (max-width: 700px) {
  .nav {
    padding: 12px !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .logo img {
    height: 55px !important;
  }

  .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .nav-links a {
    font-size: 0.85rem !important;
    padding: 7px 12px !important;
  }

  .heritage-content {
    margin-top: 90px !important;
  }
}
/* CONTACT FORM UPGRADE */

.contact-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-card h2 {
  color: white;
  margin-bottom: 24px;
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  color: white;
  font-size: 1rem;
  font-family: inherit;
  backdrop-filter: blur(8px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.70);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212,175,55,0.8);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.contact-form .btn {
  width: 100%;
  margin-top: 10px;
}
/* PRICING MOBILE FIX */

@media (max-width: 700px) {
  .pricing-card {
    padding: 34px 26px !important;
    margin-bottom: 28px !important;
  }

  .pricing-card h3 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }

  .price {
    font-size: 2.8rem !important;
    margin: 18px 0 !important;
  }

  .pricing-card p {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }

  .pricing-card ul {
    padding-left: 22px !important;
    margin-top: 24px !important;
  }

  .pricing-card li {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }
}
@media (max-width: 768px) {

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 25px;
  }

  .hero-image,
  .hero-content {
    width: 100%;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .hero-content {
    text-align: center;
  }

  .nav {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}
/* GLOBAL MOBILE NAV FIX */

@media (max-width: 700px) {
  .nav {
    position: absolute !important;
    top: 18px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    padding: 0 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    z-index: 9999 !important;
  }

  .logo img {
    height: 48px !important;
  }

  .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    max-width: 340px !important;
  }

  .nav-links a {
    font-size: 0.8rem !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
  }

  .services-hero,
  .home-hero,
  .heritage-hero,
  .contact-hero,
  .empowerment-hero,
  .aeon-hero,
  .calm-hero,
  .wingchun-hero {
    padding-top: 180px !important;
  }
}/* FINAL MOBILE OVERLAP FIX */

@media (max-width: 700px) {
  .services-hero .hero-content {
    margin-top: 95px !important;
  }

  .services-hero h1 {
    font-size: 2.35rem !important;
    line-height: 1.08 !important;
  }

  .services-hero {
    padding-top: 120px !important;
  }
}
/* CONTACT PAGE MOBILE FIX */

@media (max-width: 700px) {
  .contact-hero {
    min-height: auto !important;
    padding: 170px 20px 60px !important;
    display: block !important;
  }

  .contact-overlay {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
  }

  .contact-left,
  .contact-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .contact-left h1 {
    font-size: 3rem !important;
    line-height: 1 !important;
  }

  .contact-card {
    padding: 28px !important;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem !important;
  }
}/* BEST MOBILE NAV FIX */

@media (max-width: 700px) {
  .nav {
    position: absolute !important;
    top: 22px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    z-index: 9999 !important;
  }

  .logo {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    max-width: 330px !important;
    margin: 0 auto !important;
  }

  .nav-links a {
    font-size: 0.78rem !important;
    padding: 7px 12px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.45) !important;
    backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
  }

  .services-hero,
  .home-hero,
  .heritage-hero,
  .contact-hero,
  .empowerment-hero,
  .aeon-hero,
  .calm-hero,
  .wingchun-hero {
    padding-top: 150px !important;
  }
}
/* ABOUT PAGE MOBILE FIX */

@media (max-width: 700px) {

  .about-hero,
  .about-content,
  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  .about-image,
  .about-text,
  .philosophy-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-image img {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .about-text {
    text-align: center !important;
  }

  .about-text h1 {
    font-size: 2.8rem !important;
    line-height: 1 !important;
  }

  .philosophy-card {
    margin-top: 0 !important;
  }
}
/* FINAL HOMEPAGE MOBILE FIX */

@media (max-width: 700px) {

  body:has(.home-hero) {
    background: #0d0b09 !important;
  }

  body:has(.home-hero) .nav {
    position: absolute !important;
    top: 22px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    padding: 0 !important;
    background: transparent !important;
    z-index: 9999 !important;
  }

  body:has(.home-hero) .logo {
    display: none !important;
  }

  body:has(.home-hero) .nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    max-width: 330px !important;
    margin: 0 auto !important;
  }

  body:has(.home-hero) .nav-links a {
    font-size: 0.78rem !important;
    padding: 7px 12px !important;
    background: rgba(255,255,255,0.38) !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
    backdrop-filter: blur(14px) !important;
  }

  body:has(.home-hero) .home-hero {
    min-height: 100vh !important;
    padding: 120px 22px 60px !important;
    margin-top: 0 !important;
    background-position: center top !important;
  }

  body:has(.home-hero) .home-hero .hero-overlay {
    margin-top: 60px !important;
    padding: 30px 24px !important;
  }

  body:has(.home-hero) .home-hero h1 {
    font-size: 2.55rem !important;
    line-height: 1.05 !important;
  }

  body:has(.home-hero) .home-hero .hero-text {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }
}
.footer-logo img {
  width: 70px;
  height: auto;
  opacity: 0.75;
  transition: 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
}
/* Mobile Navigation Fix */

.nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0 16px;
  box-sizing: border-box;
}

.nav a {
  white-space: nowrap;
}/* FORCE MOBILE NAV FIX */
header,
nav {
  width: 100% !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  box-sizing: border-box !important;
}

nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 10px !important;
  flex-wrap: wrap !important;
  overflow: visible !important;
}

nav a,
nav button {
  white-space: nowrap !important;
  font-size: 14px !important;
}