@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Oswald:wght@400;600;700&display=swap');

:root {
  --color-leather-dark: #2a1610;
  --color-leather-base: #3e2015;
  --color-leather-light: #5d3324;
  --color-gunmetal-dark: #121212;
  --color-gunmetal-base: #2a2a2a;
  --color-gunmetal-light: #454545;
  --color-orange: #f97316;
  --color-orange-hover: #ea580c;
  --color-text-main: #f5f5f5;
  --color-text-muted: #a3a3a3;
  --color-brass: #b5a642;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-gunmetal-dark);
  color: var(--color-text-main);
  line-height: 1.6;
  background-image: url('../assets/leather.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography Utilities */
.text-orange { color: var(--color-orange); }
.text-brass { color: var(--color-brass); }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.95);
  border-bottom: 2px solid var(--color-leather-base);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
}

.navbar .logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .logo i {
  color: var(--color-brass);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-orange);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--color-leather-light);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-orange);
  cursor: pointer;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-orange);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));
  pointer-events: none;
}

.btn:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
  background: var(--color-gunmetal-base);
  color: var(--color-text-main);
  border: 1px solid var(--color-gunmetal-light);
}
.btn-secondary:hover {
  background: var(--color-gunmetal-light);
  color: #fff;
}

/* Sections */
section {
  padding: 6rem 2rem 4rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('../assets/hero.png');
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--color-orange);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.6) 50%, rgba(18,18,18,0.2) 100%);
  z-index: 1;
}

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

.hero-flex {
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-logo-large {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-logo-large img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
}

.hero-text-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ddd;
}

/* Pouch Cards */
.pouches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.pouch-card {
  background-image: url('../assets/metal.png');
  background-color: var(--color-gunmetal-base);
  background-blend-mode: overlay;
  background-size: cover;
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid var(--color-leather-base);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 0 10px rgba(0,0,0,0.8);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}

/* Brass rivet effect */
.pouch-card::before, .pouch-card::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, var(--color-brass) 30%, #554411 90%);
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.8), inset 1px 1px 1px rgba(255,255,255,0.4);
}
.pouch-card::before { top: 10px; left: 10px; }
.pouch-card::after { top: 10px; right: 10px; }

.pouch-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-orange);
}

.pouch-icon {
  font-size: 2.5rem;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.pouch-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Feature Pages Sections */
.feature-section {
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
}

.feature-section.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-orange);
}

.feature-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.feature-mockup {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.feature-mockup img {
  max-width: 320px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 0 8px var(--color-gunmetal-dark), 0 0 0 10px var(--color-leather-light);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: rgba(42, 32, 21, 0.9);
  border: 1px solid var(--color-leather-light);
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.price-card.popular {
  border-color: var(--color-orange);
  background: rgba(62, 32, 21, 0.95);
}

.price-card.popular::before {
  content: 'MOST USED';
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--color-orange);
  color: #fff;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: bold;
}

.price-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.price-card .price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.price-card .price span {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.price-features {
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-features i {
  color: var(--color-orange);
}

/* Footer */
footer {
  background: var(--color-gunmetal-dark);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid var(--color-leather-base);
  margin-top: 4rem;
}

footer .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Mobile UI & Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-flex {
    gap: 2rem;
  }
  .pouches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .navbar .logo {
    font-size: 1.5rem;
    width: auto;
    justify-content: flex-start;
  }

  .navbar .logo img {
    height: 50px !important;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
    background: rgba(0,0,0,0.2);
  }

  /* Layout */
  .hero {
    height: auto;
    padding-top: 160px;
    padding-bottom: 60px;
  }

  .hero-flex {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-logo-large img {
    max-width: 180px;
  }

  .feature-section, .feature-section.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .feature-mockup img {
    max-width: 250px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pouches-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  /* Padding */
  section {
    padding: 4rem 1rem 2rem;
  }

  .pouch-card {
    min-height: auto;
  }

  /* Footer */
  footer {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .price-card h3 {
    font-size: 1.5rem;
  }
  .price-card .price {
    font-size: 2.2rem;
  }
}
\n
/* MOBILE NAVIGATION HOTFIX */
@media (min-width: 769px) {
    .nav-toggle { display: none !important; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block !important;
        font-size: 1.8rem;
        color: var(--accent-blue, var(--color-orange, var(--color-primary, #fff)));
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-links {
        display: none !important;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        padding: 15px !important;
        font-size: 1.2rem !important;
        width: 100%;
        display: block;
    }

    .hero h1, .hero-title, .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        word-break: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .hero h1, .hero-title, .hero-content h1 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}


@media (max-width: 768px) {
    .btn, a[href^="mailto:"] {
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-break: break-word !important;
        white-space: normal !important;
        font-size: 1rem !important;
        padding: 0.8rem 1rem !important;
        display: inline-flex !important;
        justify-content: center !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }
}
