/* ==================== GLOBAL STYLES ==================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');

body, html {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; 
}

.main-wrapper {
  width: 100% !important;
}

/* ==================== HEADER STYLES ==================== */
#top-menu-bar, body.night-mode #top-menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

#top-menu-bar.scrolled-background, body.night-mode #top-menu-bar.scrolled-background {
  background-color: rgba(0, 0, 0, 0.6); 
  transition: background-color 0.3s ease;
}


.logo-container, body.night-mode .logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-container a, body.night-mode .logo-container a {
  display: flex;
  align-items: center;
  text-decoration: none; 
}

.betadiv, body.night-mode .betadiv {
  display: inline-block;
}


.logo-container img, body.night-mode .logo-container img  {
  height: 25px;
}

.nav-links-left, body.night-mode .nav-links-left {
  display: flex;
  gap: 20px;
}

.nav-links-left a, 
body.night-mode .nav-links-left a {
  color: #FFF;
  text-decoration: none;
  font-size: 18px;
}

.centered-logo, body.night-mode .centered-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-links, body.night-mode .menu-links {
  display: flex;
  gap: 20px;
  padding-right: 10px;
}

.menu-links a,
body.night-mode .menu-links a {
  color: #FFF;
  text-decoration: none;
  font-size: 18px;
}

.betatext, body.night-mode .betatext {
  color: #FFF !important;
}

.burger-icon, body.night-mode .burger-icon {
  display: none;
  font-size: 24px;
  color: #FFF;
  cursor: pointer;
  z-index: 1000;
}

.mobile-menu, body.night-mode .mobile-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #333;
  padding: 20px;
  text-align: center;
  z-index: 999;
}

.mobile-menu a, body.night-mode .mobile-menu a {
  display: block;
  padding: 10px 0;
  color: #FFF;
  text-decoration: none;
  font-size: 18px;
}

.mobile-menu a:hover, body.night-mode .mobile-menu a:hover {
  background-color: #444;
}




.hidden, body.night-mode .hidden {
  display: none !important;
}


/* ==================== END HEADER STYLES ==================== */



/* ==================== HERO SECTION STYLES ==================== */
.hero-section, body.night-mode .hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/landing/posters.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


.hero-video, body.night-mode .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; 
  opacity: 0.6;
  transition: opacity 0.5s ease-in-out;
}

#hero-section::before, body.night-mode #hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 1; 
}

.hero-content, body.night-mode .hero-content {
  position: relative;
  z-index: 2; 
  color: #ffffff;
  text-align: left;
  padding: 20px;
}

.hero-content .hero-text h1, body.night-mode .hero-content .hero-text h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff; 
}

.hero-content .hero-buttons, body.night-mode .hero-content .hero-buttons {
  display: flex;
  flex-direction: column; 
  align-items: flex-start;
  margin-left: 20px; 
}

.hero-content .hero-buttons button, body.night-mode .hero-content .hero-buttons button{
  background-color: #ffffff; 
  color: #000000; 
  border: none;
  padding: 10px 20px;
  margin: 10px 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: left;
}

.hero-content .hero-buttons button:hover, body.night-mode .hero-content .hero-buttons button:hover {
  background-color: #333333; 
  color: #ffffff; 
}

.hero-content .hero-buttons a, body.night-mode .hero-content .hero-buttons a, body.night-mode .hero-content .hero-buttons a, body.night-mode .hero-content .hero-buttons a {
  color: #ffffff;
  text-decoration: none;
}

.hero-content .hero-buttons a:hover, body.night-mode .hero-content .hero-buttons a:hover {
  text-decoration: underline;
}
/* ==================== END HERO SECTION STYLES ==================== */


/* ==================== WHO WE ARE SECTION STYLES ==================== */
.who-we-are, body.night-mode .who-we-are {
  background-color: #f2f2f2;
  padding: 80px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are-container, body.night-mode .who-we-are-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100%;
}

