/* Modako Inc. Website Styles */

:root {
  --color-purple: #6A4C93;
  --color-orange: #D2691E;
  --color-teal: #4A9EA1;
  --color-coral: #C75B5B;
  --color-charcoal: #2D2D2D;
  --color-dark: #1A1A1A;
  --color-light-gray: #E8E8E8;
  --color-white: #FFFFFF;
  --color-warm-bg: #F7F3E9;
  --color-accent: #F0E68C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-light-gray);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--color-dark);
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--color-dark);
}

a {
  text-decoration: none;
  color: var(--color-purple);
}

a:hover {
  color: var(--color-orange);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-purple);
  color: var(--color-white);
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--color-orange);
}

.btn-secondary {
  background-color: var(--color-teal);
}

.btn-secondary:hover {
  background-color: var(--color-coral);
}

/* Header */
header {
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-light-gray);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--color-charcoal);
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--color-charcoal);
  margin: 3px 0;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-warm-bg) 0%, var(--color-accent) 50%, var(--color-light-gray) 100%);
  padding: 140px 2rem 100px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.05);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-purple);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 80px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-dark);
}

.section-alt {
  background-color: var(--color-warm-bg);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid var(--color-light-gray);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-image {
  height: 220px;
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-purple);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-orange) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 80px 2rem;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.1);
  z-index: 1;
}

.cta-banner > * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner .hero-buttons {
  margin-top: 2rem;
}

/* Footer */
footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 50px 2rem 30px;
  border-top: 1px solid var(--color-charcoal);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--color-teal);
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--color-light-gray);
}

.footer-section a:hover {
  color: var(--color-white);
}

.copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-charcoal);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-light-gray);
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }

  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 60px 1rem;
  }

  .section h2 {
    font-size: 2rem;
  }

  .product-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Product Gallery */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.product-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-gallery img:hover {
  transform: scale(1.05);
}