/* DECHO TRADE - Forest Green + Amber Theme - Sports Equipment */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --green: #1a4d3c;
  --green-dark: #0d2d22;
  --green-darker: #0a1f18;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --cream: #fef3c7;
  --white: #ffffff;
  --bg-light: #f5f7f6;
  --text-muted: #6b7c75;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg-light);
  color: var(--green-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green-dark);
  padding: 1rem 2.5rem;
  border-bottom: 1px solid rgba(245,158,11,0.2);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo img { height: 38px; vertical-align: middle; }
.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--amber); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: rgba(255,255,255,0.9); }

/* Hero - Carousel */
.hero-full {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,45,34,0.65);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  width: 100%;
  display: grid;
}
.hero-content-panel {
  grid-area: 1 / 1;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  pointer-events: none;
}
.hero-content-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--amber);
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero-content h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero-btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  background: var(--amber);
  color: var(--green-dark) !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}
.hero-btn:hover { background: var(--cream); transform: translateY(-2px); }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dots span.active {
  background: var(--amber);
  width: 28px;
  border-radius: 5px;
}

/* Section common */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.sect-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.sect-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Products - 4-col equal cards */
.products-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.prod-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--green);
}
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.prod-card:hover img { transform: scale(1.06); }
.prod-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(13,45,34,0.9));
  color: var(--white);
}
.prod-caption h3 { font-size: 1.05rem; margin-bottom: 0.25rem; font-family: 'Libre Baskerville', serif; font-weight: 400; }
.prod-caption p { font-size: 0.85rem; opacity: 0.9; }

/* About */
.about-section { background: var(--green); color: var(--white); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-section .sect-tag { color: var(--amber); }
.about-section .sect-title { color: var(--white); }
.about-text .sect-title { margin-bottom: 1.5rem; }
.about-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-gallery .main-img {
  grid-column: span 2;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}
.about-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery .sub-img {
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
}
.about-gallery .sub-img img { width: 100%; height: 100%; object-fit: cover; }

/* Testimonials */
.testimonials-section { background: var(--bg-light); }
.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(245,158,11,0.2);
  box-shadow: 0 4px 20px rgba(26,77,60,0.08);
  position: relative;
  transition: box-shadow 0.3s;
}
.testimonial-box:hover { box-shadow: 0 12px 40px rgba(26,77,60,0.15); }
.testimonial-box::before {
  content: '"';
  font-family: 'Libre Baskerville', serif;
  font-size: 4rem;
  color: var(--amber);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.testimonial-box p {
  color: var(--green-dark);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; color: var(--green-dark); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

/* Message - Left image, right form */
.message-section { background: var(--green-dark); color: var(--white); }
.message-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.message-img {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}
.message-img img { width: 100%; height: 100%; object-fit: cover; }
.message-section .sect-tag { color: var(--amber); }
.message-section .sect-title { color: var(--white); }
.message-form {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(245,158,11,0.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-send {
  padding: 1rem 2rem;
  background: var(--amber);
  color: var(--green-dark);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-send:hover { background: var(--cream); }

/* Footer */
.site-footer {
  background: var(--green-darker);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}
.footer-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-nav h4, .footer-contact h4, .footer-social h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer-nav ul { list-style: none; }
.footer-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--amber); }
.footer-contact p, .footer-contact a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--amber); }
.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-social-links a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s;
}
.footer-social-links a:hover { background: var(--amber); color: var(--green-dark); }
.footer-copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--amber);
  color: var(--green-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  transition: transform 0.2s;
  z-index: 999;
}
.back-top:hover { transform: translateY(-3px); }

/* Contact page */
.contact-banner {
  width: 100%;
  height: 45vh;
  min-height: 280px;
  overflow: hidden;
  margin-top: 60px;
}
.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.contact-visual {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
}
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }
.contact-info h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info .contact-item .icon {
  width: 48px; height: 48px;
  background: rgba(245,158,11,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  flex-shrink: 0;
}
.contact-info .contact-item p,
.contact-info .contact-item a {
  color: var(--green-dark);
  text-decoration: none;
  line-height: 1.6;
}
.contact-info .contact-item a:hover { color: var(--amber-dark); }

/* About page */
.page-hero {
  height: 45vh;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,45,34,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  font-weight: 400;
}
.about-content {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: 'Libre Baskerville', serif;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 400;
}
.about-content p {
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 968px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-text { order: 1; }
  .about-gallery { order: 2; }
  .testimonial-strip { grid-template-columns: 1fr; }
  .message-wrap { grid-template-columns: 1fr; }
  .message-img { order: 1; height: 280px; }
  .message-form { order: 2; }
  .contact-body { grid-template-columns: 1fr; }
  .contact-visual { height: 280px; }
}
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.25rem; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s;
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .menu-toggle { display: block; z-index: 1001; }
  .products-grid { grid-template-columns: 1fr; }
  section { padding: 3rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-desc { max-width: none; }
  .footer-social-links { justify-content: center; }
  .about-img-grid { grid-template-columns: 1fr; }
}
