:root {
    --primary-color: #E83F25;
    --secondary-color: #A62C2C;
    --text-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.2rem;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
}


.navbar-brand img {
    height: 100%;
    /* navbar yüksekliği kadar */
    max-height: 30px;
    /* maksimum yükseklik belirleyebilirsin */
    width: auto;
    /* oran korunsun */
}



.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    bottom: 50px;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%; /* Buton alanı daha geniş */
    opacity: 1;
}

.product-slider .carousel-control-prev-icon,
.product-slider .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
    width: 50px;
    height: 50px;
    background-size: 60% 60%; /* Ok ikonunun boyutu */
}


.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}



.section-title::after {
    content: "";
    display: block;
    width: 60px;
    /* çizgi uzunluğu */
    height: 4px;
    /* çizgi kalınlığı */
    background-color: red;
    /* kırmızı çizgi */
    margin: 0.5rem auto 0;
    /* üst boşluk + ortalama */
    border-radius: 2px;
}


.about-section {
    background-color: var(--light-color);
}



.about-image {
    border-radius: 10px;
    overflow: hidden;
}

.about-content h3 {
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-content h3::after {
    content: "";
    display: block;
    width: 40%;
    /* çizgi uzunluğu */
    height: 4px;
    /* çizgi kalınlığı */
    background-color: var(--primary-color);;
    /* kırmızı çizgi */
    margin: 0.5rem;
    /* üst boşluk + ortalama */
    border-radius: 2px;
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    /* varsa önemli */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}


.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 10px;
}


.product-body {
    padding: 1.5rem;
}

.product-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn-details {
    background-color:var(--primary-color);;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-details:hover {
    background-color: var(--secondary-color);;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    font-size: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.product-slider .carousel-inner {
    padding: 1rem 0;
}

.product-slider .carousel-item {
    height: auto;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%; /* Buton alanı daha geniş */
    opacity: 1;
}

.product-slider .carousel-control-prev-icon,
.product-slider .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
    width: 50px;
    height: 50px;
    background-size: 60% 60%; /* Ok ikonunun boyutu */
}


.carousel-control-prev,
.carousel-control-next {
    width: 8%; /* Buton alanı daha geniş */
    opacity: 1;
}

.product-slider .carousel-control-prev-icon,
.product-slider .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
    width: 50px;
    height: 50px;
    background-size: 60% 60%; /* Ok ikonunun boyutu */
}


@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }

    .section {
        padding: 3rem 0;
    }

    .product-card {
        margin-bottom: 2rem;
    }
}

.hover-bg:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}


.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(253, 13, 13, 0.25);
}

.color-primary {
    color: var(--primary-color) !important;
}

.color-secondary {
    color: var(--secondary-color) !important;
}

.contact-card {
    background-color: #fff;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}
.primary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.seconday-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}
.seconday-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}