﻿/* VELVET LEAF BRANDING STYLES */
:root {
   --velvet-red: #8a0b0b;
   --velvet-dark: #0f0f0f;
   --velvet-black: #050505;
   --velvet-glow: #ff2a2a;
}

body {
   /* font-family: 'Lato', sans-serif; */
   font-family: 'Inter', sans-serif;
   background-color: var(--velvet-black);
   color: #e5e5e5;
   scroll-behavior: smooth;
   overflow-x: hidden;
}

h1, h2, h3, .brand-font {
   font-family: 'Playfair Display', serif;
}

/* Shining/Glowing Text Effect */
.shining-text {
   background: linear-gradient(to right, #bf1a1a 20%, #ff6b6b 40%, #ff6b6b 60%, #bf1a1a 80%);
   background-size: 200% auto;
   color: transparent;
   background-clip: text;
   -webkit-background-clip: text;
   animation: shine 4s linear infinite;
}

@keyframes shine {
   to {
      background-position: 200% center;
   }
}

/* Leaf Pulse Animation */
.leaf-icon {
   filter: drop-shadow(0 0 10px rgba(138, 11, 11, 0.5));
   animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
   0% {
      filter: drop-shadow(0 0 5px rgba(138, 11, 11, 0.3));
   }

   50% {
      filter: drop-shadow(0 0 20px rgba(255, 42, 42, 0.6));
   }

   100% {
      filter: drop-shadow(0 0 5px rgba(138, 11, 11, 0.3));
   }
}

/* Velvet Card Effect */

.velvet-card {
   background: linear-gradient(145deg, #0d0d0f 0%, #050505 100%);
   border: 1px solid rgba(153, 27, 27, 0.15); /* Subtle Red-900 border */
   border-radius: 24px;
   transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   overflow: hidden;
}

   .velvet-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(153, 27, 27, 0.3), transparent);
   }

   .velvet-card:hover {
      border-color: rgba(153, 27, 27, 0.4);
      box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.9);
      transform: translateY(-2px);
   }
/* Typography for inner card elements */
.velvet-label {
   font-size: 10px;
   text-transform: uppercase;
   letter-spacing: 0.2em;
   color: #71717a; /* zinc-500 */
   font-weight: 700;
   display: block;
}

.velvet-price {
   color: #b91c1c; /* red-700 */
   font-weight: 700;
}

.btn-velvet {
   background-color: var(--velvet-red);
   color: white;
   transition: all 0.3s ease;
}

   .btn-velvet:hover {
      background-color: #a51212;
      box-shadow: 0 0 15px rgba(138, 11, 11, 0.6);
   }

/* Custom button for within cards */
.btn-velvet-sm {
   background-color: #7f1d1d;
   color: white;
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   padding: 0.75rem 1.5rem;
   border-radius: 9999px;
   transition: all 0.3s ease;
}

   .btn-velvet-sm:hover {
      background-color: #991b1b;
      box-shadow: 0 0 15px rgba(153, 27, 27, 0.4);
   }

.velvet-input {
   background-color: #18181b;
   border: 1px solid #27272a;
   color: white;
   transition: all 0.2s ease;
   width: 100%;
}

   .velvet-input:focus {
      border-color: #7f1d1d;
      outline: none;
      background-color: #1c1c1f;
   }

/* Mobile Menu Animation */
#mobileMenu {
   transform: translateX(100%);
   transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

   #mobileMenu.active {
      transform: translateX(0);
   }

/* Carousel Styles */
.carousel-track {
   display: flex;
   transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-item {
   min-width: 100%;
}

.brand-font {
   font-family: 'Playfair Display', serif;
}
