/* Additional Custom Styles for Hemshaz Website */

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

/* Custom gradient animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-animate {
    background: linear-gradient(-45deg, #161c2d, #B07515, #F5D77F, #161c2d);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Hover effects for product cards */
.product-card {
    transition: all 0.3s ease;
}

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

/* Service icons animation */
.service-icon {
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Form focus states */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(22, 28, 45, 0.1);
}

/* Logo filter for better visibility */
.logo-filter {
    filter: brightness(1.1) contrast(1.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #161c2d;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B07515;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s infinite;
}

/* Button hover effects */
.btn-primary {
    background: linear-gradient(135deg, #161c2d, #0f1419);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0f1419, #161c2d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 28, 45, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #B07515, #d4a140);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #d4a140, #B07515);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(176, 117, 21, 0.3);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}/* Hero section specific styles */
.hero-background {
    position: relative;
    overflow: hidden;
}

.hero-background img {
    transition: transform 0.3s ease;
}

.hero-background:hover img {
    transform: scale(1.05);
}

/* Image hover effects */
.image-hover {
    transition: all 0.3s ease;
}

.image-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Product card animations */
.product-card {
    transition: all 0.3s ease;
    transform-origin: center bottom;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(22, 28, 45, 0.15);
}

/* FMCG section specific styles */
.fmcg-card {
    transition: all 0.3s ease;
}

.fmcg-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Bounce animation for scroll indicator */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Gradient overlay animation */
@keyframes shimmer {
    0% { opacity: 0.7; }
    50% { opacity: 0.9; }
    100% { opacity: 0.7; }
}

.gradient-shimmer {
    animation: shimmer 3s ease-in-out infinite;
}

/* Enhanced mobile styles */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .product-card:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(22, 28, 45, 0.1);
    }
}

/* Enhanced accessibility */
@media (prefers-reduced-motion: reduce) {
    .product-card,
    .hero-background img,
    .image-hover,
    .animate-bounce {
        animation: none;
        transition: none;
        transform: none;
    }
}

/* Focus states for better accessibility */
a:focus,
button:focus {
    outline: 2px solid #161c2d;
    outline-offset: 2px;
}

/* Text shadow for better readability on hero */
.hero-text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}