/* Custom styling for Daço Orman Ürünleri Kurumsal Web Sitesi */

/* Import premium fonts just in case, though they are linked in HTML */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..700;1,400..700&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

/* Wood texture overlay for organic feeling */
.wood-texture-overlay {
    background-image: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    opacity: 0.035;
    pointer-events: none;
}

/* Custom premium scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #fbf9f7;
}
::-webkit-scrollbar-thumb {
    background: #80756d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4a3728;
}

/* Infinite Marquee animations */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 45s linear infinite;
    width: max-content;
}

/* Pause marquee on hover to allow reading reviews */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

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

/* Slow transition for premium animations */
.transition-slow {
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card hover scaling and overlay effects */
.product-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 55, 40, 0.06);
}

.product-image-container {
    overflow: hidden;
    position: relative;
}

.product-image {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

/* Premium gradient overlay for hero section */
.hero-gradient {
    background: linear-gradient(to bottom, rgba(50, 34, 20, 0.4) 0%, rgba(50, 34, 20, 0.2) 50%, rgba(251, 249, 247, 0) 100%);
}

/* Form input border animation */
.custom-input {
    border-bottom: 1px solid #80756d;
    transition: border-color 0.4s ease;
}

.custom-input:focus {
    border-color: #322214;
    outline: none;
}

/* Utility to trigger active animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
