/* ================================
   🎨 Design System (Colors & Base)
   Inspired by brochure
================================ */
:root {
  --bg: #0a0a0a;
  /* Background (near-black) */
  --ink: #f5f5f5;
  /* Primary text color */
  --muted: #c7c7c7;
  /* Muted/secondary text */
  --orange: #f18805;
  /* Primary accent orange */
  --orange-2: #f1a208;
  /* Lighter orange gradient */
  --teal: #0f3f44;
  /* Deep teal accent */
  --card: #111316;
  /* Card background */
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  /* Box shadow */
}

/* ================================
   🌐 Global Resets & Defaults
================================ */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* ================================
   🏷 Header
================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, .8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1b1b1b;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}


.brand-text {
  letter-spacing: .3px;
}

/* Navigation */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  opacity: .9;
  font-weight: 200;
  font-size: 18px;
}

.menu a:hover {
  color: var(--orange);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink);
}

/* Header - Responsive */
@media (max-width: 860px) {
  .menu {
    display: none;
    position: fixed;
    top: var(--header-height, 129px);
    left: 0;
    right: 0;
    background: #0d0f12;
    padding: 16px;
    border-bottom: 1px solid #1b1b1b;
  }


  .menu a {
    display: block;
    padding: 12px 22px;
    border-radius: 10px;
  }

  .menu a:hover {
    background: #14171b;
  }

  .hamburger {
    display: block;
  }
}

/* ================================
   🦸 Hero Section
================================ */


.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 32px;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 200;
  font-size: 40px;
  margin: 0 0 10px;
}

.hero-copy p {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 22px;
}

/* Hero Hex Frame */
.hex-frame {
  --size: 360px;
  width: var(--size);
  aspect-ratio: 1;
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  border: 6px solid #fff;
  outline: 12px solid var(--orange);
  box-shadow: var(--shadow);
  margin-inline: auto;
}

.accent-stripe {
  position: absolute;
  right: -120px;
  bottom: 10%;
  width: 320px;
  height: 70px;
  background: var(--orange);
  transform: skewX(-60deg);
}

/* Hero - Responsive */
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hex-frame {
    --size: 300px;
  }

  .accent-stripe {
    display: none;
  }
}

/* ================================
   💊 Pills & Checklists
================================ */
.pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin: 12px 0;
}

.pill.orange {
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.pill.yellow {
  background: linear-gradient(90deg, #ffce47, #ffb703);
  color: #111;
}

.checklist {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
  margin: 12px 0;
}

.checklist li {
  position: relative;
  padding-left: 26px;
}

.checklist li:before {
  content: '▸';
  position: absolute;
  left: 0;
  opacity: .9;
  color: var(--orange);
}

/* ================================
   🌟 Section Titles
================================ */
.section-title {
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Modifier for left-aligned section titles */
.section-title.left {
  text-align: left;
}

.section-title.left::after {
  margin-left: 0;
  margin-right: 0;
}

/* ================================
   📦 Sections (General)
================================ */
.about,
.pillars,
.cards,
.products,
.gallery,
.contact {
  padding: 50px 0;
}

/* ================================
   📞 Contact Info Section
================================ */
.contact-info {
  display: grid;
  gap: 16px;
  font-size: 16px;
  color: var(--muted);
  font-style: normal;
  /* reset <address> italics */
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}

.contact-list i {
  font-size: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
  /* aligns icon to first line */
}

.contact-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: var(--ink);
}

/* Pillars */
.pillars .bullets {
  margin: 0;
  padding-left: 18px;
}

.pillars .bullets li {
  margin: 8px 0;
}

/* ================================
   🃏 Cards
================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid #1a1d20;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  /* makes it feel clickable */
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  /* lift + zoom */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  /* deeper shadow */
  border-color: var(--orange);
  /* subtle accent highlight */
}

.card h3 {
  margin: 0 0 8px;
  color: var(--orange);
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--orange-2);
  /* warmer shade on hover */
}

@media (max-width: 860px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}


/* ================================
   🛍 Products
================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.category {
  background: #ffffff;
  border: 3px solid orange;
  border-radius: 5px;
  overflow: hidden;
  display: grid;
  place-items: center;
  /* centers content */
}

