/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Tamarillo&display=swap');
@import url('https://fonts.cdnfonts.com/css/vremena-grotesk-medium');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Font: All text will use Tamarillo & color #0C767D */ 
body {
  font-family: 'Tamarillo', sans-serif;
  color: #0C767D;
  background-color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 3px solid #eee;
  background: #fff;
}

.logo {
  font-family: 'VremenaGroteskMedium', sans-serif;
  font-size: 20px;
  color: #0C767D;
  text-decoration: none;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #0C767D;
  font-weight: bold;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-text {
  text-align: center;
  padding: 30px 0 5px 0;
}

.hero-title {
  font-family: 'VremenaGroteskMedium', sans-serif;
  font-size: 3rem;
  color: #0C767D;
  margin-bottom: 1px;
}

.hero-slogan {
  font-family: 'VremenaGroteskMedium', sans-serif;
  font-size: 1.5rem;
  color: #0C767D;
  margin-top: 2px;
  margin-bottom: 0;
  line-height: 1.1;
}

.hero-img {
  display: block;
  margin: 30px auto 0 auto; /* Move image down from text */
  max-width: 100%;
  height: auto;
}

.btn {
  background: #0C767D;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section.light-bg {
  background-color: #f9f9f9;
}

.section h2 {
  font-family: 'Tamarillo', sans-serif;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #0C767D;
}

/* About Section - Centered Text */
.about-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.about-content p {
  color: #0C767D;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Service Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card,
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  text-align: center; /* Centers everything inside the card */
}

.service-card h3,
.product-card h3 {
  font-family: 'Tamarillo', sans-serif;
  margin-bottom: 10px;
  color: #0C767D;
  text-align: center; /* Redundant, but safe for some browsers */
}

.service-card p,
.product-card p {
  color: #0C767D;
  font-size: 1rem;
  text-align: center;
}

/* Featured Products Section */
.products-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.products-intro,
.products-outro {
  font-size: 1.1rem;
  color: #0C767D;
  line-height: 1.6;
  margin-bottom: 20px;
}

.products-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.products-list li {
  font-size: 1rem;
  color: #0C767D;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #0C767D;
  color: white;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  font-weight: bold;
  font-size: 14px;
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 15px;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  font-family: 'VremenaGroteskMedium', sans-serif;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #0C767D;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #0C767D;
  opacity: 1;
}

.contact-form button {
  background: #0C767D;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
  color: #0C767D;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text {
    padding: 20px 0 5px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-slogan {
    font-size: 1rem;
    margin-top: 2px;
  }

  .logo {
    font-size: 18px;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-tel {
    display: block;
    margin-bottom: 6px;
    font-size: 1.1rem;
  }

  .service-card,
  .product-card {
    text-align: center;
  }
}