/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo h1 {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo h1 span {
    color: var(--secondary-color);
    font-weight: 400;
}

.logo a {
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-switcher .lang-btn {
    background: none;
    border: 2px solid var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    transition: var(--transition);
}

.language-switcher .lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Navigation */
.main-nav {
    border-top: 1px solid #f0f0f0;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

/* ULTRA MİNİMAL HERO SECTION - MAXIMUM 5PX BOŞLUK */
.hero-section {
    background: linear-gradient(rgba(139, 69, 19, 0.85), rgba(139, 69, 19, 0.85)), url('../images/hero-bg.jpg') center/cover;
    padding: 5px 0 !important;
    margin: 0 !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    position: relative;
}

.hero-overlay {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    height: 100% !important;
}

.hero-title {
    font-size: 0.9rem !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 600;
    line-height: 1 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #ffffff !important;
    display: inline-block !important;
}

.hero-subtitle {
    font-size: 0.8rem !important;
    margin: 0 !important;
    padding: 0 5px !important;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1 !important;
    color: #ffffff !important;
    display: inline-block !important;
    border-left: 1px solid rgba(255,255,255,0.5);
    border-right: 1px solid rgba(255,255,255,0.5);
}

.hero-content .btn {
    padding: 3px 10px !important;
    font-size: 0.7rem !important;
    margin: 0 !important;
    line-height: 1 !important;
    display: inline-block !important;
    border-radius: 15px !important;
}

/* DİĞER SAYFALAR İÇİN MİNİMAL BAŞLIK */
.page-title-bar {
    background: linear-gradient(rgba(139, 69, 19, 0.9), rgba(139, 69, 19, 0.9)), url('../images/hero-bg.jpg') center/cover;
    padding: 5px 0 !important;
    text-align: center;
    color: var(--white);
    margin: 0 0 5px 0 !important;
    height: 35px !important;
    min-height: 35px !important;
    max-height: 35px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.page-title-bar h1 {
    font-size: 1.1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1 !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

/* Hero section içindeki buton için özel stil */
.hero-content .btn-primary {
    background: rgba(255,255,255,0.2) !important;
    color: var(--white) !important;
    border: 1px solid var(--white) !important;
}

.hero-content .btn-primary:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
}

/* Sections */
section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Workshop Info */
.workshop-info {
    background: var(--primary-color);
    color: var(--white);
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.workshop-card {
    text-align: center;
    padding: 20px;
}

.workshop-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.workshop-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.workshop-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Newsletter */
.newsletter-section {
    background: var(--bg-light);
    padding: 50px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.main-footer {
    background: #2a2a2a;
    color: #ccc;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-column p {
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-column i {
    margin-right: 8px;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Category Filters */
.category-filters {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    margin: 0 5px 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Product Page Specific */
.products-page {
    padding-top: 0 !important;
}

/* Utility Classes */
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu a {
        padding: 10px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    /* MOBİLDE HERO SECTION */
    .hero-section {
        padding: 3px 0 !important;
        height: 35px !important;
        min-height: 35px !important;
        max-height: 35px !important;
    }
    
    .hero-content {
        gap: 5px !important;
    }
    
    .hero-title {
        font-size: 0.75rem !important;
    }
    
    .hero-subtitle {
        display: none !important; /* Mobilde gizle */
    }
    
    .hero-content .btn {
        padding: 2px 8px !important;
        font-size: 0.65rem !important;
    }
    
    .page-title-bar {
        padding: 3px 0 !important;
        height: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;
        margin-bottom: 3px !important;
    }
    
    .page-title-bar h1 {
        font-size: 1rem !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}