@font-face {
  font-family: 'stropica';
  src: url('../fonts/STROPICA/STROPICADEMO.OTF');
}
@font-face {
  font-family: 'host grotesk';
  src: url('../fonts/HOST-GROTESK/HOSTGROTESK-VARIABLEFONT_WGHT.TTF') format('truetype');
}
@font-face {
  font-family: 'noto sans mono';
  src: url('../fonts/NOTO-SANS-MONO/NOTOSANSMONO-VARIABLEFONT_WDTH\,WGHT.TTF') format('truetype');
}
@font-face {
  font-family: 'creato display';
  src: url(../fonts/CREATO-DISPLAY/CREATODISPLAY-LIGHT.OTF);
}
@font-face {
  font-family: 'prompt';
  src: url(../fonts/PROMPT/PROMPT-REGULAR.TTF) format('truetype');
}
:root{
  --A-green-pr: #1D4F25;
  --A-yellow-pr: #F6F4DD;
  --A-pink-pr: #FFBBA6;
  --B-green-ac: #DEE08C;
  --B-red-ac: #D34A33;
  --C-green-dark-s: #364204;
  --C-green-s: #D1C961;
  --C-red-s: #E8644B;
  --C-white-s: #F6F1EE;
  --C-bread-s: #DFBC82;
  --C-green-light-s: #E2F099;
  --C-yellow-s: #FFE67B;
  --C-orange-s: #F49346;
  --C-purple-s: #DBB6DD;
  --C-chocolate-s: #775942;

  --border-radius: 20px;

  --font-size-base: 16px;
  /* make Clamp() later on
  --font-size-M:
  --font-size-L:
  --font-size-XL:
  */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body{
  font-family: host grotesk, prompt, sans-serif;
  background-color: var(--A-yellow-pr);
  margin: 0;
}

/* Main Header*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #F6F4DD;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mobile-top {
  display: none;
  align-items: center;
}

.logo-link {
  display : flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.logo-image {
  width: auto;
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  position: static; 
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 350;
  transition: color 0.2s ease;
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  border-radius: 10px;
}

.desktop-nav a.active {
  color: black;
}

/* Shop Button */
.shop-button {
  background-color: #FFBBA6;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: none;
}

.mobile-shop {
  display: none;
}

/* Mobile Hamburger */
.burger {
  position: relative;
  width: 28px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  display: none;
  z-index: 1100;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 6px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 5px;
}

/* Mobile Menu Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

/* Mobile Slide Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 5rem 1.5rem 1rem;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
}

.mobile-menu a {
  text-decoration: none;
  color: black;
  font-size: 1.25rem;
  word-break: break-word;
  overflow-wrap: break-word;
  font: 'Host Grotesk', sans-serif;
}

/* Active states added via JavaScript */
.mobile-menu.active {
  left: 0;
}

.mobile-overlay.active {
  display: block;
}

/* Navbar Highlight */
.nav-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  background-color: var(--B-green-ac);
  border-radius: 10px;
  transition: all 0.3s ease;
  z-index: 0;
  opacity: 1;
}

/* Desktop styles */
@media (min-width: 1025px) {
  .mobile-top {
    display: none !important;
  }
  
  .burger {
    display: none !important;
  }
  
  .mobile-menu {
    display: none !important;
  }
  
  .mobile-overlay {
    display: none !important;
  }
  
  .mobile-shop {
    display: none !important;
  }
  
  .desktop-nav {
    display: flex !important;
  }

  /* Desktop logo positioning */
  .logo-image {
    position: static;
    transform: none;
    left: auto;
  }

  .nav-container {
    justify-content: space-between;
  }

  .shop-button .mobile-shop{
    margin: 0;  
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none !important;
  }

  .nav-container {
    position: relative;
    justify-content: space-between;
  }

  .mobile-top {
    display: flex !important;
    align-items: center;
    z-index: 2;
  }

  .logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Behind the side elements */
  }
  
  .mobile-shop {
    display: block !important;
    margin-left: auto;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .burger {
    display: flex !important;
  }

  /* Mobile logo stays centered */
  .logo-image {
    height: 70px;
    max-width: 60%;
  }

  /* Hide nav indicator on mobile */
  .nav-indicator {
    display: none;
  }
}

