/* css/style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1F2937;
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #00ADA5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ADA5;
}

.logo i {
  color: #FA2F3C;
  font-size: 2rem;
}

/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #1F2937;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #00ADA5;
}

.lang-toggle {
  background: #00ADA5;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-toggle:hover {
  background: #006A4E;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #1F2937;
}

/* Footer */
footer {
  background: #1F2937;
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-content p {
  margin: 0.5rem 0;
}

.footer-content a {
  color: #00ADA5;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #00ADA5;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #006A4E;
}

.btn-outline {
  background: transparent;
  border: 2px solid #00ADA5;
  color: #00ADA5;
}

.btn-outline:hover {
  background: #00ADA5;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #00ADA5 0%, #006A4E 100%);
  color: white;
  padding: 4rem 0;
}

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

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

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero .btn {
  background: white;
  color: #00ADA5;
}

.hero .btn:hover {
  background: #FA2F3C;
  color: white;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card i {
  font-size: 2.5rem;
  color: #FA2F3C;
  margin-bottom: 1rem;
}

.card h3 {
  color: #00ADA5;
}

/* Product Card */
.product-card {
  text-align: center;
}

.product-card .price {
  font-weight: 700;
  color: #FA2F3C;
  margin: 0.5rem 0;
}

/* Blog Article */
.blog-article {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.blog-article h2 {
  color: #00ADA5;
}

.blog-meta {
  color: #6B7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-article .cta {
  margin-top: 1.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00ADA5;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

th {
  background: #00ADA5;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}