
:root {
  --primary-color:  #84c280;
  --primary-hover: #5d995b;
  --secondary-color: #f9f9f9;
  --text-color: #333;
  --text-light: #555;
  --bg-color: #f7f8f5;
  --navbar-bg: #ffffff;
  --card-bg: #ffffff;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*
@media (prefers-color-scheme: dark) {
  :root {
    --primary-color: #84c280;
    --primary-hover: #58a558;
    --secondary-color: #2b2b2b;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-color: #1e1e1e;
    --navbar-bg: #222;
    --card-bg: #2b2b2b;
    --shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  }
}
*/

body {
  font-family:  'Prata', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2 {
  font-weight: bold;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}


button {
  font-family: "Lora", sans-serif !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

header {
  background-color: var(--bg-color);
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

a.nav-link{
  color: var(--text-color);
  
}

.navbar ul li a:hover {
  color: var(--primary-color);
}

.hero-content img{
   height: 600px;
   border-radius: 12px;
}

.hero-content {
padding: 1rem;
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-color);
}

.hero-content .highlight {
  color:var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color:var(--text-light);
}

.hero-image {
  flex: 1;
  text-align: right;

}

.hero-image img {
  max-width: 80%;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.hero-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
  }
  
  .hero-content:nth-child(1) {
    display: grid;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: center; 
    order: 0;
    justify-items: center;
  }
  
  .hero-content:nth-child(2) {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;

  }
.btn-primary {
  background-color: #7bb77a;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #5d995b;
  transform: scale(1.05);
}

.btn-secondary {
  background-color: transparent;
  color: #7bb77a;
  border: 1px solid #7bb77a;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background-color: #e6f5e9;
}

.about {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--bg-color);
}

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

.products {
  text-align: center;
  padding: 2rem 1rem;
}

.product-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  justify-items: center;
}

.product-card {
  background-color: var(--bg-color);
    padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img {
  max-width: 50%;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.product-card p {
  color: #555;
  margin-top: 0.5rem;
}

.product-card .add-to-cart {
  background-color: #7bb77a;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.product-card .add-to-cart:hover {
  background-color: #5d995b;
}

.newsletter {
  padding-top: 4rem;

  text-align: center;
  border-radius: 12px;

  margin: 2rem auto;
  max-width: 900px;
}

.newsletter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  color: #7bb77a;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.newsletter-form input {
  padding: 1rem;
  font-size: 1rem;

  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;

  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #7bb77a;
  box-shadow: 0 0 4px rgba(123, 183, 122, 0.5);
}

#btn-form {
  padding: 1rem;
  font-size: 1.2rem;
  width: auto;
  font-weight: bold;
  color: white;
  background-color: #7bb77a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#btn-form :hover {
  background-color: #5d995b;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .newsletter-container {
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-container{
    display: block;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
  .hero-content img{
    height: 250px;
    border-radius: 8px;
  }

  .skin-container{
    max-width: 400px;
  }

}

.product {
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
  background-color: #f7f8f5;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #7bb77a;
  margin-bottom: 2rem;
}

#cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
}

#cart-table thead {
  background-color: #7bb77a;
  color: white;
}

#cart-table th,
#cart-table td {
  text-align: center;
  padding: 1rem;
  border: 1px solid #ddd;
}

#cart-table th {
  font-size: 1.2rem;
  font-weight: 700;
}

#cart-table tbody tr:nth-child(even) {
  background-color: #f0f8f4;
}

#cart-table tbody tr:hover {
  background-color: #e6f5e9;
}

button {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.remove-item {
  color: white;
}

#checkout {
  background-color: #7bb77a;
  color: white;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#checkout:hover {
  background-color: #5d995b;
  transform: scale(1.05);
}