.who-we-are-content, body.night-mode .who-we-are-content {
  flex: 1;
  padding: 40px;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.who-we-are-content h2, body.night-mode .who-we-are-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.who-we-are-content p, body.night-mode .who-we-are-content p {
  font-size: 24px;
  margin-bottom: 20px;
}

.find-out-more-button, body.night-mode .find-out-more-button {
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.find-out-more-button:hover, body.night-mode .find-out-more-button:hover {
  background-color: #333;
}

.who-we-are-image, body.night-mode .who-we-are-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 1; 
  transition: opacity 1s ease-in-out;
}

.who-we-are-image img, body.night-mode .who-we-are-image img {
  max-width: 87%;
  height: auto;
  opacity: 0; 
  transform: translateX(50px); 
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; 
}

.who-we-are-image.slide-in img, body.night-mode .who-we-are-image.slide-in img {
  opacity: 1; 
  transform: translateX(0);
}
/* ==================== END WHO WE ARE SECTION STYLES ==================== */


/* ==================== CONNECT SECTION STYLES ==================== */
.connect-section, body.night-mode .connect-section {
  background-color: #000000; 
  color: #10FFDE; 
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
}

.connect-container, body.night-mode .connect-container {
  display: flex;
  justify-content: space-around;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

.connect-item, body.night-mode .connect-item {
  flex: 1;
  margin: 20px;
}

.connect-item h2, body.night-mode .connect-item h2 {
  font-size: 50px; 
  margin-bottom: 20px;
}

.connect-item p, body.night-mode .connect-item p {
  font-size: 18px; 
  line-height: 1.5;
  font-family: 'Roboto', Helvetica, sans-serif;
}

.connect-button, body.night-mode .connect-button {
  display: flex;
  justify-content: center;
}

.connect-button button, body.night-mode .connect-button button {
  background-color: transparent;
  border: 2px solid #10FFDE;
  color: #10FFDE;
  font-size: 18px;
  padding: 15px 30px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.connect-button button:hover, body.night-mode .connect-button button:hover {
  background-color: #10FFDE;
  color: #000000; 
}
/* ==================== END CONNECT SECTION STYLES ==================== */


/* ==================== DISCOVER SECTION STYLES ==================== */
.discover-section, body.night-mode .discover-section {
  background-color: #f2f2f2; 
  padding: 80px 50px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.discover-title, body.night-mode .discover-title {
  font-size: 48px;
  margin-bottom: 40px;
  color: #000000;
}

.carousel-wrapper, body.night-mode .carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.discover-carousel, body.night-mode .discover-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.discover-card, body.night-mode .discover-card {
  background-color: #ffffff;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  flex-shrink: 0; 
  transition: transform 0.3s ease-in-out;
  display: flex; 
  flex-direction: column; 
  height: 475px;
}

.discover-card:hover, body.night-mode .discover-card:hover {
  transform: scale(1.01); 
  animation-play-state: paused; 
}

.discover-card img, body.night-mode .discover-card img {
  width: 300px; 
  height: 300px; 
  object-fit: cover;
  display: block;
}

.card-content, body.night-mode .card-content {
  flex-grow: 1;
  padding: 20px;
}

.card-content h3, body.night-mode .card-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
}

.card-content .username, body.night-mode .card-content .username {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.card-content p, body.night-mode .card-content p {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.card-content .scenes, body.night-mode .card-content .scenes {
  font-weight: bold;
  margin: 15px 0;
  color: #000;
}

.cs-logo, body.night-mode .cs-logo {
  margin-top: 15px;
  max-width: 100px;
  height: auto;
}

.carousel-controls, body.night-mode .carousel-controls {
  display: none;
}
/* ==================== END DISCOVER SECTION STYLES ==================== */


/* ==================== Stats Section Styles ==================== */
.stats-section, body.night-mode .stats-section {
  background-color: #000000;
  padding: 80px 50px;
  color: #10FFDE; 
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.section-title, body.night-mode .section-title {
  font-size: 48px;
  margin-bottom: 40px;
}

.stats-container, body.night-mode .stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat-box, body.night-mode .stat-box {
  background-color: transparent; 
  border-radius: 8px;
  padding: 20px 15px;
  width: calc(25% - 30px);
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.stat-box:hover, body.night-mode .stat-box:hover {
  transform: scale(1.05); 
}

.stat-number, body.night-mode .stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #10FFDE; 
  margin-bottom: 5px;
}

.stat-label, body.night-mode .stat-label {
  font-size: 18px;
  font-weight: 500; 
  color: #10FFDE; 
}
/* ==================== End Stats Section Styles ==================== */



/* ==================== Feature Highlights Section Styles ==================== */
.feature-highlights, body.night-mode .feature-highlights {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 50px 50px 50px;
  background-color: #FFFFFF;
  gap: 30px;
}

.feature-content, body.night-mode .feature-content {
  width: 45%;
  font-family: 'Roboto', sans-serif;
}

.section-title, body.night-mode .section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
  background: #FFFFFF;
}

.accordion, body.night-mode .accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item, body.night-mode .accordion-item {
  background-color: #ffffff;
  padding: 0;
  border: none; 
  box-shadow: none; 
}

.accordion-title, body.night-mode .accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  background-color: #ffffff;
}

.accordion-symbol, body.night-mode .accordion-symbol {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.accordion-content, body.night-mode .accordion-content {
  display: none;
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.accordion-item.active .accordion-content, body.night-mode .accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-symbol, body.night-mode .accordion-item.active .accordion-symbol {
  transform: rotate(45deg); 
}

.feature-image, body.night-mode .feature-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
  margin-top: 90px;
}

.feature-image img, body.night-mode .feature-image img {
  max-width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  align-self: flex-start;
}
/* ==================== End Feature Highlights Section Styles ==================== */


/* ==================== Founder Section Styles ==================== */
.founder-section, body.night-mode .founder-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 50px;
  background-color: #f2f2f2;
  gap: 30px;
}

.founder-image, body.night-mode .founder-image {
  width: 45%;
}

.founder-image img, body.night-mode .founder-image img {
  width: 100%;
  height: auto;
  border-radius: 8px; 
}

.founder-text, body.night-mode .founder-text {
  width: 50%;
  font-family: 'Roboto', sans-serif;
  color: #000000;
}

.section-subtitle, body.night-mode .section-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #666666;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Roboto', Helvetica, sans-serif;
}

.letter-content, body.night-mode .letter-content {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.signature, body.night-mode .signature {
  font-weight: bold;
  font-size: 20px;
  margin-top: 20px;
  color: #000000;
}

.founder-button, body.night-mode .founder-button {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  border: 2px solid #000000;
  border-radius: 20px;
  color: #000000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.founder-button a, body.night-mode .founder-button a {
  color: #000;
}

.founder-button:hover, body.night-mode .founder-button:hover {
  background-color: #000000;
  color: #ffffff;
}
/* ==================== End Founder Section Styles ==================== */


/* ==================== Footer Section Styles ==================== */
.footer-section, body.night-mode .footer-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container, body.night-mode .footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo, body.night-mode .footer-logo {
  width: 25%;
}

.footer-logo h2, body.night-mode .footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-logo p, body.night-mode .footer-logo p {
  font-size: 16px;
  margin: 5px 0;
  color: #666666;
}

.footer-links, body.night-mode .footer-links {
  display: flex;
  gap: 30px;
  width: 50%;
}

.footer-column h3, body.night-mode .footer-column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.footer-column a, body.night-mode .footer-column a {
  display: block;
  font-size: 16px;
  color: #666666;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer-column a:hover, body.night-mode .footer-column a:hover {
  color: #000000;
}

.footer-social, body.night-mode .footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a img, body.night-mode .footer-social a img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}

.footer-social a img:hover, body.night-mode .footer-social a img:hover {
  opacity: 0.8;
}
/* ==================== End Footer Section Styles ==================== */


/* ==================== Modal Styles ==================== */

.modal-lander, body.night-mode .modal-lander {
  display: none; 
  position: fixed;
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content-lander, body.night-mode .modal-content-lander {
  background-color: #f2f2f2;
  color: #000000; 
  margin: auto; 
  width: 90%;
  max-width: 500px;
  height: auto;
  min-height: 400px;
  max-height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  font-family: 'Roboto', Helvetica, sans-serif;

  /* animation: modalExpand 0.3s ease-out forwards; */
}

/* Use exact same responsive sizing as dedicated signup/signin pages */
@media (min-width: 768px) {
  .modal-content-lander, body.night-mode .modal-content-lander {
    max-width: 600px;
  }
}

@media (min-width: 992px) {
  .modal-content-lander, body.night-mode .modal-content-lander {
    max-width: 700px;
  }
}

.close-lander, body.night-mode .close-lander {
  color: #333; 
  float: right;
  font-size: 50px; 
  font-weight: bold;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10000;  
}

.close-lander:hover,
.close-lander:focus, 
body.night-mode .close-lander:hover, 
body.night-mode .close-lander:focus {
  color: var(--cs-mint); 
  text-decoration: none;
  cursor: pointer;
}

.modal-open, body.night-mode .modal-open {
  overflow: hidden;
}

@keyframes modalExpand {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%); 
    opacity: 1;
  }
}


.card.card-register, body.night-mode .card.card-register {
  background-color: #f2f2f2 !important;
}

.js_panel .card-header .card-title, body.night-mode .js_panel .card-header .card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 40px !important;
  color: #000000 !important;
}

.card-register .form-control, body.night-mode .card-register .form-control {
  background-color:  #f2f2f2 !important;
  border-bottom: 1px solid #000 !important;
  color: #000 !important;
}

.form-check-input, body.night-mode .form-check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.form-check-input:checked, body.night-mode .form-check-input:checked {
  background-color: #000;
  border-color: #000;
}

.form-check-label, body.night-mode .form-check-label {
  padding-top: 0px;
  font-size: 14px;
  padding-left: 5px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/* Prevent autofill from changing input colors - keep original styling */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: inherit !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* 1Password and other password manager styling */
.form-control[data-com-onepassword-filled="light"],
.form-control[data-com-onepassword-filled="dark"] {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: inherit !important;
}

/* Scribble Button Styles for Modal Forms */
.scribble-submit-button {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  margin: 10px 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: 48px;
}

.scribble-submit-button:hover {
  transform: scale(1.05);
}

.scribble-submit-bg {
  width: 100%;
  height: 48px;
  object-fit: cover;
  display: block;
}

.scribble-submit-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}

/* Override Bootstrap button styles for scribble buttons */
.card-register .scribble-submit-button {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: 48px !important;
  width: 100% !important;
}


/* ==================== End Modal Styles ==================== */


/* ==================== ENHANCED RESPONSIVE STYLES ==================== */

/* Global Font Scaling for Mobile */
@media (max-width: 768px) {
  body, html {
    font-size: 14px;
  }
}

/* Header */
@media (max-width: 768px) {
  #top-menu-bar {
    flex-direction: column;
    padding: 10px;
  }

  .nav-links-left, .menu-links {
    display: none;
  }

  .centered-logo {
    position: static;
    transform: none;
    margin-bottom: 10px;
  }
}

