:root {
    --renk-ana: #d4a574;
    --renk-koyu: #8b6f47;
    --renk-acik: #f5e6d3;
    --renk-beyaz: #ffffff;
    --renk-gri: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.ust-mesaj-bar {
    background-color: var(--renk-ana);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.btn-close-mesaj {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
}

.navbar {
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--renk-ana);
    font-size: 24px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--renk-ana) !important;
}

.nav-icon {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-icon:hover {
    color: var(--renk-ana);
}

.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h6 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.btn-hero {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: white;
    color: #333;
}

.organik-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255,255,255,0.9);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
}

.bolum-baslik {
    text-align: center;
    margin: 60px 0 40px;
}

.bolum-baslik h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.kategori-kart {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.kategori-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.kategori-kart img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.kategori-kart-body {
    padding: 20px;
    text-align: center;
}

.kategori-kart-body h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.kategori-kart-body p {
    color: #666;
    margin-bottom: 15px;
}

.ozellik-kart {
    text-align: center;
    padding: 30px 20px;
}

.ozellik-kart i {
    font-size: 40px;
    color: var(--renk-ana);
    margin-bottom: 15px;
}

.ozellik-kart h5 {
    font-size: 18px;
    color: #333;
}

.hakkimizda-section {
    padding: 80px 0;
    background: var(--renk-gri);
}

.hakkimizda-content h6 {
    color: var(--renk-ana);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hakkimizda-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.ozellik-item {
    margin-bottom: 30px;
}

.ozellik-item .numara {
    font-size: 48px;
    font-weight: 700;
    color: var(--renk-ana);
    line-height: 1;
    margin-bottom: 10px;
}

.ozellik-item h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.ozellik-item p {
    color: #666;
    line-height: 1.8;
}

.instagram-section {
    padding: 60px 0;
    text-align: center;
}

.instagram-section h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.instagram-section p {
    color: #666;
    margin-bottom: 30px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.instagram-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.instagram-grid img:hover {
    transform: scale(1.05);
}

.urun-kart {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.urun-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.urun-kart img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.urun-kart-body {
    padding: 20px;
}

.urun-kart-body h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.urun-fiyat {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.fiyat-yeni {
    font-size: 20px;
    font-weight: 700;
    color: var(--renk-ana);
}

.fiyat-eski {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.fiyat-normal {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.footer {
    background: white;
}

.newsletter-section {
    background: var(--renk-gri);
}

.footer-links h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--renk-ana);
}

.footer-bottom {
    background: #333;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .bolum-baslik h2 {
        font-size: 28px;
    }
    
    .hakkimizda-content h2 {
        font-size: 32px;
    }
}

