/* Brand Colors & Variables */
:root {
  --primary: #FF4500;
  --secondary: #FF8C00;
  --accent: #FFD700;
  --dark-bg: #1A1A1A;
  --card-bg: #222222;
  --text-light: #F5F5F5;
  --text-muted: #AAAAAA;
  --font-main: 'Montserrat', sans-serif;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #121212;
  color: var(--text-light);
  padding-top: 60px; /* Space for fixed top nav */
  padding-bottom: 80px; /* Space for fixed bottom nav */
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
}

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

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

/* FIXED TOP NAV (Mobile App Style) */
.fixed-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: var(--primary); /* Brand Primary */
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.app-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.95);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.nav-menu {
  list-style: none;
  text-align: center;
  width: 100%;
}

.nav-menu li {
  margin: 20px 0;
}

.nav-menu a {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-menu a.active {
  color: var(--primary);
}

/* FIXED BOTTOM NAV (Mobile App Style) */
.fixed-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: var(--secondary); /* Brand Secondary */
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent); /* Brand Accent */
  font-size: 12px;
  font-weight: 600;
  gap: 5px;
  width: 60px;
  height: 100%;
}

.nav-action-btn i {
  font-size: 20px;
}

.nav-action-btn:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* HERO SECTION (Homepage) */
.hero-section {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  border-bottom: 3px solid var(--secondary);
}

.hero-content {
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  color: var(--secondary);
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
  margin-bottom: 30px;
  font-family: 'Oswald', sans-serif;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.cta-button:active {
  transform: scale(0.95);
}

/* FEATURED PRODUCTS */
.featured-products {
  padding: 40px 20px;
  background-color: var(--dark-bg);
}

.section-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  border: 1px solid #333;
}

.card-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 20px;
  text-align: center;
  position: relative;
}

.card-content h3 {
  color: var(--secondary);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.flame-decoration {
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff4500" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
}

.card-btn {
  display: inline-block;
  background-color: var(--secondary);
  color: #000;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

/* GALLERY PREVIEW */
.gallery-preview {
  padding: 40px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TESTIMONIALS */
.testimonials {
  padding: 40px 20px;
  background-color: #252525;
}

.testimonial-grid {
  display: grid;
  gap: 20px;
}

.testimonial-card {
  background: #151515;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.testimonial-icon {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: #ddd;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.author {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  text-align: right;
}

/* PARTNER CTA */
.partner-cta {
  padding: 60px 20px;
  background: linear-gradient(45deg, #000, #331a00);
  text-align: center;
  border-top: 2px solid var(--primary);
}

.partner-content h2 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 10px;
}

.partner-content p {
  color: #ccc;
  margin-bottom: 30px;
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  clip-path: none;
  border-radius: 30px;
}

/* FOOTER */
footer {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: #aaa;
  font-weight: 600;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--secondary);
  font-size: 20px;
}

.copyright {
  font-size: 0.7rem;
  color: #555;
}

/* Page Headers (Common) */
.page-header {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-bottom: 3px solid var(--primary);
}

.page-header h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
  margin-bottom: 10px;
}

.page-header p {
  color: var(--accent);
  font-weight: 600;
  text-shadow: 1px 1px 2px #000;
}