:root {
    --primary: #fb8c00; 
    --primary-dark: #ef6c00;
    --secondary: #2e7d32; 
    --dark: #1a1a1a;
    --light: #fdfdfd;
    --glass: rgba(255, 255, 255, 0.96);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    width: 100%;
}

/* NAVBAR */
.navbar {
    background: var(--glass);
    backdrop-filter: blur(10px);
    height: 75px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--dark);
}

.logo span { 
    color: var(--primary); 
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
.hero { 
    height: 100vh; 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1557800636-894a64c1696f?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #fff;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* FEATURES */
.features { 
    padding: 100px 0; 
    background: #fff; 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
}

.feature-card {
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* PRODUCTS */
.products { 
    padding: 100px 0; 
    background: #f9fafb; 
}

.section-title { 
    font-size: 2.2rem; 
    font-weight: 800; 
    margin-bottom: 60px; 
    text-align: center; 
}

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-img {
    height: 230px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    text-align: center;
}

/* FOOTER */
footer { 
    background: #111; 
    color: #fff; 
    padding: 80px 0 30px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
}

.footer-info h3 { 
    font-size: 1.8rem; 
    margin-bottom: 25px; 
    color: var(--primary); 
}

.footer-info p { 
    margin-bottom: 15px; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.footer-info i { 
    color: var(--primary); 
    width: 20px; 
}

/* ======================================== */
/* SOSYAL MEDYA İKONLARI - KESİN ÇALIŞIYOR */
/* ======================================== */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.social-icon i {
    font-size: 1.3rem;
    margin: 0;
    color: white;
    width: auto;
}

.social-icon span {
    font-size: 0.9rem;
}

/* WhatsApp */
.social-icon.whatsapp {
    background: #25D366;
}

/* Instagram */
.social-icon.instagram {
    background: #E1306C;
}

/* Facebook */
.social-icon.facebook {
    background: #1877F2;
}

/* Hover efekti */
.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: white;
}

/* MOBİL */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: var(--glass);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.3s;
        height: calc(100vh - 75px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .grid { 
        grid-template-columns: 1fr; 
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-icon {
        padding: 8px 18px;
    }
    
    .social-icon span {
        display: inline;
    }
}

.footer-map {
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.85rem;
    opacity: 0.5;
}