@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --color-gold: #DAA520;
    --color-gold-dark: #B8860B;
    --color-silver: #C0C0C0;
    --color-silver-light: #DCDCDC;
    --color-dark-bg: #2C2C2C;
    --color-light-bg: #f7f7f2; /* Hafif sıcak krem/bej */
    --color-text-on-dark: #f0f0f0;
    --color-text-on-light: #333333;
    --color-white: #ffffff;
}

/* Genel Stiller */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--color-text-on-light);
    background-color: #faf7f4;
    padding-top: 80px; /* Header yüksekliği + biraz boşluk */
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px 0;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--color-gold-dark); /* Genel link rengi */
}

a:hover {
    color: var(--color-gold); /* Genel link hover rengi */
}

/* Header Stilleri */
header {
    background-color: #474647; /* Daha koyu gri */
    border-bottom: 1px solid var(--color-gold);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: center; /* Ortaya hizala */
    align-items: center;
    position: relative;
}

.logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo-img {
    height: 95px; /* Logo daha büyük */
    width: auto;
    vertical-align: middle;
}

header nav ul {
    display: flex;
    flex: 2;
    justify-content: center;
    align-items: center;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff; /* Beyaz yazı */
    font-weight: bold;
    padding: 8px 15px;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--color-gold);
    background-color: transparent;
}

/* Banner Stilleri */
.banner {
    color: var(--color-text-on-dark);
    padding: 0;
    text-align: center;
    position: relative;
    min-height: 600px; /* Yüksekliği artırıldı */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Kenar yumuşatma efekti */
    box-shadow: inset 0 0 50px 25px var(--color-light-bg); /* Ana arka plan rengine doğru yumuşak geçiş */
}

#slogan-carousel-container {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 900px;
    height: 200px; 
}

.slogan-item {
    position: absolute;
    opacity: 0;
    color: var(--color-text-on-light); /* Siyah metin rengi */
    font-size: 2em;
    font-weight: bold;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.7); /* Beyaz arka plan, %70 opaklık */
    border-radius: 8px;
    text-shadow: none; /* Metin gölgesini kaldır */
    transition: opacity 1s ease-in-out;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* Eski .banner h2 ve .banner p stilleri artık gerekmeyebilir veya güncellenmeli */
.banner h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.banner p {
    font-size: 1.2em;
}

/* Bölüm Stilleri */
section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    position: relative; /* Header'ın altında düzgün görünmesi için */
}

section:last-of-type {
    border-bottom: none;
}

section h2,
.product-listing .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    color: var(--color-gold-dark); /* Koyu altın */
    font-family: 'Roboto', sans-serif;
}

section p {
    font-size: 1.1em;
    text-align: justify;
}

/* Footer Stilleri */
footer {
    background-color: var(--color-dark-bg);
    color: var(--color-silver);
    text-align: center;
    padding: 30px 0; /* Padding artırıldı */
    border-top: 3px solid var(--color-gold);
}

footer p {
    margin: 8px 0;
}

footer a {
    color: var(--color-gold);
}

footer a:hover {
    color: var(--color-silver-light);
}

/* Ürün Grupları Stilleri */
.product-listing {
    padding: 40px 0;
}

.product-listing .section-title {
    font-size: 2.2em;
}

.product-group-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--color-white); /* Beyaz arka plan */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    gap: 30px;
    border-top: 4px solid var(--color-gold); /* Üstte altın çizgi */
}

.product-group-item:nth-child(even) {
    background-color: var(--color-white); /* Tutarlılık için even stilini kaldırdım, hepsi beyaz */
    /* Alternatif: var(--color-light-bg) ile çok hafif bir fark yaratılabilir ama beyaz daha iyi olabilir */
}

.product-text {
    flex: 1; /* Esnek genişlik */
}

