
/* Base styles */
:root {
  --primary: #FF6600;
  --primary-dark: #9B4F3F;
  --secondary: #D9A566;
  --accent: #506D2F;
  --text-dark: #2A2828;
  --text-light: #4A4A4A;
  --footer-bg: #FF6600;
  --bg-light: #F8F5F0;
  --bg-sand: #E6D2B2;
  --white: #FFFFFF;
  --black: #000000;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-terracotta {
  color: var(--primary);
}

.small-text {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Pattern background */
.pattern-bg {
  background-color: var(--bg-light);
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c35a38' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Section styles */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Button styles */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-primarynews {
  background-color: var(--white);
  color: var(--primary);
}

.btn-primarynews:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Navbar styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-menu {
  display: none;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-toggle {
  display: block;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
}

.mobile-btn {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

/* Hero styles */
.hero {
  position: relative;
  padding: 8rem 0 4rem 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

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

.hero-text h1 {
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.AppStore {
  margin-left: 650px;
  margin-top: 35px;
}

.store-logos {
  display: flex;
  margin: 2px;
  margin-top: -40px;
}

.AppStore p {
  margin-left: 20px;
}

.store-logos img {
  width: 150px;
  height: auto;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto 1rem auto;
}

.waitlist-form input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(203, 90, 56, 0.3);
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.hero-image {
  margin-top: 2rem;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.image-container::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  background-color: rgba(155, 79, 63, 0.1);
  border-radius: 1rem;
  z-index: -1;
}

.image-container::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  background-color: rgba(217, 165, 102, 0.2);
  border-radius: 1rem;
  z-index: -1;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
}

.featured-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.featured-text {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: rgba(42, 40, 40, 0.6);
  margin-bottom: 1.5rem;
}

.featured-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  opacity: 0.7;
}

.logo-item {
  font-weight: 600;
}

/* Features styles */
.features {
  padding: 4rem 0;
  background-color: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

/* Products styles */
.products {
  padding: 4rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.product-content {
  padding: 1.25rem;
}

.product-content h3 {
  margin-bottom: 0.5rem;
}

.more-products {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-light);
}

/* About styles */
.about {
  padding: 4rem 0;
  background-color: rgba(230, 210, 178, 0.3);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-image {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  background-color: rgba(195, 90, 56, 0.2);
  border-radius: 1rem;
  z-index: -1;
}

.about-image img {
  border-radius: 1rem;
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-points {
  margin: 1.5rem 0;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.point-dot {
  width: 0.4rem;
  height: 0.4rem;
  background-color: var(--primary);
  border-radius: 50%;
  margin-top: 0.5rem;
}

/* FAQ styles */
.faq {
  padding: 4rem 0;
  background-color: var(--white);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
}

.accordion-header h3 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content a {
  color: #FF6600;
  font-weight: 600;
}

.accordion-content span {
  color: #FF6600;
  font-weight: 600;
}

.ecosup {
  margin-top: 10px;
  font-weight: 700;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  padding-bottom: 1rem;
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-cta a {
  font-weight: 600;
}

.faq-cta a:hover {
  text-decoration: underline;
}

/* Footer styles */
.footer {
  background-color: var(--footer-bg);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-column h3 {
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.unsub {
  color: var(--text-light);
}

.unsub:hover {
  text-decoration: underline;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--white);
  opacity: 0.8;
}

.social-links a:hover {
  opacity: 1;
  color: var(--text-dark);
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li a:hover {
  color: var(--text-dark);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.contact-email:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--text-dark);
}

.newsletter{
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Media Queries */
@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
  
  .waitlist-form {
    flex-direction: row;
  }
  
  .waitlist-form input {
    flex: 1;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .AppStore {
    margin-left: 650px;
    margin-top: 35px;
  }
  
  .store-logos {
    display: flex;
    margin: 2px;
    margin-top: -40px;
  }
  
  .AppStore p {
    margin-left: 20px;
  }
  
  .store-logos img {
    width: 150px;
    height: auto;
  }
}

.Econg span {
    color: #FF6600;
}

/*Login and Register*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.MainLog {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(247, 233, 210, 1) 0%, rgba(235, 63, 63, 1) 48%, rgba(255, 135, 23, 1) 100%);
}

/* FIXED: Select the actual IDs in your HTML */
.logcontainer #logCard, 
#register, .card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 380px;
  max-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}



.logcontainer p {
  font-size: 15px;
  color: #525252;
  /* margin-bottom: -30px; */
}

.welcominp {
  text-align: center;;
}

.logcontainer input {
  margin: 10px;
}

#login, #registerBtn {
  background-color: var(--primary);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

#login:hover,
#registerBtn:hover {
  background-color: var(--primary-hover);
}

.logcontainer h2 {
  color: #525252;
  font-size: 12px;
  margin: 15px;
}

.loginAlternatives {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* FIXED: Correct ID (lowercase) */
#loginApple,
#loginGoogle,
#registerApple, 
#registerGoogle {
  background-color: #f5f5f5;
  border: none;
  color: #333;
  padding: 8px 10px;
  border-radius: 50%;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.4s;
  width: 100%;
  font-size: 1.5rem;
}

#loginApple:hover,
#loginGoogle:hover,
#registerApple:hover,
#registerGoogle:hover {
  transform: scale(1.1);
}

.logcontainer a {
  color: #2e0dc3;
  text-decoration: none;
}


.hidden {
  display: none !important;
}



@keyframes highlightGlow {
  0% {
    box-shadow: 0 0 0px 0px #ffd700;
  }

  50% {
    box-shadow: 0 0 10px 5px #ffd700;
  }

  100% {
    box-shadow: 0 0 0px 0px #ffd700;
  }
}


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*
@media (min-width: 768px) {
  .nav-menu {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
  
  .hero-text {
    text-align: left;
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
    margin-top: 0;
  }
  
  
  .waitlist-form {
    margin-left: 0;
  }
  
  .about-content {
    flex-direction: row;
  }
  
  .about-image,
  .about-text {
    flex: 1;
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 425px) {
  .AppStore {
    text-align: left; /* Left-align on desktop */
    margin-left: 0; /* Remove fixed margin */
    margin-top: 30px; /* Remove fixed margin */
  }
  
  .store-logos {
    justify-content: flex-start; /* Align left on desktop */
    gap: 15px;
  }
  
  .store-logos img {
    width: 150px; /* Larger on desktop */
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

