/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fc;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #e9f1fb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  height: 50px;
}

.navbar nav ul {
  display: flex;
  list-style: none;
}

.navbar nav ul li {
  margin-left: 25px;
}

.navbar nav ul li a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: url("https://ik.imagekit.io/8kukfpive/banner_height_reduced_compressed.jpg?updatedAt=1754555689849er_for_Vitachemie_Pha.png") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
  
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero .btn {
  background: #ffd700;
  padding: 12px 25px;
  color: #004aad;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero .btn:hover {
  background: white;
  color: #004aad;
}

/* About Us */
.about {
  padding: 70px 50px;
  background: url("https://img.freepik.com/free-vector/hexagonal-medical-background_1017-19366.jpg") no-repeat center center/cover;
  color: #333;
  
}

.about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #004aad;
}

.about-container p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  
  padding: 15px;
  border-radius: 10px;
}

/* Products */
.products {
  padding: 70px 50px;
  background: linear-gradient(135deg, #2e8bff, #2ed1a2);
}

.products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 10px;
}

.product-card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}
.product-card .btn {
  background: #ffd700;
  padding: 12px 25px;
  color: #004aad;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

/* mission */
.mission-section {
  background: linear-gradient(135deg, #2e8bff, #2ed1a2);
  padding: 60px 20px;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
}

.mission-container {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mission-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 1px;
}

.mission-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #f5faff;
}

.mission-container strong {
  color: #fff176; /* soft yellow highlight */
}

.mission-tagline {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 30px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: #fffae3;
  font-style: italic;
}


/* Footer */
.footer {
  background: linear-gradient(135deg, #2e8bff, #2ed1a2);
  color: white;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h3, .footer-col h4 {
  margin-bottom: 15px;
  color: #ffd700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
}
