﻿/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 153, 203, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    animation: slideInDown 1s ease-out;
}

.hero-title {
    animation: slideInUp 1s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-actions {
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-hero-primary {
    box-shadow: 0 4px 15px rgba(51, 153, 203, 0.4);
}

    .btn-hero-primary:hover {
        box-shadow: 0 6px 20px rgba(51, 153, 203, 0.6);
    }

.btn-hero-secondary {
    backdrop-filter: blur(10px);
}

.hero-scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

/* Category Showcase Styles */
.category-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

    .category-showcase .container {
        max-width: 1600px;
        margin: 0 auto;
    }

.mid-banner-section {
    width: 100%;
    padding: 0;
    background-color: #f9fafb;
}

.mid-banner-section .swiper {
    width: 100%;
    padding: 20px 0;
}

.mid-banner-section .swiper-slide {
    height: 400px;
}

.mid-banner-item {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.mid-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mid-banner-item:hover img {
    transform: scale(1.05);
}

.mid-banner-overlay {
    text-decoration: none;
}

.mid-banner-overlay h3 {
    transition: transform 0.3s ease;
}

.mid-banner-item:hover .mid-banner-overlay h3 {
    transform: translateY(0);
}

.mid-banner-section .swiper-button-next,
.mid-banner-section .swiper-button-prev {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mid-banner-section .swiper-button-next:after,
.mid-banner-section .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.mid-banner-section .swiper-button-next:hover,
.mid-banner-section .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
}

.mid-banner-section .swiper-pagination {
    bottom: 5px;
}

.mid-banner-section .swiper-pagination-bullet {
    background: #333;
    opacity: 0.5;
}

.mid-banner-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: #333;
}

@media (max-width: 768px) {
    .mid-banner-section .swiper-slide {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .mid-banner-section .swiper-slide {
        height: 120px;
    }
    
    .mid-banner-section .swiper-button-next,
    .mid-banner-section .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .mid-banner-section .swiper-button-next:after,
    .mid-banner-section .swiper-button-prev:after {
        font-size: 14px;
    }
}

.category-card {
    transition: all 0.3s ease;
}

    .category-card:hover {
        transform: translateY(-5px);
    }

.category-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.category-card .category-title {
    color: #000;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badge span {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

#item1, #item2 {
    grid-row: span 2
}

#item1, #item3, #item4, #item5 {
    grid-column: span 4
}

.home-header-container {
    padding-left: 2rem;
    margin-top: 2rem
}

.section-title {
    text-transform: uppercase;
    font-weight: 300;
    font-size: 54px;
    color: #000;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

.banner-swiper-image {
    height: 900px
}

.banner-content {
    position: absolute;
    bottom: 30%;
    left: 5%;
    background: transparent;
    padding: 20px;
    color: #fff;
    max-width: 50%;
    text-align: left;
    animation: .8s ease-in-out fadeInUp;
    width: 100%;
}

    .banner-content h4 {
        font-size: 2rem;
        font-weight: 300;
        margin-bottom: 10px;
        color: #fff;
        text-transform: uppercase;
    }

    .banner-content h2 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #fff;
        text-transform: uppercase;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #fff;
        font-weight: 400;
    }

@media screen and (max-width:765px) {
    .banner-content {
        margin-top: 2rem;
        left: 0;
        max-width: 100%;
        bottom: 10%;
        margin-bottom: 1rem
    }

        .banner-content h2 {
            font-size: 2.2rem !important;
        }

        .banner-content p {
            font-size: 1rem !important;
        }

    .bannerSwiper .swiper-button-next, .bannerSwiper .swiper-button-prev {
        display: none
    }
}

.banner-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .banner-buttons a {
        display: inline-block;
        padding: 15px 35px;
        font-size: 1.125rem;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 8px;
        text-decoration: none;
        transition: .3s ease-in-out;
        border: 2px solid #000;
        background: #000;
        color: #fff;
    }

        .banner-buttons a.btn-primary {
            background: #000;
            color: #fff;
            border: 2px solid #000;
        }

            .banner-buttons a.btn-primary:hover {
                background: #333;
                border-color: #333;
                transform: translateY(-2px);
            }

        .banner-buttons a.btn-secondary {
            background: transparent;
            color: #000;
            border: 2px solid #000;
        }

            .banner-buttons a.btn-secondary:hover {
                background: #000;
                color: #fff;
                transform: translateY(-2px);
            }

.brand-ticker-container {
    width: 100%;
    background: #333;
    position: relative;
    overflow: hidden;
    padding: 10px 0
}

.entryBrandSwiper {
    height: 80px;
    background: #333
}

    .entryBrandSwiper .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%
    }

@media screen and (max-width:768px) {
    .home-header-container {
        padding-left: 0
    }

    .entry-brand-item {
        padding: 0 !important
    }
}

.entry-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 6px;
    background: #fff;
    height: 60px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,.1)
}

    .entry-brand-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,.15)
    }

    .entry-brand-item img {
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        padding: 2rem
    }

.video-wrapper {
    height: 100%;
    width: 100%
}

.swiper-slide, .video-wrapper {
    position: relative;
    overflow: hidden
}

@media only screen and (max-width:765px) {
    .section-header-wrapper {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .home-header-container h2 {
        font-size: 28px;
        padding-left: 0.8rem;
    }

    .home-header-container p {
        font-size: 14px;
        text-align: left;
        margin-top: .2rem !important
    }

    .py-12 {
        padding-top: 1rem;
        padding-bottom: 1rem
    }

    .gap-6 {
        gap: .5rem
    }
}

.banner-swiper-video {
    width: 100%;
    object-fit: cover;
    height: 500px
}

/* SciconSports Distribütör Banner */
.scicon-banner-section {
    margin: 2rem 0;
}

    .scicon-banner-section .relative {
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        height: 600px;
    }

@media screen and (max-width: 998.92px){
    .scicon-banner-section .relative {
        background: #1010108f;
    }
    .scicon-banner-section span {
        font-size: 14px;
    }
}

.scicon-banner-section a {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.scicon-banner-section a:hover {
    transform: scale(1.01);
}

.scicon-banner-section h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.scicon-banner-section h3 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .scicon-banner-section .relative {
        min-height: 300px !important;
    }
    
    .scicon-banner-section h2 {
        font-size: 2rem !important;
    }
    
    .scicon-banner-section h3 {
        font-size: 1.5rem !important;
    }
    
    .scicon-banner-section p {
        font-size: 1rem !important;
    }
    
    .scicon-banner-section .container {
        padding: 1rem;
    }
}