/* Small mobile screens adjustments */
@media (max-width: 480px) {
  .mobile-shop {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}




/* =============================================================================
   FOOTER
   ============================================================================= */


/*Main Footer*/
footer {
  background-color: #FFBBA6;
  padding: 32px 0;
  margin-top: auto;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 90px; /* Larger gap between logo and right sections */
}

.footer-right {
  display: flex;
  gap: 32px; /* Smaller gap between right sections */
  align-items: start;
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Ensure left alignment */
}

.footer-logo {
  margin-bottom: 5px;
  align-self: flex-start; /* Force left alignment */
}

/* Footer specific logo styling */
.footer-brand .logo-image {
  height: 40px;
  width: auto;
  max-width: 150px;
  position: static !important; /* Override any header positioning */
  transform: none !important; /* Override any header transforms */
  left: auto !important; /* Override any header positioning */
}

.copyright {
  font-family: 'host grotesk', sans-serif;
  font-size: 12px;
  color: black;
  margin: 0;
  line-height: 1.4;
  text-align: left; /* Ensure left alignment */
}
.dbdregistered_logo {
  padding-top: 15px;
  width: 100px;
}
/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  font-family: 'Host Grotesk', 'prompt', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: black;
  margin: 0;
  margin-bottom: 4px;
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-family: 'Host Grotesk','prompt', sans-serif;
  font-size: 14px;
  color: black;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  cursor: pointer;
}

/* Customer Support */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-item {
  font-family: 'Host Grotesk', 'prompt', sans-serif;
  font-size: 14px;
  color: inherit;
  margin: 0;
  line-height: 1.5;
  text-decoration: none;
}
.contact-item a {
  color: inherit;         /* Inherit text color from parent */
  text-decoration: none;  /* Remove underline */
}

.contact-hours {
  font-family: 'Host Grotesk', 'prompt', sans-serif;
  font-size: 14px;
  color: black;
  margin: 0;
  margin-left: 110px;
  line-height: 1.4;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  display: inline-block;
  transition: transform 0.2s ease;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.language-link {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 924px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 20px;
  }
  
  /* 1. Logo & Copyright - FIRST */
  .footer-brand {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .footer-brand .logo-image {
    height: 35px !important;
    width: auto !important;
    margin: 0 auto !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important; 
    align-self: center !important;
    display: block !important;
  }

  .copyright {
    text-align: center;
    font-size: 12px;
    color: black;
    margin: 0;
  }
  
  /* 2. Footer-right with wrap layout - SECOND */
  .footer-right {
    order: 2;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: flex-start;
  }
  
  /* Quick Links and Customer Support side by side */
  .footer-section:first-child,
  .footer-section:nth-child(2) {
    flex: 1;
    min-width: 45%;
    max-width: 48%;
    text-align: left;
  }
  
  /* Follow Us takes full width and wraps to new line */
  .footer-section:last-child {
    flex-basis: 100%;
    text-align: center;
    width: 100%;
    margin-top: 16px;
  }
  
  .footer-section:first-child .footer-title,
  .footer-section:nth-child(2) .footer-title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
    text-align: left;
  }
  
  /* Quick Links styling */
  .footer-links {
    gap: 6px;
  }
  
  .footer-links a {
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Customer Support styling */
  .contact-item {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 4px;
  }
  
  .contact-hours {
    margin-left: 0;
    font-size: 14px;
    margin-top: 2px;
  }
  
  .footer-section:last-child .footer-title {
    margin-bottom: 12px;
    font-size: 18px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
    gap: 20px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 16px;
  }
  
  /* Force footer-right to stack on small screens */
  .footer-right {
    flex-direction: column !important;
    max-width: 100% !important;
  }
  
  /* Stack Quick Links and Customer Support */
  .footer-section:first-child,
  .footer-section:nth-child(2) {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    text-align: center; /* Center the sections */
  }
  
  .footer-section:first-child {
    margin-bottom: 24px;
  }
  
  /* Center the section titles */
  .footer-section:first-child .footer-title,
  .footer-section:nth-child(2) .footer-title {
    text-align: center !important;
  }
  
  /* Follow Us section on small screens */
  .footer-section:last-child {
    margin-top: 8px !important;
    flex-basis: auto !important;
  }
  
  /* Smaller social icons */
  .social-icon {
    width: 36px;
    height: 36px;
  }
  
  .social-icons {
    gap: 16px;
  }
}

