/* --- Değişkenler ve Genel Ayarlar --- */
:root {
    --primary-color: #0056b3;
    --secondary-color: #007bff;
    --accent-color: #28a745;
    --dark-color: #333;
    --light-color: #f9f9f9;
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.section-title.left-align {
    text-align: left;
}

/* --- Header ve Navigasyon --- */
.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}

.main-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.phone-button, .cta-button {
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.phone-button:hover, .cta-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-button {
    background-color: var(--secondary-color);
    display: inline-block;
    margin-top: 20px;
}
.cta-button:hover {
    background-color: var(--primary-color);
}

/* --- Hero (Vitrin) Alanı --- */
.hero {
    background-image: url('images/banner.jpeg'); /* UZANTI .jpeg OLARAK DÜZELTİLDİ */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero-content {
    position: relative; 
    z-index: 2;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7); 
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-content p {
    font-size: 22px;
}

/* --- Ürün Kategorileri (Ana Sayfa) --- */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category-card h3 {
    padding: 20px;
    margin: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.category-link {
    text-decoration: none;
}

/* --- Vurgu Alanı --- */
.highlight-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.highlight-section h2 {
    font-size: 32px;
}

/* --- Hakkımızda Alanı --- */
.trust-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 50px;
}

.trust-section img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* --- İletişim Alanı --- */
.contact-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.address p {
    font-size: 16px;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Footer --- */
footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* --- WhatsApp Butonu --- */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: hop 2s infinite ease-in-out;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: #FFF;
}

@keyframes hop {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* --- Alt Sayfa (Boya, El Aletleri) Stilleri --- */
.page-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px 15px 5px 15px;
    margin: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.product-card p {
    padding: 0 15px;
    margin: 0;
    font-size: 15px;
    color: #666;
    flex-grow: 1;
}

.info-box {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-box svg {
    width: 40px;
    height: 40px;
    fill: #ffc107;
    flex-shrink: 0;
}

.info-box-text h3 {
    margin: 0 0 5px 0;
    color: var(--dark-color);
    font-size: 20px;
}

.info-box-text p {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.info-box-text a {
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.info-box-text a:hover {
    text-decoration: underline;
}

.final-call-box {
    background-color: #e7f3ff;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.final-call-box h3 {
    margin-top: 0;
    font-size: 24px;
    color: var(--dark-color);
}

.final-call-box p {
    font-size: 18px;
    margin-bottom: 25px;
}


/* --- Mobil Uyum --- */
@media(max-width: 768px) {
    .header-container { flex-direction: column; gap: 10px; }
    .hero-content h1 { font-size: 36px; }
    .trust-section, .contact-info { grid-template-columns: 1fr; text-align: center; }
    .section-title.left-align { text-align: center; }
    .trust-section img { margin: 0 auto 20px auto; }
}