.category img {
  width: 100%;
  height: 220px;
  /* fixed display height for consistency */
  object-fit: contain;
  /* keeps aspect ratio without cropping */
  background: #fff;
  /* blends with product images' white bg */
  padding: 8px;
}

.category span {
  margin: 0;
  padding: 10px 12px;
  background: orange;
  text-align: center;
  font-weight: 600;
  height: 35px;
  /* fixed equal height */
  display: flex;
  align-items: center;
  justify-content: center;
  /* centers text horizontally */
  white-space: nowrap;
  /* prevent wrapping */
  overflow: hidden;
  /* hide extra text */
  text-overflow: ellipsis;
  /* add "..." if truncated */
  width: 100%;
  /* 🔥 ensures full width */
  box-sizing: border-box;
  /* padding included in width */
}



@media (max-width: 640px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   🖼 Gallery
================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid img {
  border-radius: 10px;
  border: 1px solid #1b1b1b;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================
   📬 Contact
================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #2a2f35;
  background: #0f1114;
  color: var(--ink);
  padding: 10px;
  border-radius: 10px;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   🔘 Buttons
================================ */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn.primary {
  background: var(--orange);
  color: #111;
}

.btn.primary:hover {
  filter: brightness(.92);
}

/* ================================
   ⚓ Footer
================================ */
.site-footer {
  border-top: 1px solid #1b1b1b;
  padding: 20px 0;
  color: #9aa0a6;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer right (social + back-to-top) */
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Social links */
.social-links {
  margin-left: 0px;
  display: flex;
  gap: 30px;
}

.social-links a {
  color: #9aa0a6;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--orange);
  /* hover accent */
}

/* Back-to-top link */
.back-to-top {
  font-weight: 600;
  text-decoration: none;
  color: #9aa0a6;
  transition: color 0.3s ease;
}

.back-to-top:hover {
  color: #ffffff;
}

/* ================================
   📖 Paragraph / Content Text
================================ */
section p {
  font-size: 16px;
  font-weight: 300;
  /* slightly lighter for readability */
  line-height: 1.7;
  /* good spacing between lines */
  color: var(--muted);
  /* softer color for body text */
  margin-bottom: 16px;
  /* spacing between paragraphs */
}

/* Enhance inline highlights */
section p strong {
  font-weight: 600;
  color: var(--orange);
  /* highlights stand out */
}

section p em {
  font-style: italic;
  color: var(--teal);
  /* subtle secondary highlight */
}

.hero {
  position: relative;
  min-height: 100vh;
  /* full viewport height */
  display: flex;
  align-items: center;
  /* vertically center content */
  justify-content: center;
  /* horizontally center content if needed */
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(to right,
      rgba(10, 10, 10, 0.6),
      rgba(10, 10, 10, 0.4)),
    url("assets/hero-banner.png") center/cover no-repeat;
  color: var(--ink);
}

/* 📍 Location Section */
.location {
  padding: 50px 0;
  background: #0f1114;
  /* dark background */
}

.location .section-title {
  text-align: center;
  color: var(--ink);
}

.map-wrapper {
  margin: 24px auto 0;
  max-width: 850px;
  /* limit width */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid #1b1f22;
}

/* ================================
   💬 Testimonials
================================ */
.testimonials {
  padding: 48px 0;
  text-align: center;
  background: #101214;
  /* dark theme background */
  color: var(--ink);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  min-width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial blockquote {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.client-name {
  font-weight: 600;
  margin-top: 8px;
  color: var(--orange);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  object-fit: cover;
  margin-bottom: 10px;
}

/* Slider Buttons */
.testimonial-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-slider button:hover {
  background: var(--teal);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* ================================
   🌑 Footer Layout
================================ */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--orange);
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-brand p,
.footer-contact p,
.footer-links a,
.footer-newsletter p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

/* Newsletter */
.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #2a2f35;
  background: #0f1114;
  color: var(--ink);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1b1b1b;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom .social-links {
  display: flex;
  gap: 15px;
}

.footer-bottom .social-links a {
  color: var(--muted);
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-bottom .social-links a:hover {
  color: var(--orange);
}

.footer-bottom .credit {
  font-style: italic;
  font-size: 13px;
}