.product-text h3 {
    font-size: 1.8em;
    color: var(--color-gold-dark);
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.product-text p {
    font-size: 1em;
    line-height: 1.7;
    text-align: left; /* Sola hizalı metin */
}

.product-visual {
    flex: 1; /* Esnek genişlik */
    text-align: center; /* Görseli kendi içinde ortala */
    position: relative; /* Logo barının konumlandırılması için */
    overflow: hidden; /* Logo barının taşan kısımlarını video sınırları içinde tutar, eğer border-radius varsa */
    border-radius: 8px; /* product-visual'a da border-radius ekleyelim ki logo barı da köşeli olmasın */
}

.product-visual img,
.product-visual video {
    max-width: 100%;
    width: 100%; /* Videonun kapsayıcıya tam genişlemesini sağlamak için eklendi */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: block; /* Kenar boşluklarını ve hizalamayı iyileştirebilir */
}

.video-logo-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white); /* Beyaz arka plan */
    padding: 12px 0; /* Kalınlığı artırmak için padding artırıldı */
    display: flex;
    justify-content: space-around; /* Logoları eşit aralıklı yay */
    align-items: center;
    z-index: 10;
    border-top: 1px solid var(--color-silver-light); /* Beyaz arka plan üzerinde hafif bir ayırıcı çizgi */
}

.video-logo-bar img {
    height: 25px; /* Küçük logo yüksekliği - isteğe bağlı olarak ayarlanabilir */
    width: auto;
    /* margin: 0 8px; */ /* justify-content: space-around kullandığımız için bu margin artık gerekmeyebilir veya azaltılabilir */
}

/* Metin solda, görsel sağda */
.layout-text-left .product-text {
    order: 1;
}
.layout-text-left .product-visual {
    order: 2;
}

/* Görsel solda, metin sağda */
.layout-text-right .product-visual {
    order: 1;
}
.layout-text-right .product-text {
    order: 2;
}

/* Responsive Tasarım (Basit Örnek) */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* Mobilde header daha yüksek olduğu için padding artırıldı */
    }

    header .container {
        flex-direction: column;
    }

    header nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 5px 0;
    }

    .container {
        width: 90%;
    }

    .product-group-item {
        flex-direction: column;
        text-align: center; /* Mobilde her şeyi ortala */
    }

    .layout-text-left .product-text,
    .layout-text-left .product-visual,
    .layout-text-right .product-visual,
    .layout-text-right .product-text {
        order: initial; /* Mobilde flex order'ı sıfırla */
        text-align: center; /* İçerikleri ortala */
    }

    .product-text h3 {
        margin-top: 20px; /* Görselden sonra biraz boşluk */
    }

    .product-text p {
        text-align: center; /* Mobilde paragrafları da ortala */
    }

    .logo-img {
        height: 75px;
    }

    .logo-link {
        justify-content: center;
    }
}

/* İletişim Sayfası Stilleri */
.contact-page .container {
    /* padding-top: 20px; */ /* Header sticky olduğu için gerekebilir veya section'a padding verilebilir */
}

.contact-content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Mobilde alt alta gelmesi için */
    gap: 25px; /* Boşluk azaltıldı */
}

.contact-form-container,
.contact-info-map-container {
    flex: 1;
    min-width: 280px; /* Minimum genişlik biraz azaltıldı */
    background-color: var(--color-white);
    padding: 20px; /* Padding azaltıldı */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    /* border-top stilleri olduğu gibi kalır */
}
.contact-form-container {
    border-top: 4px solid var(--color-gold);
}
.contact-info-map-container {
    border-top: 4px solid var(--color-silver-light);
}

.contact-form-container h3,
.contact-info-map-container h3 {
    font-family: 'Roboto', sans-serif;
    color: var(--color-gold-dark);
    margin-top: 0;
    margin-bottom: 20px; /* Boşluk azaltıldı */
    font-size: 1.6em; /* Font boyutu azaltıldı */
}

.form-group {
    margin-bottom: 15px; /* Boşluk azaltıldı */
}

.form-group label {
    display: block;
    margin-bottom: 6px; /* Boşluk azaltıldı */
    font-weight: bold;
    color: var(--color-text-on-light);
    font-size: 0.95em; /* Font boyutu azaltıldı */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px; /* Padding azaltıldı */
    border: 1px solid var(--color-silver-light);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95em; /* Font boyutu azaltıldı */
    box-sizing: border-box; 
}

.form-group textarea {
    resize: vertical; 
}

