/* INDULSE - GeneratePress Override CSS - WIDTH FIXED */

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Montserrat:wght@400;500;600;700&display=swap');

/* ========== OVERRIDE GENERATEPRESS BUTTON STYLES ========== */

/* Hamburger Button - Override all GeneratePress defaults */
button#indulseMenuToggle,
.indulse-hamburger {
  width: 2.5rem !important;
  height: 2.5rem !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.375rem !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 60 !important;
  transition: all 0.3s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

button#indulseMenuToggle:hover,
button#indulseMenuToggle:focus,
.indulse-hamburger:hover,
.indulse-hamburger:focus {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Hamburger Lines */
.indulse-hamburger-line {
  width: 1.75rem !important;
  height: 2px !important;
  background: #ffffff !important;
  display: block !important;
  transition: all 0.3s ease-in-out !important;
  transform-origin: center !important;
}

/* Hamburger Open State */
.indulse-hamburger.open .indulse-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px) !important;
}

.indulse-hamburger.open .indulse-hamburger-line:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.indulse-hamburger.open .indulse-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px) !important;
}

/* ========== HEADER ========== */
.indulse-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  z-index: 50 !important;
  background: transparent !important;
  transition: background 0.5s ease !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.indulse-header.scrolled {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(8px) !important;
}

.indulse-header-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 5rem !important;
  padding: 0 1.5rem !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .indulse-header-content {
    height: 6rem !important;
    padding: 0 2rem !important;
  }
}

/* Logo */
.indulse-logo-link {
  position: relative !important;
  z-index: 60 !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  transition: transform 0.2s ease !important;
}

.indulse-logo-link:hover {
  transform: scale(1.02) !important;
}

.indulse-logo {
  height: 1.5rem !important;
  width: auto !important;
}

@media (min-width: 768px) {
  .indulse-logo {
    height: 2rem !important;
  }
}

/* ========== MENU STYLES ========== */

.indulse-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 40 !important;
  display: none !important;
  align-items: center !important;
  background: #000000 !important;
  overflow-y: auto !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  box-sizing: border-box !important;
}

.indulse-menu.open {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.indulse-menu-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: #000000 !important;
  clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem) !important;
  animation: menuReveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes menuReveal {
  to {
    clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem) !important;
  }
}

.indulse-menu-content {
  position: relative !important;
  z-index: 10 !important;
  width: 100% !important;
  padding: 8rem 1.5rem 4rem 1.5rem !important;
  box-sizing: border-box !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .indulse-menu-content {
    padding: 8rem 2rem 4rem 2rem !important;
  }
}

/* Menu Navigation */
.indulse-menu-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

@media (min-width: 768px) {
  .indulse-menu-nav {
    gap: 1.5rem !important;
  }
}

/* Menu Items */
.indulse-menu-item {
  display: flex !important;
  align-items: baseline !important;
  gap: 1rem !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.6) !important;
  transition: transform 0.3s ease !important;
  animation: menuItemSlideIn 0.3s ease-out both !important;
}

@media (min-width: 768px) {
  .indulse-menu-item {
    gap: 2rem !important;
  }
}

.indulse-menu-item:nth-child(1) {
  animation-delay: 0.15s !important;
}

.indulse-menu-item:nth-child(2) {
  animation-delay: 0.21s !important;
}

.indulse-menu-item:nth-child(3) {
  animation-delay: 0.27s !important;
}

.indulse-menu-item:nth-child(4) {
  animation-delay: 0.33s !important;
}

@keyframes menuItemSlideIn {
  from {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }
}

/* Menu Item Hover - CRITICAL */
.indulse-menu-item:hover {
  transform: translateX(20px) !important;
  color: #ffffff !important;
}

.indulse-menu-number {
  font-family: 'Audiowide', sans-serif !important;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  transition: color 0.3s ease !important;
}

@media (min-width: 768px) {
  .indulse-menu-number {
    font-size: 0.875rem !important;
  }
}

.indulse-menu-item:hover .indulse-menu-number {
  color: rgba(255, 255, 255, 0.8) !important;
}

.indulse-menu-label {
  font-family: 'Audiowide', sans-serif !important;
  font-size: 2rem !important;
  letter-spacing: 0.05em !important;
  white-space: nowrap !important;
  transition: color 0.3s ease !important;
}

@media (min-width: 768px) {
  .indulse-menu-label {
    font-size: 3.5rem !important;
  }
}

@media (min-width: 1024px) {
  .indulse-menu-label {
    font-size: 4.5rem !important;
  }
}

.indulse-menu-item:hover .indulse-menu-label {
  color: #ffffff !important;
}

/* Menu Footer */
.indulse-menu-footer {
  margin-top: 5rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  animation: menuFooterSlideIn 0.3s ease-out 0.4s both !important;
}

@media (min-width: 768px) {
  .indulse-menu-footer {
    margin-top: 7.5rem !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}

@keyframes menuFooterSlideIn {
  from {
    opacity: 0 !important;
    transform: translateY(20px) !important;
  }
  to {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

.indulse-menu-tagline {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  line-height: 1.6 !important;
}

.indulse-menu-tagline p {
  margin: 0 !important;
}

.indulse-menu-tagline p:not(:first-child) {
  margin-top: 0.25rem !important;
}

.indulse-menu-social {
  display: flex !important;
  gap: 1.5rem !important;
}

.indulse-menu-social-link {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.indulse-menu-social-link:hover {
  color: #ffffff !important;
}

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

.indulse-footer {
  background: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 3rem 1.5rem !important;
  margin-top: 0 !important;
  box-sizing: border-box !important;
}

@media (min-width: 768px) {
  .indulse-footer {
    padding: 4rem 2rem !important;
  }
}

.indulse-footer-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 2.5rem !important;
  margin-bottom: 3rem !important;
  align-items: start !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  .indulse-footer-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
  }
}

.indulse-footer-section {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.indulse-footer-logo {
  height: 1.5rem !important;
  width: auto !important;
  margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
  .indulse-footer-logo {
    height: 2rem !important;
  }
}

.indulse-footer-tagline {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Footer Title - EXACT SIZE */
.indulse-footer-title {
  font-family: 'Audiowide', sans-serif !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 1rem 0 !important;
  color: #ffffff !important;
  font-weight: 400 !important;
}

/* Footer Navigation */
.indulse-footer-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.indulse-footer-link {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  display: inline-block !important;
  width: fit-content !important;
  overflow: hidden !important;
}

.indulse-footer-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background: #ffffff !important;
  transform: scaleX(0) !important;
  transform-origin: right !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.indulse-footer-link:hover {
  color: #ffffff !important;
}

.indulse-footer-link:hover::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* Our Brands Section */
.indulse-footer-brands {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.indulse-footer-brand {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Footer Bottom */
.indulse-footer-bottom {
  padding-top: 2rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  .indulse-footer-bottom {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
}

.indulse-footer-copyright {
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin: 0 !important;
}

.indulse-footer-legal {
  display: flex !important;
  gap: 1.5rem !important;
}

.indulse-footer-legal-link {
  font-size: 0.7rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  position: relative !important;
  display: inline-block !important;
  overflow: hidden !important;
}

.indulse-footer-legal-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background: #ffffff !important;
  transform: scaleX(0) !important;
  transform-origin: right !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.indulse-footer-legal-link:hover {
  color: #ffffff !important;
}

.indulse-footer-legal-link:hover::after {
  transform: scaleX(1) !important;
  transform-origin: left !important;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth !important;
}