.purchase {
  text-align: center;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  #cart-table th,
  #cart-table td {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  #checkout {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

.remove-item {
  background: transparent;
  border: none;
  color: #f44336;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}

.remove-item:hover {
  transform: scale(1.2);
}
.about,
.mission,
.values,
.history {
  text-align: center;
  padding: 3rem 1rem;
  background-color: var(--bg-color);
    margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 900px;
}

.about h1,
.mission h1,
.values h1,
.history h1 {
  font-size: 2.5rem;
  color: #7bb77a;
  margin-bottom: 1rem;
}

.about p,
.mission p,
.history p,
.values ul {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values ul li {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #333;
}

.about {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
    margin: 2rem auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #7bb77a;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}
.about-card {
  justify-content: center;
  max-width: 900px;
  margin: 2rem auto;
  background-color: var(--bg-color);
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 50%;
  padding: 2rem;

  min-height: 300px;
}

.about-content {
  flex: 1 1 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  font-size: 1.2rem;
  color: var(--text-color);
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
}

.about-content ul li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.about-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.about-buttons a {

  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.btn-secondary {
  height: fit-content;
    margin: 1rem;
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-hover);
  color: white;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 70%;
  }
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Formulario */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  color: #555;
}

input[type="radio"] {
  margin-right: 0.5rem;
}

button {
  /* background-color: #7bb77a; */
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  /* background-color: #5d995b; */
  transform: scale(1.05);
}

/* Resultados */
.results {
  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.results h2 {
  font-size: 2rem;
  color: #7bb77a;
  margin-bottom: 1rem;
}

.results p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Botones de Acciones */
.actions {
  margin-top: 1.5rem;
}

.actions button {
  display: inline-block;
  background-color: #7bb77a;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.actions button:hover {
  background-color: #5d995b;
  transform: scale(1.05);
}


/* .container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
} */


h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

p.highlight {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
}
strong.hightlight{
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--text-light);
}

input[type="radio"] {
  margin-right: 0.5rem;
}

.results {
  display: none;
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--secondary-color);
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.results h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.results p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.actions {
  margin-top: 1.5rem;
}

.actions button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.actions button:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.social-buttons {
  margin-top: 1.5rem;
  text-align: center;
}

.social-buttons a {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-buttons .facebook {
  background-color: #4267b2;
}

.social-buttons .facebook:hover {
  background-color: #365899;
}

.social-buttons .twitter {
  background-color: #1da1f2;
}

.social-buttons .twitter:hover {
  background-color: #1991db;
}

.navigation {
  margin-top: 2rem;
  text-align: center;
}

.navigation a {
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
}

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

.navigation .btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.navigation .btn-primary:hover,
.navigation .btn-secondary:hover {
  background-color: var(--primary-hover);
  color: white;
}
.error-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: auto;
}

.error-container h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.error-container p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.error-container a {
  text-decoration: none;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.error-container a:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.error-container img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.status-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: auto;
}

.status-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.status-container p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.status-container a {
  text-decoration: none;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.status-container a:hover {
  background-color: var(--primary-hover);
  transform: scale(1.05);
}

.status-container img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.status-container {
  margin-top: 2rem;
}

.status-container.success h1 {
  color: var(--success-color);
}

.status-container.success a {
  background-color: var(--success-color);
}

.status-container.success a:hover {
  background-color: darkgreen;
}


.status-container.pending h1 {
  color: var(--pending-color);
}

.status-container.pending a {
  background-color: var(--pending-color);
}

.status-container.pending a:hover {
  background-color: #e6a700;
}


.coming-soon {
  text-align: center;
  padding: 3rem 1.5rem;
  background-color:var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 2rem auto;
  animation: fadeIn 1s ease-in-out;
}

.coming-soon h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #7bb77a;
  margin-bottom: 1rem;
}

.coming-soon p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.coming-soon .btn-primary {
  background-color: #7bb77a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.coming-soon .btn-primary:hover {
  background-color: #5d995b;
  transform: scale(1.05);
}


@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.whatsapp-link {
  color: #25D366;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.whatsapp-link i {
  font-size: 1.5rem;
}

.whatsapp-link:hover {
  color: #5d995b;
  transform: scale(1.05);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #5d995b;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
  .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 1.8rem;
      bottom: 15px;
      right: 15px;
  }
}


.personalized-help {
  text-align: center;
  margin-top: 2rem;
  color:var(--secondary-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.personalized-help p {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}


.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color:var(--secondary-color);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp i {
  font-size: 1.5rem;
  margin-right: 8px;
}

.btn-whatsapp:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.skin-container{
  background-color: var(--bg-color);
    max-width: 800px;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

button.collapsed, .navbar-toggler{
  border-color:var(--primary-color) !important;
} 

.container-btn-hero{

  display: flex
  ;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    align-content: center;
}

.reveal {
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal.visible {
  opacity: 1; 
  transform: translateY(0);  
}
#typewriter {
  font-size: 2rem;
  font-weight: bold;

  overflow: hidden; 

}

@keyframes blink {
  50% {
      border-color: transparent;
  }
}

.blinking-cursor {
  animation: blink 0.6s infinite;
}

#typewriter{
  text-align: center;
}

@keyframes floatingLeaves {
  0% { transform: translateY(0px) rotate(0deg); opacity: 1; }
  50% { transform: translateY(100px) rotate(30deg); opacity: 0.8; }
  100% { transform: translateY(200px) rotate(0deg); opacity: 0.5; }
}

.leaf {
  position: absolute;
  top: -50px;
  animation: fall 10s linear infinite;
}

@keyframes fall {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(100vh) rotate(180deg); }
}
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-icon {
  font-size: 52px; 
  color: var(--primary-color); 
  opacity: 0.7;
}


@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(10px);
  }
}

#leaf-container {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw; 
  height: 100vh; 
  pointer-events: none; 
  overflow: hidden; 
  z-index: -1; 
}


@media (max-width: 768px) {
  #leaf-container {
      height: 80vh; 
  }
}

@media (max-width: 480px) {
  #leaf-container {
      height: 60vh;
  }
}