﻿.hero-section {
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #cbbdfe 0%, #bdcbfe 100%);
    overflow: hidden;
}

    .hero-section.with-image {
        background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('/img/hero1.PNG');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
    color: #2c3e50;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #34495e;
    font-weight: lighter;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.products-overview-section {
    background: white;
    padding: 5rem 0;
}

.section-header {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #333;
    }

    .section-header .lead {
        font-size: 1.1rem;
        color: #666;
    }

.overview-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: slideInUp 0.8s ease forwards;
}

    .overview-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .overview-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .overview-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgb(0, 163, 232), #667eea);
    border-radius: 50%;
    color: white;
}

    .icon-wrapper i {
        font-size: 3rem;
    }

.overview-card h3 {
    color: #333;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.outdoor-section {
    background: linear-gradient(135deg, rgb(0, 163, 232), #667eea);
    padding: 5rem 0;
    position: relative;
}

    .outdoor-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
    }

.product-content {
    position: relative;
    z-index: 2;
}

.outdoor-section h2,
.indoor-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.outdoor-section h2,
.outdoor-section .lead {
    color: white;
}

.outdoor-section .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

.product-detail-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.outdoor-section .product-detail-card {
    background: rgba(255, 255, 255, 0.1);
}

.indoor-section .product-detail-card {
    background: white;
}

.product-detail-card:nth-child(1) {
    animation-delay: 0.2s;
}

.product-detail-card:nth-child(2) {
    animation-delay: 0.3s;
}

.product-detail-card:nth-child(3) {
    animation-delay: 0.4s;
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.outdoor-section .product-detail-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.outdoor-section .product-icon {
    color: white;
}

.indoor-section .product-icon {
    background: linear-gradient(135deg, rgb(0, 163, 232), #667eea);
    color: white;
}

.product-icon i {
    font-size: 2rem;
}

.product-detail-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.outdoor-section .product-detail-card h4 {
    color: white;
}

.indoor-section .product-detail-card h4 {
    color: #333;
}

.product-detail-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.outdoor-section .product-detail-card p {
    color: rgba(255, 255, 255, 0.95);
}

.indoor-section .product-detail-card p {
    color: #666;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

    .feature-list li {
        padding: 0.75rem 0;
        padding-left: 2rem;
        position: relative;
        font-size: 1rem;
        line-height: 1.6;
    }

.outdoor-section .feature-list li {
    color: rgba(255, 255, 255, 0.95);
}

.indoor-section .feature-list li {
    color: #666;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #00ff88;
}

.indoor-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

    .indoor-section h2 {
        color: #333;
    }

    .indoor-section .lead {
        color: #666;
    }

.specifications-section {
    background: white;
    padding: 5rem 0;
}

.spec-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

    .spec-card:nth-child(1) {
        animation-delay: 0.2s;
    }

    .spec-card:nth-child(2) {
        animation-delay: 0.4s;
    }

    .spec-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .spec-card h4 {
        color: #333;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
    }

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .spec-list li {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .spec-list li:last-child {
            border-bottom: none;
        }

.spec-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.spec-value {
    color: #666;
    font-size: 0.95rem;
    text-align: right;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .section-header h2,
    .outdoor-section h2,
    .indoor-section h2 {
        font-size: 2rem;
    }

    .overview-card,
    .product-detail-card,
    .overview-card,
    .product-detail-card,
    .spec-card {
        margin-bottom: 2rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
    }

        .icon-wrapper i {
            font-size: 2.5rem;
        }

    .product-icon {
        width: 60px;
        height: 60px;
    }

        .product-icon i {
            font-size: 1.75rem;
        }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section .lead {
            font-size: 1rem;
        }

    .products-overview-section,
    .outdoor-section,
    .indoor-section,
    .specifications-section {
        padding: 3rem 0;
    }

        .section-header h2,
        .outdoor-section h2,
        .indoor-section h2 {
            font-size: 1.75rem;
        }

    .overview-card,
    .product-detail-card,
    .spec-card {
        padding: 2rem 1.5rem;
    }

        .overview-card h3 {
            font-size: 1.5rem;
        }

        .spec-card h4,
        .product-detail-card h4 {
            font-size: 1.25rem;
        }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 100vh;
        padding: 0;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .section-header h2,
    .outdoor-section h2,
    .indoor-section h2 {
        font-size: 1.5rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

        .icon-wrapper i {
            font-size: 2rem;
        }

    .product-icon {
        width: 50px;
        height: 50px;
    }

        .product-icon i {
            font-size: 1.5rem;
        }

    .overview-card,
    .product-detail-card,
    .spec-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }

    .spec-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .spec-value {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
