/* Buttons */
.contact-btn {
  background-color: #d4b062;
  color: black;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  background-color: none;
  padding: 60px 40px;
}

.hero-left {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.hero-left h1 {
  font-size: 2.5rem;
  color: #d4b062;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-left p {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 12px 20px;
  margin-right: 15px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

.btn.green {
  background-color: #053b36;
  color: white;
}

.btn.grey {
  background-color: #333;
  color: white;
}

/* Hero Right Image */
.hero-right {
  flex: 1;
  min-width: 300px;
}

.hero-right img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Grid for products */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Product Card */
.product {
  background-color: #111;
  border: 2px solid #053b36;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  border-color: #d4b062;
  box-shadow: 0 4px 10px rgba(212, 176, 98, 0.5);
}

.product img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  object-fit: cover;
}

.product h3 {
  color: #d4b062;
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.product p {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
}

/* Call to Action Button */
.cta {
  display: block;
  margin: 40px auto 60px auto;
  background-color: #d4b062;
  color: black;
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta:hover {
  background-color: #b89f48;
  color: #000;
}

/* Accordion */
.accordion {
  background-color: #053b36;
  color: white;
  cursor: pointer;
  padding: 12px 20px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1rem;
  transition: background-color 0.2s ease;
  margin-bottom: 5px;
  border-radius: 4px;
}

.accordion:hover {
  background-color: #07564d;
}

.panel {
  background-color: #222;
  display: none;
  padding: 10px 20px;
  border-left: 3px solid #d4b062;
  margin-bottom: 10px;
}

.panel a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.panel a:hover {
  color: #d4b062;
}

/* Collection Header & Search Bar */
.collection-header {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}

.search-bar {
  display: flex;
  gap: 8px;
  max-width: 400px;
  width: 100%;
}

.search-bar input {
  flex-grow: 1;
  padding: 6px 10px;
  font-size: 16px;
}

.search-bar button {
  padding: 6px 16px;
  font-size: 16px;
  cursor: pointer;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 40vw;
  max-width: 320px;
  height: 100vh;
  padding: 40px 30px;
  background-color: #053b36;
  color: white;
  box-shadow: 2px 0 12px rgba(0,0,0,0.3);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1500;
  overflow-y: auto;
  font-size: 1.2rem;
  line-height: 1.6;
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar h3 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #d4b062;
  margin-bottom: 24px;
}

.sidebar a,
.sidebar .collapsible {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  font-size: 1.1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}

.sidebar .collapsible.active {
  color: #d4b062;
  font-weight: 600;
}

.sidebar a:hover,
.sidebar .collapsible:hover {
  text-decoration: underline;
}

.submenu {
  display: none;
  padding-left: 20px;
  margin-bottom: 20px;
}

.submenu a {
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: none;
}

/* Toggle Button */
.toggle-btn {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 14px 20px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1600;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

.toggle-btn:hover {
  background-color: #044735;
}

/* ==== Hero silhouette background ==== */
.hero-section {
  position: relative;
  overflow: hidden;
  /* (optional) force a taller hero so the silhouette is always visible: */
  /* min-height: 60vh; */
}

.hero-section::before {
  content: "";
  position: absolute;
  bottom: 0;             /* hug the bottom */
  left: 0;               /* stick to the left edge */
  /* Remove centring transform: */
  transform: none;

  /* Make the pseudo‑element smaller: */
  width: 750px;            /* 25% of the hero’s width */
  height: 480px;          /* let its aspect ratio drive its height */
  
  /* ← correct relative path from this CSS file to your image: */
  background-image: url("images/pexels-daiangan-102129.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;          /* cover the container */
  
  opacity: 0.08;                   /* subtle watermark */
  pointer-events: none;            /* don’t block clicks */
  z-index: 0;                      /* behind your content */
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;             
  right: 0;              /* stick to the right edge */
  
  /* match your ::before size: */
  width: 750px;          
  height: 480px;         

  /* same image */
  background-image: url("images/pexels-daiangan-102129.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;

  /* flip it horizontally */
  transform: scaleX(-1);

  opacity: 0.08;         
  pointer-events: none;  
  z-index: 0;            
}


/* lift your actual hero content above the silhouette */
.hero-section > * {
  position: relative;
  z-index: 1;
}

.about-modern {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.gold-title {
  color: #d4b062;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.section-subtitle {
  color: #d4b062;
  font-size: 1.6rem;
  margin-top: 30px;
  font-weight: 600;
  border-left: 4px solid #d4b062;
  padding-left: 12px;
}

.about-modern .lead-text {
  font-size: 1.2rem;
  color: #eee;
  font-weight: 500;
  margin-bottom: 25px;
}

.brand-name {
  color: #d4b062;
  font-weight: 700;
}

.highlight-list {
  list-style-type: square;
  padding-left: 20px;
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.highlight-list li {
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.highlight-list li:hover {
  color: #d4b062;
}

.about-modern .closing-text {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 30px;
  text-align: center;
  font-weight: 600;
}

.section-subtitle {
  color: #00a37a;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.social-link {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1rem;
  color: #ccc;
}

.social-link a {
  color: #d4b062;
  font-weight: bold;
  text-decoration: none;
  margin-left: 4px;
  transition: color 0.3s ease;
}

.social-link a:hover {
  color: #fff;
  text-decoration: underline;
}

