/* Custom Styles for TechCo Website */

/* Root Variables */
:root {
    --shadow-red: 0 10px 40px -10px hsla(351, 100%, 41%, 0.3);
}

/* Button Styles */
.btn-primary {
    padding: 0.5rem 1.5rem;
    background: hsl(351, 100%, 41%);
    color: hsl(0, 0%, 98%);
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: hsl(351, 100%, 36%);
    box-shadow: var(--shadow-red);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-outline {
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: hsl(20, 14.3%, 4.1%);
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    border: 2px solid hsl(20, 5.9%, 90%);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: hsl(20, 5.9%, 90%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsl(0, 0%, 100%) 50%, hsl(20, 14.3%, 95.1%) 100%);
}

.hero-gradient-1 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, hsla(351, 100%, 41%, 0.1), transparent 50%);
}

.hero-gradient-2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 80%, hsla(351, 100%, 41%, 0.08), transparent 50%);
}

/* Product Card Styles */
.product-card {
    position: relative;
    overflow: hidden;
    border: 2px solid hsl(20, 5.9%, 90%);
    border-radius: 0.5rem;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, hsl(0, 0%, 100%) 0%, hsla(20, 14.3%, 95.1%, 0.05) 100%);
}

.product-card:hover {
    border-color: hsl(351, 100%, 41%);
    box-shadow: var(--shadow-red);
}

.product-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(351, 100%, 41%, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-gradient {
    opacity: 0.05;
}

.product-icon-bg {
    transition: background-color 0.3s ease;
}

.product-card:hover .product-icon-bg {
    background-color: hsla(351, 100%, 41%, 0.1);
}

.product-title {
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: hsl(351, 100%, 41%);
}

.product-link {
    background: transparent;
    border: none;
    color: hsl(351, 100%, 41%);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-link:hover {
    opacity: 0.8;
}

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

/* Utility Classes */
.container {
    max-width: 1280px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .md\:text-7xl {
        font-size: 3rem;
    }
}

/* Animation for scroll reveal (optional enhancement) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}
