/* ============================================
   STORMY MARIE - VISUAL EFFECTS
   Neon pink glow animations and effects
   ============================================ */

/* ============================================
   ANIMATED BACKGROUNDS
   ============================================ */
.hero__background {
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* ============================================
   TEXT GLOW EFFECTS
   ============================================ */
.accent-glow {
    text-shadow:
        0 0 4px rgba(255, 16, 240, 0.3),
        0 0 8px rgba(255, 16, 240, 0.15);
    animation: textPulse 3s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        text-shadow:
            0 0 4px rgba(255, 16, 240, 0.3),
            0 0 8px rgba(255, 16, 240, 0.15);
    }
    50% {
        text-shadow:
            0 0 6px rgba(255, 16, 240, 0.4),
            0 0 12px rgba(255, 16, 240, 0.2);
    }
}

/* ============================================
   BUTTON SHINE EFFECT
   ============================================ */
.btn--primary {
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

/* ============================================
   CARD HOVER EFFECTS
   ============================================ */
.card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        var(--whiskey),
        transparent 50%,
        var(--rust)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(255, 16, 240, 0.15),
        0 0 60px rgba(176, 36, 168, 0.1);
}

/* ============================================
   GALLERY ITEM EFFECTS
   ============================================ */
.gallery__item {
    position: relative;
    overflow: hidden;
}

.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 16, 240, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.gallery__item:hover::before {
    transform: translateX(100%);
}

/* ============================================
   NAVIGATION EFFECTS
   ============================================ */
.nav__logo {
    transition: all 0.3s ease;
}

.nav__logo:hover {
    text-shadow:
        0 0 10px rgba(255, 16, 240, 0.5),
        0 0 20px rgba(255, 16, 240, 0.3);
    transform: scale(1.05);
}

/* ============================================
   STAT VALUE EFFECTS
   ============================================ */
.stat {
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        transparent,
        transparent,
        var(--whiskey)
    );
    animation: statRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover::before {
    opacity: 0.2;
}

@keyframes statRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat__value {
    transition: all 0.3s ease;
}

.stat:hover .stat__value {
    transform: scale(1.1);
    text-shadow: var(--glow-whiskey);
}

/* ============================================
   TAG ANIMATIONS
   ============================================ */
.tag {
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 16, 240, 0.3);
}

/* ============================================
   FORM INPUT EFFECTS
   ============================================ */
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--whiskey);
    box-shadow:
        0 0 0 3px rgba(255, 16, 240, 0.1),
        0 0 20px rgba(255, 16, 240, 0.15),
        inset 0 0 10px rgba(255, 16, 240, 0.05);
}

/* ============================================
   FOOTER GLOW
   ============================================ */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--whiskey),
        var(--rust),
        var(--whiskey),
        transparent
    );
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   BADGE GLOW
   ============================================ */
.badge--gold {
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 16, 240, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 16, 240, 0.5);
    }
}

/* ============================================
   PRODUCT HOVER EFFECTS
   ============================================ */
.product {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(255, 16, 240, 0.15),
        0 0 60px rgba(176, 36, 168, 0.1);
}

/* ============================================
   TESTIMONIAL STYLES
   ============================================ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial__author {
    font-family: var(--font-condensed);
    font-weight: 600;
    color: var(--whiskey);
    margin-top: var(--space-md);
}

/* ============================================
   ABOUT GRID
   ============================================ */
.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader__logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-whiskey);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--whiskey), var(--rust), var(--whiskey-light));
    z-index: 10001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--whiskey), 0 0 20px var(--rust);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .card:hover {
        transform: translateY(-4px);
    }

    .product:hover {
        transform: translateY(-4px);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
