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

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
}

/* Değişkenler */
:root {
    --deniz-mavisi: #1E88E5;
    --cimen-yesili: #4CAF50;
    --acik-mavi: #90CAF9;
    --acik-yesil: #A5D6A7;
}

/* Header ve Navigasyon */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.logo h1 {
    display: none; /* Logo varken yazıyı gizliyoruz */
}

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

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--deniz-mavisi);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cimen-yesili);
}

/* Burger Menü */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Ana Sayfa Video */
.video-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

#myVideo, #myVideoMobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#myVideo {
    display: block;
}

#myVideoMobile {
    display: none;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

/* Bölüm Stilleri */
section {
    padding: 80px 50px;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Ürünler */
.urunler-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.urun-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.urun-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.2);
}

.urun-card img {
    width: 100%;
    height: 250px; /* Yüksekliği artırıyoruz */
    object-fit: contain; /* contain ile resmin oranını koruyoruz */
    padding: 20px; /* Resim etrafında boşluk bırakıyoruz */
    background-color: #f8f9fa;
}

.urun-card h3 {
    padding: 15px;
    color: #333;
}

.urun-card p {
    padding: 0 15px 15px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 15px;
    background-color: var(--deniz-mavisi);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--cimen-yesili);
}

/* İletişim Formu */
.iletisim-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.iletisim-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.iletisim-form input,
.iletisim-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.iletisim-form textarea {
    height: 150px;
    resize: vertical;
}

.iletisim-bilgi {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.iletisim-bilgi h2 {
    color: var(--deniz-mavisi);
    margin-bottom: 30px;
    font-size: 24px;
}

.bilgi-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.bilgi-item:hover {
    transform: translateX(10px);
}

.bilgi-item i {
    font-size: 24px;
    color: var(--deniz-mavisi);
    margin-right: 15px;
    margin-top: 3px;
}

.bilgi-detay h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}

.bilgi-detay p {
    color: #666;
    line-height: 1.6;
}

.harita {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.harita iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deniz-mavisi), var(--cimen-yesili));
    color: white;
    padding: 40px 20px 20px;
}

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

.social-links a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--acik-mavi);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        right: 0;
        top: 70px;
        background-color: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: block;
    }

    .iletisim-container {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 20px;
    }

    .video-container {
        height: 60vh;
        margin-top: 50px; /* Video container'ı aşağı kaydırıyoruz */
    }

    #myVideo {
        display: none;
    }

    #myVideoMobile {
        display: block;
    }

    .iletisim-container {
        grid-template-columns: 1fr;
    }

    .bilgi-item:hover {
        transform: none;
    }

    .harita iframe {
        min-height: 350px;
    }
}

/* Aktif Menü Öğesi */
.nav-links a.active {
    color: var(--cimen-yesili);
    font-weight: bold;
}

/* Sayfa İçeriği */
.sayfa-content {
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.sayfa-content h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Referanslar Sayfası */
.referanslar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.referans-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.referans-card:hover {
    transform: translateY(-5px);
}

.referans-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 15px;
}

.referans-bilgi {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.referans-bilgi h3 {
    margin-bottom: 10px;
    color: var(--deniz-mavisi);
    font-size: 20px;
}

.lokasyon {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.lokasyon i {
    color: var(--deniz-mavisi);
    margin-right: 8px;
}

.aciklama {
    color: #666;
    line-height: 1.5;
    margin-top: auto;
    text-align: justify;
}

/* Müşteri Yorumları */
.musteri-yorumlari {
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.musteri-yorumlari h2 {
    text-align: center;
    margin-bottom: 40px;
}

.yorum-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.yorum-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.yorum-baslik i {
    color: var(--deniz-mavisi);
    font-size: 24px;
    margin-bottom: 20px;
}

.yorum-metin {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.yorum-sahibi {
    display: flex;
    flex-direction: column;
}

.yorum-sahibi strong {
    color: #333;
}

.yorum-sahibi span {
    color: #666;
    font-size: 14px;
}

/* Harita */
.harita-container {
    margin-top: 60px;
    padding: 20px;
}

.harita-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Hakkımızda Bölümü */
.hakkimizda-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hakkimizda-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.hakkimizda-text {
    color: #666;
    line-height: 1.8;
}

.ozellikler-list {
    list-style: none;
    margin-top: 30px;
}

.ozellikler-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.ozellikler-list i {
    color: var(--deniz-mavisi);
    margin-right: 10px;
}

/* Responsive Düzenlemeler */
@media screen and (max-width: 768px) {
    .sayfa-content {
        padding-top: 80px;
    }

    .referanslar-grid,
    .yorum-container {
        grid-template-columns: 1fr;
    }

    .iletisim-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hakkimizda-content {
        grid-template-columns: 1fr;
    }
}

/* Form Elementleri */
.iletisim-form input:focus,
.iletisim-form textarea:focus,
.iletisim-form select:focus {
    border-color: var(--deniz-mavisi);
    outline: none;
    box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
} 