:root {
  --bg-color: #0b0b0b;
  --accent: #ffd700;
  --text: #f5f5f5;
  --font-primary: "Cinzel", serif;
  --font-secondary: "Inter", sans-serif;
  /*max-width: 100vw;*/
  /*overflow-x: hidden;*/
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*max-width: 100vw;*/
  /*overflow-x: hidden;*/
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--bg-color);
  color: var(--text);
  font-family: var(--font-secondary);
  line-height: 1.6;
  width: 100vw;
  /*overflow-x: hidden;*/
  /*overflow: hidden;*/
  /*overflow-y: hidden;*/
  
}
h1,
h2 {
  color: #ffd700;
}
.container {
  max-width: 100vw;
  overflow-x: hidden;
  /*width: 100vw;*/
  max-height: 100%;
  overflow: hidden;
  margin: auto;
  padding: 0 2rem;
  /*overflow-y: hidden;*/
  /*overflow: hidden;*/
}
.nav-container{
   padding-right:15px ;
}
.logo {
  width: 100px;
}
#message, #about-preview, #principles, #why-join, #benefits, #join, #banner, #contact, #footer, {
    width: 100vw;
    /*overflow-x: hidden;*/
    /*overflow-y: hidden;*/
}

/* Header & Navigation */
.header {
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem 0;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100vw;
  /*overflow-x: hidden;*/
}

.logo {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /* position: fixed; */
}

/* Desktop Nav */
.nav {
  display: flex;
  gap: 2rem;
  transition: all 0.3s ease;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

/* Hamburger & Mobile Nav */
.hamburger {
  display: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
}

.close-btn {
  display: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 1rem;
  background: linear-gradient(to bottom, #0b0b0b, #1a1a1a);
  margin-top: 100px;
}
.hero-image {
  background-image: url("/hero.jpg");
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  filter: brightness(0.65);
}

.hero h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e6c200;
}

/* Intro Section */
.intro {
  padding: 4rem 1rem;
  text-align: center;
}

.intro h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* Footer */
.footer {
  background: #111;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  margin-top: 4rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    width: 100%;
    /* padding: 2rem 1.5rem; */
    padding-left: 2rem;
    display: none;
    height: fit-content;
    z-index: 3000;
  }

  .nav.show {
    display: flex;
  }

  .close-btn {
    display: block;
  }

  .nav a {
    /* padding: 0.75rem 0; */
    font-size: 1.1rem;
  }
  
  /*header{*/
  /*    max-width: 100vw;*/
  /*    overflow-x: hidden;*/
  /*}*/

  .hero {
    padding: 5rem 1rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .intro h3 {
    font-size: 1.5rem;
  }
  /*body{*/
  /*    max-width: 100vw;*/
  /*    overflow-x: hidden;*/
  /*}*/
}
.grandmaster-message {
  background: linear-gradient(to bottom, #0a0a0a, #111);
  color: #ccc;
  padding: 5rem 1.5rem;
  text-align: center;
}

.grandmaster-message .section-title {
  color: var(--accent);
  font-family: var(--font-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.message-lead {
  font-size: 1.3rem;
  font-style: italic;
  color: #eee;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.message-body {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #ccc;
}

.message-signature {
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--accent);
}
/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.video-modal.active {
  display: flex;
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

#close-video {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
}
.who-we-are {
  background-color: #0b0b0b;
  padding: 5rem 1.5rem;
  text-align: center;
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
  color: #ccc;
}

.who-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.who-card {
  background: #111;
  padding: 2rem;
  border-radius: 15px;
  max-width: 350px;
  flex: 1 1 300px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  border: 1px solid #222;
  transition: transform 0.3s ease;
}

.who-card h3 {
  font-family: var(--font-primary);
  color: var(--accent);
  margin-bottom: 1rem;
}

.who-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

.who-card:hover {
  transform: translateY(-5px);
}

.core-principles {
  padding: 5rem 1.5rem;
  background-color: #101010;
  text-align: center;
}

.principles-intro {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
  color: #ccc;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.principle {
  background: #141414;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
  transition: transform 0.3s ease;
}

.principle h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.principle p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.principle:hover {
  transform: translateY(-5px);
}
.why-join {
  background-color: #0f0f0f;
  padding: 5rem 1.5rem;
}

.why-intro {
  text-align: center;
  color: #ccc;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.why-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.why-text {
  flex: 1 1 400px;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

.why-text p {
  margin-bottom: 1.5rem;
}

.why-image {
  flex: 1 1 300px;
  text-align: center;
}

.why-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.benefits {
  background-color: #121212;
  padding: 5rem 1.5rem;
  text-align: center;
}

.benefits-intro {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #161616;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.benefit-card h3 {
  font-family: var(--font-primary);
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.benefit-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.how-to-join {
  background-color: #111;
  padding: 5rem 1.5rem;
  text-align: center;
}

.join-intro {
  color: #ccc;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.step {
  background: #151515;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-primary);
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}
.cta-banner {
  background: linear-gradient(145deg, #1b1b1b, #0a0a0a);
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-sub {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.cta-banner .btn {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-banner .btn:hover {
  background: #e6c200;
}

.contact-form {
  background-color: #0f0f0f;
  padding: 5rem 1.5rem;
}

.form-intro {
  color: #ccc;
  font-size: 1.1rem;
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 700px;
}

form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 0 0 1px #333;
}

textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ccc;
}

.checkbox input {
  margin-top: 4px;
}

form .btn {
  display: block;
  width: 100%;
  margin-top: 2rem;
  background: var(--accent);
  color: #000;
  padding: 0.75rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

form .btn:hover {
  background: #e6c200;
}
.footer {
  background-color: #0a0a0a;
  padding: 4rem 1.5rem 2rem;
  color: #ccc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.6;
  color: #aaa;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777;
}
/* Sticky Join Button */
.sticky-join-btn {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 9999;
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.sticky-join-btn:hover {
  background: #e6c200;
}

/* Optional: Hide on very small screens */
@media (max-width: 400px) {
  .sticky-join-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
}
