/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: #0b0c0f;
  color: #ffffff;
  line-height: 1.6;
}

/* ================= HEADER ================= */
.site-header {
  height: 80px;
  padding: 0 24px;
  background: #1c1d1f;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  width: 100%;
}


/* Brand container */
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Wolf icon */
.brand-icon {
  height: 42px;   /* increase */
  width: auto;
}

/* IronWolf text image */
.brand-text {
  height: 28px;   /* increase */
  width: auto;
}

/* NAVIGATION */
.header-nav {
  display: flex;
  justify-content: center;
  gap: 40px;   /* increase spacing between menu items */
}

.header-nav a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 19px;
  font-weight: 500;
  opacity: 0.85;
  transition: 0.2s ease;
}

.header-nav a:hover {
  opacity: 1;
}

/* CTA */
.header-cta {
  display: flex;
  align-items: center;
}

/* Right side actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #e6e6e6;
  text-decoration: none;
  transition: 0.2s ease;
}

.icon-btn:hover {
  color: #C8A2C8;
}

/* ================= DROPDOWN ================= */

.nav-item {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1c21;
  padding: 14px 0;
  border-radius: 10px;
  min-width: 190px;
  display: none;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}

.dropdown-menu a {
  padding: 10px 18px;
  color: #e6e6e6;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(201,162,39,0.1);
  color: #c9a227;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Fix dropdown visibility */
.site-header {
  position: relative;
  z-index: 1000;
}

.dropdown-menu {
  z-index: 2000;
}

/* ================= HERO SECTION ================= */
/* ================= HERO SECTION ================= */

.hero {
  height: 90vh;
  background: url("assets/hero-backpack-full.png") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.75) 35%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0) 100%
  );
  display: flex;
  align-items: center;
  padding-left: 100px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 25px;
}

.hero-content h1 span {
  color: #c9a227;
}

.hero-content p {
  font-size: 18px;
  color: #cfd3da;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-btn {
  background: #c9a227;
  color: #111;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}


/* ================= WOLF CODE PAGE ================= */

.wolf-about-section {
  background: #f5f5f5;
  padding: 100px 60px;
  color: #111;
}

.about-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 70px;
}

.about-heading span {
  font-weight: 700;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 60%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-content h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 22px;
  color: #333;
}

.ambition-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

/* ABOUT RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-heading {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* ================= WOLF VALUES SECTION ================= */

.wolf-values {
  background: #7ca9a3;
  padding: 100px 60px;
  color: #111;
}

.values-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.value-card img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 30px;
}

.value-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.value-card p {
  font-size: 18px;
  line-height: 1.7;
}

/* VALUES RESPONSIVE */
@media (max-width: 1000px) {
  .values-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-card img {
    margin: 0 auto 25px;
  }
}

/* ================= CONNECT SECTION ================= */

.wolf-connect {
  padding: 120px 20px;
  background: #0d0f14;
  display: flex;
  justify-content: center;
}

.connect-card {
  max-width: 900px;
  background: #12151d;
  padding: 70px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.connect-card h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 35px;
}

.connect-subtext {
  font-size: 18px;
  line-height: 1.8;
  color: #cfd3da;
  margin-bottom: 35px;
}

.connect-email {
  border-left: 3px solid #c9a227;
  padding-left: 20px;
  margin-bottom: 35px;
  font-size: 18px;
}

.connect-email a {
  color: #c9a227;
  font-weight: 600;
  text-decoration: none;
}

.connect-email a:hover {
  text-decoration: underline;
}

.connect-closing {
  font-size: 17px;
  line-height: 1.6;
  color: #a8adb8;
}

.site-header {
  position: relative;
  z-index: 1000;
}

.dropdown-menu {
  z-index: 2000;
}


/* ================= JOURNAL PAGE ================= */

.journal-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #0b0c0f 0%, #0f1116 100%);
}

.journal-hero h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
}

.journal-hero p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  color: #cfd3da;
  line-height: 1.7;
}

/* GRID */
.journal-grid {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.journal-card {
  background: #151821;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.25s ease;
}

.journal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,162,39,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.journal-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.journal-card p {
  font-size: 16px;
  color: #bfc3c9;
  line-height: 1.7;
  margin-bottom: 25px;
}

.journal-card a {
  color: #c9a227;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-hero h1 {
    font-size: 36px;
  }
}

/* ================= HELP PAGE ================= */

.help-section {
  background: #0b0c0f;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.help-container {
  width: 100%;
  max-width: 900px;
  background: #12151d;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.help-container h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #ffffff;
}

.help-sub {
  color: #cfd3da;
  margin-bottom: 40px;
}

.help-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #c9a227;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0d0f14;
  color: #ffffff;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a227;
}

.submit-btn {
  background: #c9a227;
  color: #111;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,162,39,0.4);
}

@media (max-width: 768px) {
  .help-form .form-row {
    flex-direction: column;
  }
}

/*=============Backpack html============*/
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #0f0f0f;
    color: white;
}

.page-title {
    text-align: center;
    padding: 40px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
}

.product-card {
    background: #1a1a1a;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

/* ================= GLOBAL ================= */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: white;
}

h1, h2, h3 {
    margin: 0;
}

/* ================= BACKPACK LISTING PAGE ================= */

.page-title {
    padding: 80px 8% 40px 8%;
    background: #0f0f0f;
}

.page-title h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-title p {
    color: #aaa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 260px));
    justify-content: center;
    gap: 30px;
    padding: 40px 8% 100px 8%;
}


.product-card {
    background: #151515;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card h3 {
    margin-top: 20px;
    font-weight: 500;
}

.product-card .price {
    margin: 10px 0 20px;
    font-size: 18px;
    color: #C8A2C8;
}

.view-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #C8A2C8;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}

/* ================= PRODUCT DETAIL PAGE ================= */

.product-section {
    display: flex;
    align-items: center;   /* vertically balanced */
    gap: 80px;
    padding: 80px 10%;
}


/* Gallery */

.product-gallery {
    flex: 0 0 45%;  /* limit image section */
}


.main-image {
    width: 100%;
    max-height: 500px;      /* controls height */
    object-fit: contain;    /* prevents cropping */
    border-radius: 12px;
}


.thumbnail-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail-row img {
    width: 80px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.thumbnail-row img:hover {
    transform: scale(1.1);
}

/* Details */

.product-details {
    flex: 0 0 40%;
}


.product-details h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.price {
    font-size: 26px;
    margin-bottom: 25px;
    color: #C8A2C8;
}

.feature-list {
    list-style: none;
    padding: 0;
    line-height: 2;
}

.add-cart-btn {
    margin-top: 30px;
    padding: 15px 30px;
    background: #C8A2C8;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

/* Features Strip */

.features-strip {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    background: #151515;
    font-weight: 500;
}

/* Description */

.product-description {
    padding: 80px 8%;
    text-align: center;
    background: #111;
}

.product-description h2 {
    margin-bottom: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-section {
        flex-direction: column;
    }

    .features-strip {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


