﻿:root {
    --primary: #2c6e49;
    --accent: #ffffff;
    --secondary: #333f50;
    --light: #f8f9fa;
    --dark: #212529;
    --overlay: rgba(0, 0, 0, 0.6);
}

/* SLIDER STYLES */
.deep-slider {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* SLİDE YAPISI */
.deep-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

    .deep-slide.active {
        opacity: 1;
        z-index: 2;
    }

/* İÇERİK ALANI */
.slide-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    color: var(--light);
    transform: translateX(-20px);
    animation: slideIn 0.8s 0.3s forwards;
}

.slide-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    position: relative;
    padding-bottom: 15px;
}

    .slide-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--primary);
    }

.slide-text {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

    .slide-btn:hover {
        background: var(--dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

/* NAVİGASYON */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

    .nav-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s;
    backdrop-filter: blur(2px);
}

    .nav-arrow:hover {
        background: rgba(255,255,255,0.3);
    }

.arrow-prev {
    left: 30px;
}

.arrow-next {
    right: 30px;
}

.arrow-icon {
    width: 25px;
    height: 25px;
    border: 3px solid white;
    border-right: none;
    border-bottom: none;
}

.arrow-prev .arrow-icon {
    transform: rotate(-45deg);
    margin-left: 8px;
}

.arrow-next .arrow-icon {
    transform: rotate(135deg);
    margin-right: 8px;
}

/* ANİMASYONLAR */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .deep-slider {
        height: 70vh;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .arrow-prev {
        left: 15px;
    }

    .arrow-next {
        right: 15px;
    }

    .slide-content {
        text-align: center;
    }

    .slide-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .slide-text {
        margin: 0 auto 2rem;
    }
}
/* INTRODUCTION SECTION */
.intro-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/i1.jpeg') center/cover;
    filter: blur(3px) grayscale(30%);
    opacity: 0.15;
    z-index: -1;
}

.intro-card {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(0);
    transition: all 0.5s ease;
}

    .intro-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }

.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    font-size: 2.5rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--primary);
    }

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 100px 0;
    background: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 350px;
    transition: all 0.4s ease;
}

    .product-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    }

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-desc {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* CATALOG SECTION */
.catalog-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.catalog-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), #1d3a27);
    z-index: -2;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/i2.jpeg') center/cover;
    opacity: 0.15;
    z-index: -1;
}

.catalog-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.catalog-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.catalog-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.btn-catalog {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    z-index: 1;
}

    .btn-catalog::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: white;
        transition: all 0.5s;
        z-index: -1;
    }

    .btn-catalog:hover {
        color: var(--primary);
    }

        .btn-catalog:hover::before {
            width: 100%;
        }

.download-icon {
    margin-right: 10px;
    animation: pulse 2s infinite;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .hero-slider {
        height: 70vh;
    }

    .slide-content {
        margin: 0 auto;
        text-align: center;
    }

    .slide-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-text {
        font-size: 1.2rem;
    }

    .intro-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
