/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.logo img {
    height: 50px; /* Logo boyutunu kısıtladığınızdan emin olun */
    max-width: 150px; /* Genişliği de kontrol altına alın */
    object-fit: contain; /* Boyutlandırmada doğru görünmesi için */
}

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    background-color: #FFF2D3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

nav {
    flex: 1; /* Logo ve nav arasında boşluk bırakır */
}

    nav ul {
        display: flex;
        justify-content: center;
        gap: 30px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

        nav ul li a {
            text-decoration: none;
            color: #494747;
            font-weight: bold;
            transition: color 0.3s ease, transform 0.3s ease; /* Hover için transform ekledik */
        }

            nav ul li a:hover {
                color:burlywood;
                transform: translateY(10px); /* Hover efektine hafif yukarı hareket ekledik */
            }
.spacer {
    height: 5px;
}

/* Divider */
.divider {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    margin: 20px 40px;
    border-radius: 5px;
    background-color: #f9f9f9;
    padding: 10px 20px;
}

.divider-text {
    font-size: 20px; /* Font boyutunu artırdık */
    font-weight: bold;
    color: #444; /* Renk değişimi */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

    .divider-text i {
        margin: 0 5px;
        color: #f39c12;
    }

    .divider-text:hover {
        transform: scale(1.1);
        color: #000;
    }

.divider::before,
.divider::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: #dcdcdc;
    margin: 0 15px;
}

/* Ürünler Bölümü */
.product-section {
    text-align: center;
    margin: 40px 0;
}

.product-title {
    font-size: 30px;
    font-weight: bold;
    color: #494747;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.product-card {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: auto;
    box-sizing: border-box;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

.product-image {
    width: 100%;
    height: 375px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 10px;
}

.product-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-price {
    font-size: 22px;
    color: #f39c12;
}

/* Ürün Butonu */
.product-button {
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #f39c12;
    color: #f39c12;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    margin-top: 20px;
}

    .product-button:hover {
        background-color: #f39c12;
        color: #fff;
    }

/* Genel footer stili */
.site-footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    color: #333;
}

    .site-footer .container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
    }

.footer-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

    .footer-logo img {
        width: 100px;
    }

.footer-tagline {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

    .footer-links h3 {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
    }

        .footer-links ul li a {
            text-decoration: none;
            color: #555;
            font-size: 16px;
            margin-bottom: 8px;
            display: block;
        }

            .footer-links ul li a:hover {
                color: #000;
            }

.footer-social {
    flex: 1;
    min-width: 200px;
}

    .footer-social h3 {
        font-size: 18px;
        color: #333;
        margin-bottom: 10px;
    }

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons .social-icon {
        font-size: 20px;
        color: #555;
        text-decoration: none;
    }

        .social-icons .social-icon:hover {
            color: #000;
        }

.footer-copyright {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

/* Medya Sorguları */

/* Medya Sorguları */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        margin-bottom: 20px;
    }

    .new-models h2 {
        font-size: 28px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .divider {
        flex-direction: column;
    }
    .divider::before,
    .divider::after {
        display: none;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    .product-card {
        padding: 20px;
    }
    .product-image {
        height: auto;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    nav ul li a {
        font-size: 16px;
    }

    .new-models h2 {
        font-size: 24px;
    }

    .new-models .button {
        font-size: 14px;
    }

    .footer-section {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }

    .footer-social {
        margin-top: 20px;
    }
}

/* Sadece media (anasayfa) için ürün gridini tekli yap */
.media-page .product-grid {
    grid-template-columns: 1fr !important;
}