* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Navbar Stili */
nav {
    /* background-color: #2c3e50; */
    background-color: #1a2a3a; /* Premium dark blue */
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Bölümü */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/vento1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

/* Ürünler Bölümü */
.products {
    padding: 4rem 2rem;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* İletişim Bölümü */
.contact {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact input,
.contact textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.contact textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Mobil Menü */
.menu-btn {
    display: none;
    cursor: pointer;
}

.hamburger {
    width: 30px;
    height: 21px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger .line {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
}

/* Navbar Stili */
nav {
    background-color: #2c3e50;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    height: 50px; /* Logo yüksekliği ile aynı */
    display: flex;
    align-items: center;
}

.logo {
    height: 100%;
    width: auto;
    max-width: 200px; /* Logo genişliği */
    object-fit: contain;
}

/* Ürün Galerisi */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products {
    padding: 60px 0;
    background-color: #fff;
}

.products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.2rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-img {
    transform: scale(1.1);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .img-overlay {
    opacity: 1;
}

.product-desc {
    padding: 20px;
    background: #f9f9f9;
    text-align: center;
}

.product-desc h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-desc p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Sosyal Medya Butonları */
.floating-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.floating {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-facebook {
    background-color: #3b5998;
}

.floating-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.floating:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 5px #777;
}

.fab-icon {
    color: white;
}

.product-item-special {
    display: grid;
    grid-template-columns: 250px 1fr; /* Resim kare (250x250), açıklama sağda */
    align-items: center;
    gap: 20px;
    text-align: left !important; /* Yazıları sola hizala */
}

.product-item-special .product-img-wrapper {
    height: 250px !important; /* Kare yap */
    width: 250px !important;
}

.product-item-special .product-desc {
    padding: 0 !important;
    background: transparent !important; /* Arkaplan rengini kaldır */
}

/* ÖZEL ÜRÜN STİLİ (SOLDA KARE RESİM - SAĞDA AÇIKLAMA) */
.product-item-special {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.product-item-special .product-img-wrapper {
    width: 350px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.product-item-special .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item-special .product-desc {
    padding: 0;
    background: transparent;
}

.product-item-special .product-desc h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.product-item-special .product-desc p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-item-special .btn {
    padding: 10px 25px;
    background: #3498db;
}




/* Mobil Uyumluluk */
@media (max-width: 768px) {

    .product-item-special {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }
    .product-item-special .product-img-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #2c3e50;
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
        .logo {
        max-width: 150px; /* Mobilde logo  */
    }
    
    /* --- */
    
    .product-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .product-img-wrapper {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    .products h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}



