
:root {
    --primary-yellow: #FDD835; /* Background Circle */
    --primary-orange: #E65100; /* "FORTES" Text */
    --primary-gray: #616161; /* Cart Outline and Wheels */
    --primary-green: #43A047; /* Leaf */
    --primary-pink: #EC407A; /* Round Item in Cart */
    --primary-blue: #42A5F5; /* Rectangular Item in Cart */
    --primary-white: #FFFFFF; /* Cart Items */
    --primary-black: #212121; /* "MINI-MERCADO" Text */
}

iframe {
	width: 100%;
}

body {
	overflow-x: hidden;
}

@keyframes fadeIn {

	from {
		color: #333333;
	}

	to {
		color: #00AEEF;
	}

}

@keyframes backgroundFadeIn {
	from {
		background-color: #FFFFFF;
	}

	to {
		background-color: #00AEEF;
	}
}

/* .navbar-brand,
.navbar-nav .nav-link {
	animation: fadeIn 1s ease-in-out;
}

.navbar {
	animation: backgroundFadeIn 5s ease-in-out;

} */

.hero-section {


	padding: 1px 0;
	text-align: center;
}

.carousel-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.carousel-item {
	height: 80vh;
	min-height: 300px;
	background-size: cover;
	background-position: center;
}

.carousel-caption {
	top: 50%;
	transform: translateY(-50%);
}

h1 {
	font-size: 50px;
}

h5 {
	color: #00AEEF;
}

.para1 {
	color: white;
	font-size: 20px;
	font-weight: bold;
}


/* Use smaller images for smaller screens */
@media (max-width: 768px) {


	.carousel-item.active {
		background-image: url('../img/7-small.webp') !important;
	}

	.carousel-item:nth-child(2) {
		background-image: url('../img/3-small.webp') !important;
	}

	.carousel-item:nth-child(3) {
		background-image: url('./img/6-small.webp') !important;
	}
}


.values-section {
    background-color: var(--primary-white);
    padding: 1rem 1rem;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
  }

  .section-header p {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-bottom: 2rem;
  }

  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .card {
    background-color: var(--primary-yellow);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 2rem 1.5rem;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }

  .icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-blue);
    padding: 1rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    fill: var(--primary-white);
  }

  .card-title {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
  }

  .card-text {
    font-size: 1rem;
    color: var(--primary-gray);
  }

  /* Responsive Design */
  @media screen and (max-width: 600px) {
    .values-section {
      padding: 2rem 1rem;
    }

    .section-header h2 {
      font-size: 2rem;
    }

    .section-header p {
      font-size: 1rem;
    }

    .card {
      padding: 1.5rem;
    }

    .card-title {
      font-size: 1.2rem;
    }

    .card-text {
      font-size: 0.9rem;
    }
  }

.about-section h2 {
	font-size: 2.5rem;
	margin-bottom: 30px;
}

.about-section .row {
	display: flex;
	align-items: center;
}

.about-section img {
	max-width: 100%;
	border-radius: 10px;
}

.about-details {
	animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20%);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (max-width: 768px) {
	.about-section h2 {
		font-size: 2rem;
	}

	.about-details {
		animation: fadeInUp 1s ease-in-out;
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(20%);
		}

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


.products-section {
    background-color: var(--background-color);
    padding: 1rem 1rem;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
  }

  .product-card {
    background: white;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }

  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .content {
    padding: 1.5rem;
    text-align: left;
  }

  .product-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }

  .product-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }

    .product-card p {
      font-size: 0.9rem;
    }
  }