/* style.css */
body {
    background-color: #FAFAF7;
}

/* Gold Text Gradient Effect */
.text-gold-gradient {
    background: linear-gradient(to right, #C5A028, #F3E5AB, #D1B056, #C5A028);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Pricing Layout */
.line-through {
    text-decoration: line-through;
    color: #9ca3af; /* Gray color for the cut price */
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}
/* Fade Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Background Transition */
#hero-bg {
    transition: background-image 1.5s ease-in-out;
}

/* FAQ Accordion Transition */
.accordion-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.accordion-content.active {
    max-height: 200px;
    opacity: 1;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Moving Marquee Container */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}