/* ===============================
   BASE STYLE
=============================== */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  line-height: 1.6;
  padding-top: 180px;
  transition: background 0.4s ease, color 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

/* ===============================
   HEADER
=============================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  border-bottom: 1px solid #020202;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0px 20px;
}

.header-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo + Toggle */
.header-image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header-image img {
  width: 130px;
  height: auto;
  border-radius: 8px;
}

/* H1 text to the right */
.header-text {
  text-align: right;
  flex: 1;
  margin-top: 10px;
}

.header-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #d4af37;
  margin: 0;
  padding-right: 50px;
}

.header-text p {
  color: #faf4f4;
  font-size: 1rem;
  margin: 5px 0 0;
  padding-right:10px ;
}

/* Navigation centered below header */
.header-center {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  padding: 15px 0 10px;
}

.header-center a {
  color: #f7f5f5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.header-center a:hover {
  color: #d4af37;
}

/* ===============================
   THEME TOGGLE
=============================== */
.theme-toggle {
  margin-top: 12px;
  background: linear-gradient(145deg, #000000, #1a1a1a);
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

.theme-toggle:hover {
  background: linear-gradient(145deg, #d4af37, #f0cf6f);
  color: #000;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

.theme-toggle i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.theme-toggle:active i {
  transform: rotate(180deg);
}

/* Light Mode styling */
body:not(.dark-mode) .theme-toggle {
  background: linear-gradient(145deg, #fff8e1, #fff);
  color: #000;
  border-color: #000;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

body:not(.dark-mode) .theme-toggle:hover {
  background: #000;
  color: #d4af37;
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* ===============================
   CONTENT
=============================== */
section {
  padding: 15px 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: left;
  color: #000;
  padding-top: 20px;
}

.vision-image img,
.how-it-works img {
  width: 100%;
  max-width: 650px;
  border-radius: 10px;
  border: 10px solid #f4f3ee;
  box-shadow: 0 0 40px rgba(243, 196, 42, 0.662);
  margin-bottom: 20px;
}


/* Buttons */
.cta-buttons {
  padding-left: 30px;
}

.cta-buttons a {
  display: inline-block;
  margin: 10px 10px 0 0;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration:none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-buttons a:hover {
  background-color: #d4af37;
  color: #000;
}

/* ===============================
   FOOTER
=============================== */
footer {
  background: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 1em;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #d4af37;
  font-size: 1.9rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ===============================
   DARK MODE
=============================== */
body.dark-mode {
  background-color: #0a0a0a;
  color: #f4f4f4;
}

body.dark-mode header {
  background-color: #000;
  border-bottom: 1px solid #333;
}

body.dark-mode section h2 {
  color: #d4af37;
}

body.dark-mode footer {
  background-color: #111;
}

/* Email Link design*/

.email-link {
  color: #d4af37; /* gold tone */
  text-decoration: none;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.email-link i {
  margin-right: 8px;
}

.email-link:hover {
  color: #b8942b; /* slightly darker gold on hover */
  text-decoration: underline;
}

/*video on page3.html make sure it centered and well presented*/
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.video-container video {
  width: 60%;
  max-width: 470px;
  border-radius: 10px;
  border: 10px solid #f4f3ee;
  box-shadow: 0 0 40px rgba(243, 196, 42, 0.662);
}



/* ===============================
   RESPONSIVE DESIGN
=============================== */
@media (max-width: 3000px){
   .header-container {
   display: flex;
    flex-direction: row;
    justify-content:flex-end; /* pushes content to the right */
    align-items: flex-start;   /* keeps it at the top */
    padding: 10px; /* optional spacing */
  }

  .header-text {
   flex-direction: column;
    align-items: right;
    text-align: none;
  }
    header p {
    font-size: 1rem;
    margin: 0;
    padding-right: 40px;
  }

  .header-center {
    gap: 20px;
    padding-right: 25px;
  }

  body {
    padding-top: 230px;
  }
  }

@media (max-width: 1200px){
   .header-container {
   display: flex;
    flex-direction: row;
    justify-content:flex-end; /* pushes content to the right */
    align-items: flex-start;   /* keeps it at the top */
    padding: 10px; /* optional spacing */
  }

  .header-text {
   flex-direction: column;
    align-items: right;
    text-align: none;
  }
    header p {
    font-size: 1rem;
    margin: 0;
    padding-right: 40px;
  }

  .header-center {
    gap: 20px;
    padding-right: 25px;
  }

  body {
    padding-top: 230px;
  }
}

@media (max-width: 900px) {
  .header-container {
   display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 10px;
  }

  .header-text {
    flex-direction: column;
    align-items: right;
    text-align: none;
  }

  header p {
    font-size: 1rem;
    margin: 0;
  }

  .header-center {
    gap: 20px;
  }

  body {
    padding-top: 270px;
  }
}

@media (max-width: 600px) {
  .header-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 10px;
  }

  header p {
    font-size: 1rem;
    margin: 0;
  }

  header h1 {
    font-size: 1.8rem;
  }

  body {
    padding-top: 220px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  section {
    padding: 40px 15px;
  }

  section h2 {
    font-size: 1.6em;
  }

  .social-links a {
    font-size: 1.4rem;
    margin: 0 5px;
  }
}

@media (max-width: 400px){
  .header-container {
    display: flex;
    flex-direction: row;
    justify-content:flex-end;
    align-items: flex-start;
    padding: 10px;
  }

  .header-text {
    flex-direction: column;
    align-items: right;
    text-align: none;
  }

  header p {
    font-size: 1rem;
    margin: 0;
    padding-right: 40px;
  }

  .header-center {
    gap: 20px;
  }

  body {
    padding-top: 230px;
  }
}

/* ===============================
   MOBILE LUXURY HEADER
=============================== */
@media (max-width: 600px) {
  /* Show only "V" for the logo text */
  .header-text h1 {
    color: transparent;
    position: relative;
    font-size: 2.8rem; /* larger for luxury look */
    text-align: right; /* move to the right */
    padding-right: 15px;
  }

  .header-text h1::after {
    content: "V";
    color: #d4af37;
    position: absolute;
    padding-right: 35px;
    right: 0;
    top: 0;
    text-shadow: 
      0 0 12px rgba(212,175,55,0.8),
      0 0 24px rgba(212,175,55,0.6),
      0 0 36px rgba(212,175,55,0.4);
    animation: shimmer 4s ease-in-out infinite;
  }

  /* Hide the tagline */
  .header-text p {
    display: none;
  }

  /* ✨ Shimmer animation for the golden "V" */
  @keyframes shimmer {
    0% {
      text-shadow: 
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
      color: #d4af37;
    }
    50% {
      text-shadow: 
        0 0 20px rgba(255,230,150,1),
        0 0 40px rgba(212,175,55,0.9),
        0 0 60px rgba(255,230,150,0.8);
      color: #f5d76e;
    }
    100% {
      text-shadow: 
        0 0 10px rgba(212,175,55,0.6),
        0 0 20px rgba(212,175,55,0.4);
      color: #d4af37;
    }
  }
}
