/*
 Theme Name: Home Chem Child
 Template: twentytwentyfive
 Version: 1.0
*/

/* General Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0077b6, #0096c7);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-buttons .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: #fff;
  color: #0077b6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.hero-buttons .btn-secondary {
  background: #023e8a;
  color: #fff;
}

/* Options Section */
.options {
  padding: 50px 20px;
  background: #f8f9fa;
}

.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.option {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.option h2 {
  margin-bottom: 10px;
}

.option .btn {
  margin-top: 15px;
  display: inline-block;
  padding: 10px 20px;
  background: #0077b6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Calculator Section */
.calculator {
  padding: 50px 20px;
}

.calculator h2 {
  text-align: center;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.tabs li {
  padding: 10px 15px;
  background: #e9ecef;
  border-radius: 5px;
  cursor: pointer;
}

.calc-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
  text-align: center;
}

/* Supplier Section */
.suppliers {
  background: #f1f1f1;
  padding: 50px 20px;
  text-align: center;
}

.suppliers .btn {
  margin-top: 15px;
  padding: 12px 25px;
  background: #0096c7;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #023e8a;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
