/* Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

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

/* Hover effects for product cards */
.bg-white.overflow-hidden.shadow.rounded-lg {
    transition: all 0.3s ease;
}

.bg-white.overflow-hidden.shadow.rounded-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom button styles */
.bg-blue-600 {
    background-color: #2563eb;
}

.bg-blue-600:hover {
    background-color: #1d4ed8;
}

/* Responsive navigation for mobile */
@media (max-width: 768px) {
    .hidden.md\:block {
        display: none;
    }
}

/* Animation for hero section */
.hero-content {
    animation: fadeIn 1s ease-in;
}

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

/* Contact section hover effects */
.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Tab styles */
.tab-button {
    position: relative;
    transition: all 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.tab-button.active::after {
    background-color: #2563eb;
}

.tab-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Product image styles */
.product-image {
    transition: transform 0.3s ease;
}

.bg-white.overflow-hidden.shadow.rounded-lg:hover .product-image {
    transform: scale(1.05);
}

/* Slider styles */
.slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-indicator {
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Ensure slider container has proper height */
.slider-container {
    height: 400px;
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto;
}

/* Ensure images maintain aspect ratio */
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Improve slider controls visibility */
.slider-control {
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-control:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Slider content styles */
.slider-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.slider-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.slider-description {
    font-size: 1.25rem;
    line-height: 1.5;
} 