@font-face {
  font-family: 'Canterbury';
  src: url('assets/fonts/Canterbury.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Centabel';
  src: url('assets/fonts/centabel.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Mnbs';
  src: url('assets/fonts/MNBSWFTE.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body{
  margin:0%;
}
/* HEADER SECTION */

.announcement-bar {
  background-color: #1f2937;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  font-size: 16px;
}

.announcement-content {
  display: flex;            /* Arrange spans in a row */
  white-space: nowrap;      /* Prevent line breaks */
  animation: scroll 22s linear infinite;
}

.announcement-content span {
  flex-shrink: 0;           /* Prevent shrinking */
  padding-right: 50px;      /* Adjust space between duplicates */
}

@keyframes scroll {
  0% {
    transform: translateX(100%);  /* Start off-screen to the right */
  }
  100% {
    transform: translateX(-100%); /* End off-screen to the left */
  }
}

.menu-item-cart {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  text-align: center;
  font-weight: bold;
  pointer-events: none;
}


/* Sticky Header CSS */
header#masthead {
  position: fixed;
  top: 0; /* This will be dynamically adjusted with JavaScript */
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: auto;
  transition: top 0.3s ease; /* Smooth transition when adjusting */
}

.sticky-header {}


.header-ruban {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90vw;        /* up to 90% of viewport width */
  max-width: none;      /* whatever your site’s main content width is */
  margin: 0 auto;         /* centers it in the viewport */
  padding: 0.5rem 1rem;   /* vertical and horizontal gutters */

  box-sizing: border-box; /* include padding in width math */
}

header#masthead .header-ruban {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.ruban-left img {
  height: clamp(40px, 6vw, 55px);
  width: auto;
  object-fit: contain;
}

.ruban-right ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  /* align-items: right; */
}
.ruban-right ul li a {
  font-size: 1.5rem;
  color: #B26E97;
  text-decoration: solid;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}


.brand-name {
  font-family: 'Canterbury', sans-serif;
  font-size: 1.5rem;
  color: #B26E97;
  font-weight: 500;
}

.site-branding {
  color: white;
  font-weight: bold;
  font-size: 2em;
  margin-left: -1em;
}

.site-branding img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.main-navigation .menu-items {
  display: flex;
  gap: 2rem; /* space-x-8 equivalent */
  color: white;
  font-size: 1.125rem; /* text-lg equivalent */
  font-weight: 500;
  align-items: center;
}

  
.products-section h1 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 0.5rem; /* mb-2 */
  color: #B26E97;
}


/* FOOTER SECTION */
.site-footer {
  background-color: #111827; /* bg-gray-900 */
  color: white;
  padding: 2.5rem 0; /* py-10 */
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* gap-8 */
  padding: 0 2rem; /* px-8 */
  max-width: 1200px;
  margin: 0 auto;
  text-decoration: none;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
  }
}

.footer-about a {
  text-decoration: none!important;
  color: inherit;
}


.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-family:'Centabel', serif;
  font-size: 1.125rem; /* text-lg */
  font-weight: bold;
  margin-bottom: 1rem; /* mb-4 */
}

.footer-about p,
.footer-links ul li,
.footer-contact ul li {
    font-family:'Centabel', serif;
  color: #9ca3af; /* text-gray-400 */
  margin-bottom: 0.5rem; /* space-y-2 */
  margin-right: 5rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a,
.footer-contact ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {  vertical-align: middle;

  text-decoration: underline;
}

.social-icons a {
  margin-right: 1rem;
  color: white;
  text-decoration: none;
}

.social-icons a:hover {
  color: #60a5fa; /* hover:text-blue-400 */
}

.footer-bottom {
  background-color: #1f2937; /* bg-gray-800 */
  color: #6b7280; /* text-gray-500 */
  font-size: 0.875rem; /* text-sm */
  text-align: center;
  padding: 1rem 0; /* py-4 */
  margin-top: 2rem; /* mt-8 */
}

.footer-bottom a {
  color: #6b7280;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.phone-icon2 {
  display: inline-block;           /* Allows the element to be sized */
  width: 24px;                     /* Set desired width */
  height: 24px;                    /* Set desired height */
  background-image: url('assets/media/icons/call-outline.svg'); /* Relative path to your SVG file */
  background-size: contain;        /* Scale the SVG to be fully visible */
  background-repeat: no-repeat;    /* Do not repeat the image */
  background-position: center;     /* Center the icon in the container */
  margin-right: 10px; /* Adjust the value as needed */
  filter: brightness(0) invert(1);
  vertical-align: middle;

}

.email-icon2 {
  display: inline-block;           /* Allows the element to be sized */
  width: 24px;                     /* Set desired width */
  height: 24px;                    /* Set desired height */
  background-image: url('assets/media/icons/mail-outline.svg'); /* Relative path to your SVG file */
  background-size: contain;        /* Scale the SVG to be fully visible */
  background-repeat: no-repeat;    /* Do not repeat the image */
  background-position: center;     /* Center the icon in the container */
  margin-right: 10px; /* Adjust the value as needed */
  filter: brightness(0) invert(1);
  vertical-align: middle;


}

.location-icon2 {
  display: inline-block;           /* Allows the element to be sized */
  width: 24px;                     /* Set desired width */
  height: 24px;                    /* Set desired height */
  background-image: url('assets/media/icons/location-outline.svg'); /* Relative path to your SVG file */
  background-size: contain;        /* Scale the SVG to be fully visible */
  background-repeat: no-repeat;    /* Do not repeat the image */
  background-position: center;     /* Center the icon in the container */
  margin-right: 10px; /* Adjust the value as needed */
  filter: brightness(0) invert(1);
  vertical-align: middle;

}

.email-icon2,
.phone-icon2,
.location-icon2 {
  margin-bottom: 5px; /* Adjust as needed */
}

/*
body {
  background-image: url('http://arts-of-infinity.local/wp-content/uploads/2025/02/Fond_SIteWEB.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
} 
  */

  .footer-credit {
    text-align: center;
    font-size: 0.875rem;  /* slightly smaller text */
    color: #666;          /* subtle grey, adjust as needed */
  }
  
  .footer-credit a {
    color: inherit;       /* matches the text color */
    text-decoration: underline;
  }
  

  /* 404 Page Styling */
.error-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 1rem;
  background-color: #f7f7f7;
}

.error-container {
  max-width: 600px;
  text-align: center;
}

.error-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.error-message {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 2rem;
}

.error-message a {
  color: var(--color-accent);
  text-decoration: underline;
}

.error-message a:hover {
  opacity: 0.8;
}

/* 1) Kill browser scroll-anchoring (so reflows never “grab” your viewport) */
html, body, .about-container {
  overflow-anchor: none !important;
  scroll-anchor-adjustment: none !important;
}

/* 2) Ensure native momentum scrolling is on */
html, body {
  -webkit-overflow-scrolling: touch !important;
}

/* 3) Double-check no scroll-snap anywhere */
* {
  scroll-snap-type: none !important;
}


