/* ========== Base Styles ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
 background: linear-gradient(135deg, #fbe8e6 0%, #821c1c 100%);

  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

/* ========== Layout Helpers ========== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: #f8f9fa;
}

h1, h2, h3 {
  color: #0f172a;
}

.subhead {
  color: #6b7280;
  margin-top: 0.5rem;
}

/* ========== Header ========== */
.site-header {
  background-color: #8b0909;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0f172a;
  text-decoration: none;
}

.logo-mark {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

/* Nav */
/* Navigation styling for all menu links */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  background-color: hsl(30, 10%, 92%); /* bright yellow background */
  color: lch(2.8% 0.28 19.24 / 0.913);               /* black text for contrast */
  border: 2px solid #000;    /* black border */
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover effect */
.nav a:hover {
  background-color: #989896; /* slightly darker yellow */
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


/* ========== Buttons ========== */
.btn {
  background-color: #0f172a;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #1e293b;
  transform: scale(1.05);
}

.btn--ghost {
  background: transparent;
  border: 2px solid #0f172a;
  color: #0f172a;
}

.btn--ghost:hover {
  background-color: #0f172a;
  color: #fff;
}

.btn--lg {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}

/* Yellow contact buttons */
.btn--yellow {
  background-color:linear-gradient(135deg, #fbe8e6 0%, #821c1c 100%);
  color:linear-gradient(135deg, #fbe8e6 0%, #821c1c 100%);
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn--yellow:hover {
  background-color: #ffcc00;
  transform: scale(1.05);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* ========== Hero Section ========== */
.hero {
  background: linear-gradient(135deg, #fbe8e6 0%, #821c1c 100%);
  display: flex;
  align-items: center;
}


.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-copy .accent {
  color:  #8b0909;
}

.lead {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.trust-badges img {
  width: 100px;
  opacity: 0.8;
  margin-right: 10px;
}

.hero-media img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ========== Collection Section ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card.feature {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.card.feature:hover {
  transform: translateY(-5px);
}

.card.feature img {
  width: 100px;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 10px;
}

/* ========== Gallery Section ========== */
.gallery-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  animation: scroll-left 25s linear infinite;
}

.gallery-track img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gallery-track img:hover {
  transform: scale(1.08);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== Contact Section ========== */
#contact h2 {
  margin-bottom: 0.5rem;
}

.contact-points {
  list-style: none;
  margin-top: 1.5rem;
  color: #475569;
}

.contact-points li {
  margin-bottom: 0.5rem;
}

/* ========== CTA Section ========== */
.cta {
  background: linear-gradient(135deg, #fbe8e6 0%, #821c1c 100%);
  color: #fff;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ========== Footer ========== */
.site-footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
  text-align: center;
  color: #475569;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-grid .logo {
  margin-bottom: 1rem;
}

/* ========== Responsive Adjustments ========== */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  .hero-copy .lead {
    font-size: 1rem;
  }
  .btn--lg {
    padding: 0.6rem 1.2rem;
  }
}.trust-badges {
  display: flex;
  justify-content: 2cm; /* centers them horizontally */
  align-items: center;      /* aligns them vertically */
  gap: 1rem;                /* space between the images */
  margin-top: 1rem;
}

.trust-badges img {
  width: 120px;   /* you can adjust this size */
  height: auto;
  border-radius: 6px;
}

.gallery-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scrollGallery 60s linear infinite;
}

.gallery-track img {
  width: 200px;
  height: auto;
  margin-right: 10px;
  border-radius: 8px;
  flex-shrink: 0;
}

@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ========== Improved Mobile Responsiveness ========== */

/* Adjust gallery for smaller screens */
@media (max-width: 768px) {
  .gallery-track img {
    width: 140px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .gallery-track img {
    width: 120px;
    margin-right: 6px;
  }

  .gallery-slider {
    margin-top: 1rem;
  }
}

/* Fix trust badges alignment on mobile */
@media (max-width: 600px) {
  .trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .trust-badges img {
    width: 80px;
  }
}

/* Adjust header navigation for mobile */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
  }
}

/* Hero section readability and spacing */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
  }

  .cta-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-media img {
    width: 90%;
    margin: 0 auto;
  }
}

/* Feature cards on small screens */
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .card.feature img {
    width: 80px;
  }

  .card.feature h3 {
    font-size: 1rem;
  }
}

/* Footer adjustments */
@media (max-width: 600px) {
  .footer-grid {
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-footer {
    padding: 1.5rem 0;
  }
}
/* ===== Header Layout ===== */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Hamburger Button ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #0f172a;
  cursor: pointer;
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  /* Keep logo on left and menu icon on right */
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Hide the nav by default on phones */
  .nav {
    display: none;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 2px solid #000;
    padding: 1rem 0;
    text-align: center;
  }

  /* Show when toggled */
  .nav.open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav a {
    display: block;
    width: 90%;
    text-align: center;
  }

  /* Hamburger changes to X when active */
  .menu-toggle.active::after {
    content: "✕";
    font-size: 2rem;
    position: absolute;
    right: 1.5rem;
  }

  .menu-toggle.active::before {
    content: "";
  }
}
/* ====== FOOTER STYLING ====== */
.site-footer {
  background: #8b0909;
  color: #f8f9fa;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Logo styling */
.footer-grid .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-grid .logo-mark {
  font-size: 2rem;
  margin-right: 0.5rem;
}

/* Text and links */
.site-footer p {
  color: #f0f0f0;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

/* Navigation links (About, Collection, Contact) */
.site-footer p a {
  color: #ffdd57;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer p a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Social links row */
.site-footer .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

/* Each social link styled like a badge */
.site-footer .social-links a {
  background-color: #ffffff22;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.site-footer .social-links a:hover {
  background-color: #ffffff44;
  transform: scale(1.08);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .site-footer {
    padding: 2rem 1rem;
  }

  .footer-grid .logo {
    font-size: 1.5rem;
  }

  .site-footer .social-links a {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}
/* Make collection images larger and responsive */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card.feature {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Make images big and proportional */
.card.feature img {
  width: 100%;
  height: 300px;          /* Increased height */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Titles and text */
.card.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #531191;
}

.card.feature p {
  font-size: 1rem;
  color: #444;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .card.feature img {
    height: 240px; /* smaller on phones */
  }
}/* === Special background for Bag Section === */
.bag-section {
  background: linear-gradient(135deg, #fbe8e6 0%, #821c1c 100%);
  /* light lavender gradient */
  padding: 4rem 0;
}

/* Optional: make the text pop nicely on this background */
.bag-section h2,
.bag-section h3,
.bag-section p {
  color: #2e0854; /* deep purple text tone */
}

/* Optional: make cards stand out on the new background */
.bag-section .card.feature {
  background: #fff;
  border: 2px solid #d6c7ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bag-section .card.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(83, 17, 145, 0.2);
}
/* ====== MOBILE NAV FIX ====== */
.nav {
  display: none;
}

.nav.open {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 70px; /* below the header */
  right: 1rem;
  background: rgba(8, 0, 15, 0.9); /* translucent purple background */
  backdrop-filter: blur(6px); /* soft blur for elegant look */
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 20;
}

/* Links inside dropdown */
.nav.open a {
  color: #fff;
  background: transparent;
  border: none;
  text-align: center;
  padding: 0.6rem;
}

.nav.open a:hover {
  color: #ffcc00;
  transform: scale(1.05);
}
/* ===== SIMPLE NAVIGATION ===== */
.simple-nav {
  background-color: #8b0909;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}

/* Logo (optional) */
.simple-nav .logo a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 600;
}

/* 3-line menu button */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: rotate(90deg);
}

/* Dropdown menu */
.dropdown {
  display: none;
  position: absolute;
  top: 60px; /* distance from top bar */
  right: 10px;
  background: #222;
  border-radius: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  overflow: hidden;
}

/* Dropdown visible */
.dropdown.show {
  display: block;
}

/* Dropdown list items */
.dropdown li {
  border-bottom: 1px solid #333;
}

.dropdown li:last-child {
  border-bottom: none;
}

/* Dropdown links */
.dropdown li a {
  display: block;
  color: #fff;
  background: #222;
  text-decoration: none;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  
}

/* Hover effect */
.dropdown li a:hover {
  background: #ffcc00;
  color: #111;
}

/* Responsive for desktop */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .dropdown {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    width: auto;
  }

  .dropdown li {
    border: none;
  }

  .dropdown li a {
    color: #fff;
    background: none;
    padding: 0.8rem 1rem;
  }

  .dropdown li a:hover {
    background: #ffcc00;
    color: #111;
    border-radius: 6px;
  }
}

#shops-locations {
  padding: 3rem 1rem;
  background: #f9f9f9;
}
#shops-locations .container h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.shop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.shop-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}
.shop-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}
.shop-item h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
}
.shop-item p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
  color: #555;
}
.other-counties {
  margin-top: 2rem;
  border-top: 2px solid #ddd;
  padding-top: 2rem;
}
.hero-media {
  background: none;      /* removes any visible background */
  text-align: center;
  padding: 1rem;
}

.hero-media img {
  display: block;
  margin: 0 auto;
  background: none;      /* removes background behind the image */
  border: none;
  box-shadow: none;
}
