/* BILLHUNTERS - Sports Energy Theme */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #1e3a5f;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --light-bg: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  padding: 0.9rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: white; }

.hero-banner {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s 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: linear-gradient(135deg, rgba(30,58,95,0.85) 0%, rgba(30,58,95,0.4) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}
.hero-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-desc {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}
.hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--orange);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}
.hero-btn:hover { background: var(--orange-dark); transform: translateY(-2px); }
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dots span.active { background: var(--orange); transform: scale(1.2); }

section { padding: 4rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.sect-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.sect-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 2rem;
}

.products-section { background: white; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.prod-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.prod-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.prod-card:hover img { transform: scale(1.05); }
.prod-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(30,58,95,0.9));
  color: white;
}
.prod-caption h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; margin-bottom: 0.2rem; }
.prod-caption p { font-size: 0.8rem; opacity: 0.9; }

.about-section { background: var(--navy); color: white; }
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}
.about-gallery .main-img {
  grid-row: span 2;
  border-radius: 8px;
  overflow: hidden;
  min-height: 260px;
}
.about-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-gallery .sub-img {
  border-radius: 8px;
  overflow: hidden;
  height: 125px;
}
.about-gallery .sub-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text .sect-tag { color: var(--orange); }
.about-text .sect-title { color: white; }
.about-text p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonials-section { background: var(--light-bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-top: 4px solid var(--orange);
}
.testimonial-stars { color: var(--orange); margin-bottom: 1rem; }
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 50px; height: 50px;
  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(--navy); }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); }

.message-section { background: linear-gradient(135deg, var(--navy) 0%, #2d4a6f 100%); color: 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: 8px;
  overflow: hidden;
  height: 380px;
}
.message-img img { width: 100%; height: 100%; object-fit: cover; }
.message-section .sect-tag { color: var(--orange); }
.message-section .sect-title { color: white; }
.message-form {
  background: rgba(255,255,255,0.08);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
}
.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.95);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-send {
  padding: 1rem 2rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-send:hover { background: var(--orange-dark); }

.site-footer {
  background: var(--navy);
  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: 2rem;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  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.1em; color: var(--orange); 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.3rem 0; transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); }
.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(--orange); }
.footer-social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s;
}
.footer-social-links a:hover { background: var(--orange); }
.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-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 999;
  transition: transform 0.2s;
}
.back-top:hover { transform: translateY(-3px); }

.page-hero {
  height: 40vh;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,95,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
}

.about-content {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.about-content h2 { font-family: 'Oswald', sans-serif; color: var(--navy); margin-bottom: 1.5rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }
.about-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-img-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }

.contact-banner { width: 100%; height: 40vh; min-height: 260px; overflow: hidden; }
.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: 8px; overflow: hidden; height: 360px; }
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }
.contact-info h2 { font-family: 'Oswald', sans-serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info .contact-item .icon {
  width: 46px; height: 46px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info .contact-item p, .contact-info .contact-item a { color: var(--text-muted); text-decoration: none; line-height: 1.6; }
.contact-info .contact-item a:hover { color: var(--orange); }

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 968px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-gallery { order: 1; }
  .about-text { order: 2; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .message-wrap { grid-template-columns: 1fr; }
  .message-img { height: 280px; }
  .contact-body { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: right 0.3s;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  }
  .nav-menu.open { right: 0; }
  .menu-toggle { display: block; z-index: 1001; }
  .products-grid { grid-template-columns: 1fr; }
  .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; }
}