/* Hero Section */
@media (max-width: 768px) {
  .hero-content {
    padding: 20px;
    text-align: center;
  }

  .hero-content .hero-text h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-content .hero-buttons {
    align-items: center;
  }

  .hero-content .hero-buttons button {
    margin: 10px 0;
  }
}

/* Who We Are Section */
@media (max-width: 768px) {
  .who-we-are-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .who-we-are-content, .who-we-are-image {
    width: 100%;
    text-align: center;
    padding: 10px;
  }

  .who-we-are-content h2 {
    font-size: 32px;
  }

  .who-we-are-content p {
    font-size: 16px;
  }

  .who-we-are-image img {
    max-width: 100%;
  }
}

/* Connect Section */
@media (max-width: 768px) {
  .connect-container {
    flex-direction: column;
    text-align: center;
  }

  .connect-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .connect-item h2 {
    font-size: 28px;
  }

  .connect-item p {
    font-size: 14px;
  }

  .connect-button button {
    padding: 10px 20px;
  }
}

/* Discover Section */
@media (max-width: 768px) {
  .discover-title {
    font-size: 32px;
  }

  .carousel-wrapper {
    overflow-x: auto;
    margin: 0;
  }

  .discover-carousel {
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
  }

  .discover-card {
    width: 250px;
    height: 475px;
  }

  .discover-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
  }
}