.btn.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 10px 20px; /* Padding azaltıldı */
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 0.95em; /* Font boyutu azaltıldı */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: var(--color-gold-dark);
}

.map-container {
    width: 100%;
    margin-top: 15px; /* Boşluk azaltıldı */
    border-radius: 8px;
    overflow: hidden; /* iframe'in köşelerini yuvarlak yapmak için */
    border: 1px solid var(--color-silver-light);
}

.map-container iframe {
    display: block; /* Altındaki gereksiz boşluğu kaldırır */
}

.contact-info-map-container p {
    margin-bottom: 8px; /* Boşluk azaltıldı */
    line-height: 1.6; /* Satır yüksekliği azaltıldı */
    font-size: 0.95em; /* Font boyutu azaltıldı */
}

/* İletişim sayfası için responsive ayarlamalar */
@media (max-width: 768px) {
    .contact-content-wrapper {
        flex-direction: column;
    }
}

/* Partner Firmalar Bölümü */
.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}



.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.partner-logo {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 2px solid transparent;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-gold);
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* Partner Logoları için Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .partner-logo {
        padding: 15px;
        min-height: 80px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-logo {
        padding: 12px;
        min-height: 70px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
}

/* Bilgi Kolonları Stilleri (Anasayfa Modern Kartlar) */
.info-columns-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.info-columns-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23ddd" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ddd" opacity="0.3"/><circle cx="50" cy="10" r="1" fill="%23ddd" opacity="0.2"/><circle cx="10" cy="90" r="1" fill="%23ddd" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.5;
}

.info-columns-section .container {
    position: relative;
    z-index: 1;
}

.info-columns-section .section-title {
    text-align: center;
    font-size: 2.8em;
    color: var(--color-gold-dark);
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.info-columns-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-column {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
}

.info-column:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--color-gold);
}

.info-card-image {
    height: 120px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.character-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.info-column:hover .character-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
s
.customer-icon { color: #686868; }
.delivery-icon { color: #4ecdc4; }
.hygiene-icon { color: #45b7d1; }
.security-icon { color: #96ceb4; }

.info-content {
    padding: 30px 25px;
    text-align: center;
}

.info-content h3 {
    font-family: 'Roboto', sans-serif;
    color: var(--color-gold-dark);
    font-size: 1.6em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.info-content p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: var(--color-text-on-light);
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Bilgi Kolonları için Responsive Ayarlamalar */
@media (max-width: 768px) {
    .info-columns-section {
        padding: 30px 0;
    }
    
    .info-columns-section .section-title {
        font-size: 2.2em;
        margin-bottom: 25px;
    }
    
    .info-columns-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .info-column {
        margin-bottom: 0;
    }
    
    .info-card-image {
        height: 100px;
    }
    
    .character-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2em;
    }
    
    .info-content {
        padding: 25px 20px;
    }
    
    .info-content h3 {
        font-size: 1.4em;
    }
    
    .info-content p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .feature-item {
        font-size: 0.85em;
    }
}

/* Sabit sosyal medya ikonları */
.fixed-social-icons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.fixed-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    color: #25D366;
    font-size: 2.7em;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
}
.fixed-social-icons a.instagram {
    color: #E1306C;
}
.fixed-social-icons a:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    background: #f7f7f7;
}
@media (max-width: 768px) {
    .fixed-social-icons {
        right: 12px;
        bottom: 12px;
    }
    .fixed-social-icons a {
        width: 56px;
        height: 56px;
        font-size: 2em;
    }
}

/* Partner Companies Styles */
.partner-companies {
    margin-top: 20px;
    padding: 15px 0;
}

.partner-companies h4 {
    font-family: 'Roboto', sans-serif;
    color: var(--color-gold-dark);
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.companies-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.company-column {
    flex: 1;
}

.company-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-column li {
    padding: 8px 0;
    font-size: 0.95em;
    color: var(--color-text-on-light);
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.company-column li:last-child {
    border-bottom: none;
}

.company-column li::before {
    content: '•';
    color: var(--color-gold);
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive for partner companies */
@media (max-width: 768px) {
    .companies-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .partner-companies h4 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .company-column li {
        font-size: 0.9em;
        padding: 6px 0;
    }
} 