/* Navbar and Hero Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  height: 100%;
}

/* Base Navbar Styles */
#navbar.navbar,
nav#navbar.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999 !important;
  padding: 0.8rem 0;
  background: #f9f6e4 !important;
  background-color: #f9f6e4 !important;
  border-bottom: 2px solid #6C562F;
  box-shadow: 0 4px 12px rgba(108, 86, 47, 0.15);
  transition: all 0.3s ease;
}

/* Scrolled state - Enhanced shadow when scrolling */
#navbar.navbar.scrolled,
nav#navbar.navbar.scrolled {
  background: #f9f6e4 !important;
  background-color: #f9f6e4 !important;
  border-bottom: 2px solid #6C562F !important;
  box-shadow: 0 6px 20px rgba(108, 86, 47, 0.25) !important;
}

/* Extra specificity for overriding Webflow styles */
body #navbar.scrolled {
  background: #f9f6e4 !important;
  background-color: #f9f6e4 !important;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 2rem;
  color: #6C562F;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

/* Default Navbar Text Styles - Custom color for hero section */
.navbar .nav-logo h3 {
  color: #6C562F;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0; /* Remove default margin */
}

.navbar .nav-link {
  color: #6C562F;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.navbar .nav-link:hover {
  color: #c7d99e;
  background: rgba(255, 255, 255, 0.1);
}

.navbar .bar {
  background-color: #6C562F;
  transition: all 0.3s ease;
}

/* Scrolled Navbar Text Styles - Custom color for light background */
.navbar.scrolled .nav-logo h3 {
  color: #6C562F;
  text-shadow: none;
}

.navbar.scrolled .nav-link {
  color: #6C562F;
  text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
  color: #8ba85a;
  background: rgba(108, 86, 47, 0.1);
}

.navbar.scrolled .bar {
  background-color: #6C562F;
  box-shadow: none;
}

.btn-cta {
  background: #f9f6e4;
  color: #6C562F !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  border: 2px solid #6C562F;
  text-shadow: none;
  /* Remove text shadow for CTA button */
}

.btn-cta:hover {
  background: #f9f6e4;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/plutus_hero_large_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(199, 217, 158, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(199, 217, 158, 0.05) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  animation: backgroundFadeIn 1.5s ease-out 0.5s forwards;
  /* Delay background fade */
}

@keyframes backgroundFadeIn {
  to {
    opacity: 1;
  }
}



@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d562f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 85px;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    gap: 1rem;
  }

  /* Default mobile menu - dark background for hero state */
  .navbar .nav-menu {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  .navbar .nav-menu .nav-link {
    color: #f9f6e4;
    text-shadow: none;
  }

  /* Scrolled mobile menu - white background */
  .navbar.scrolled .nav-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
  }

  .navbar.scrolled .nav-menu .nav-link {
    color: #6C562F;
    text-shadow: none;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-container {
    padding: 0.25rem 1rem;
  }

  .hero-section {
    height: 100vh;
    width: 100vw;
    background-image: url('../images/plutus_hero_mobile_bg.webp');
  }



  .nav-logo h3 {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .nav-container {
    padding: 0.25rem 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Ensure existing content flows properly after full screen hero */
.section:first-of-type {
  margin-top: 0;
  padding-top: 2rem;
  /* Add some top padding to the first section after hero */
}

/* Legacy Text Styles */
.legacy-text-container {
  width: 100%;
  text-align: center;
  padding: 2rem 0 1rem 0;
  background: white;
}

.legacy-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #6d562f;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* Currency Ticker Styles */
.currency-ticker {
  width: 100%;
  background: white;
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  outline: none;
  border: none;
}

.currency-ticker-content {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
  font-family: "DM Sans", sans-serif;
  color: #6d562f;
  white-space: nowrap;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 1rem;
}

.currency-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.currency-symbol {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f9f6e4;
  border: 2px solid #6d562f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #6d562f;
  margin-bottom: 0.5rem;
}

.currency-name {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  color: #6d562f;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.currency-ticker:hover .currency-ticker-content {
  animation-play-state: paused;
}

/* Our Approach Section Styles */
.approach-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(109, 86, 47, 0.08);
  border: 1px solid rgba(199, 217, 158, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6C562F 0%, #C7D99E 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(109, 86, 47, 0.15);
  border-color: rgba(199, 217, 158, 0.4);
}

.approach-card:hover::before {
  opacity: 1;
}

.approach-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #f9f6e4 0%, #e8e0c0 100%);
  border-radius: 50%;
  border: 2px solid #6C562F;
  transition: all 0.3s ease;
}

.approach-card:hover .approach-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #C7D99E 0%, #8ba85a 100%);
  border-color: #6C562F;
}

.approach-card h3 {
  color: #6C562F;
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
}

.approach-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive design for approach cards */
@media screen and (max-width: 768px) {
  .approach-card {
    padding: 2rem 1.5rem;
  }
  
  .approach-icon {
    width: 60px;
    height: 60px;
  }
  
  .approach-card h3 {
    font-size: 1.1rem;
  }
  
  .approach-card p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .approach-card {
    padding: 1.5rem 1rem;
  }
  
  .approach-icon {
    width: 50px;
    height: 50px;
  }
}

/* About Section Image Size Reduction */
/*
.about-section-image {
  max-width: 350px !important;
  max-height: 400px !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(109, 86, 47, 0.1);
  transition: all 0.3s ease;
}

.about-section-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(109, 86, 47, 0.15);
}
*/

/* Responsive adjustments for about section image */
@media screen and (max-width: 768px) {
  .about-section-image {
    max-width: 200px !important;
    max-height: 250px !important;
  }
  
  /* Reduce section padding on mobile */
  #about.section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  /* Reduce gap between image and text */
  #about .grid_2-col.gap-xxlarge {
    gap: 1.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  .about-section-image {
    max-width: 150px !important;
    max-height: 200px !important;
  }
  
  /* Further reduce section padding on small mobile */
  #about.section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  /* Reduce gap even more on small mobile */
  #about .grid_2-col.gap-xxlarge {
    gap: 1rem !important;
  }
  
  /* Reduce text size on mobile */
  #about h3 {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
  }
  
  #about .paragraph_large {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
}