/* Stats Section */
@media (max-width: 768px) {
  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    justify-items: center;
  }

  .stat-box {
    width: auto; 
  }
}


/* Feature Highlights Section */
@media (max-width: 768px) {
  .feature-highlights {
    flex-direction: column;
  }

  .feature-content, .feature-image {
    width: 100%;
    text-align: center;
  }

  .feature-image img {
    width: 100%;
    height: auto;
  }

  .section-title {
    font-size: 28px;
  }
}

/* Founder Section */
@media (max-width: 768px) {
  .founder-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .founder-image, .founder-text {
    width: 100%;
  }

  .letter-content {
    font-size: 18px;
  }
}

/* Footer Section */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-logo, .footer-links, .footer-social {
    width: 100%; 
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-social {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}


/* Modal Styles */
@media (max-width: 768px) {
  .modal-content-lander {
    width: 90%;
    height: auto;
    max-height: 80%;
    padding: 20px;
  }

  .close-lander {
    font-size: 36px;
  }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  .nav-links-left, .menu-links {
    display: none;
  }

  /* Burger Icon */
  .burger-icon {
    position: absolute;
    display: block;
    top: 10px;
    left: 10px;
    font-size: 24px;
    color: #FFF;
    cursor: pointer;
    z-index: 1000; 
  }
  .centered-logo {
    margin-top: 10px;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #000;
    padding: 20px;
    text-align: center;
    z-index: 999;
  }

  .mobile-menu a {
    display: block;
    padding: 10px 0;
    color: #FFF;
    text-decoration: none;
    font-size: 18px;
  }

  .mobile-menu a:hover {
    background-color: #444;
  }
}


@media (max-width: 768px) {
  .hero-content .hero-text h1 {
    font-size: 40px !important; 
    line-height: 1.3;
    margin-bottom: 10px;
  }
}


/* ==================== END ENHANCED RESPONSIVE STYLES ==================== */

