/* Wolf Supplier - Premium Luxury Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --gold: #c5a880;
    --gold-hover: #b39268;
    --luxury-black: #0b0b0b;
    --luxury-card: #121212;
    --luxury-border: #1e1e1e;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0b0b0b;
    color: #f5f5f5;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0b0b0b;
}
::-webkit-scrollbar-thumb {
    background: #1e1e1e;
    border-radius: 4px;
    border: 2px solid #0b0b0b;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a880;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-nav {
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gold Text Underline Hover Effect */
.gold-hover-underline {
    position: relative;
}
.gold-hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
.gold-hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Image Hover Zoom */
.zoom-img-container {
    overflow: hidden;
}
.zoom-img-container img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.zoom-img-container:hover img {
    transform: scale(1.08);
}

/* Premium Gold Button Shine Animation */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.13);
    transform: rotate(35deg);
    transition: 0s;
}
.btn-shine:hover::after {
    left: 130%;
    transition: all 0.6s ease-in-out;
}

/* Page Transitions */
.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Sticky State */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Decorative lines for section headings */
.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.section-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-line-left {
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-line-right {
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Rating Stars gold color */
.star-gold {
    color: #eab308;
}

/* Custom shadows */
.luxury-shadow {
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.7);
}
.luxury-shadow-hover:hover {
    box-shadow: 0 20px 40px -15px rgba(197, 168, 128, 0.15);
}
