:root {
    --primary-color: #e67e22;   /* Turuncu */
    --secondary-color: #d35400; /* Koyu turuncu */
    --dark-color: #1c1c1c;      /* Siyah */
    --text-color: #f5f5f5;      /* Açık gri */
    --light-color: #2c2c2c;     /* Siyah gri */
    --white-color: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Genel Ayarlar */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: var(--light-color);
    padding: 15px 0;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.brand-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2em;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.brand-text p {
    font-size: 0.9em;
    color: #aaa;
    margin: 0;
}

/* Navigation */
.desktop-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.desktop-nav .category-menu {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-menu li {
    margin: 0;
}

.menu-button {
    background: #333;
    color: var(--text-color);
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.menu-button:hover,
.menu-button.active {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.menu-button i {
    font-size: 1.1em;
}

.mobile-menu-toggle {
    display: none;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1.2em;
}

.mobile-nav {
    display: none;
    width: 100%;
    background: var(--light-color);
    border-top: 1px solid #444;
    padding-top: 10px;
}

.mobile-nav .category-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px;
}

.mobile-nav .menu-button {
    width: 100%;
    justify-content: flex-start;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.menu-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.menu-header p {
    font-size: 1.1em;
    color: #bbb;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.product-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eee;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: 700;
    z-index: 10;
}

.badge.popular {
    background: var(--primary-color);
    color: var(--white-color);
}

.product-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4em;
    color: var(--dark-color);
    margin: 20px 15px 10px;
    min-height: 40px;
}

.product-card h3 small {
    display: block;
    font-size: 0.7em;
    color: #666;
    margin-top: 5px;
}

.product-card .price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6em;
    color: var(--primary-color);
    font-weight: 700;
    margin: auto 15px 20px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
    color: var(--text-color);
    padding: 50px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 5px solid var(--secondary-color);
}

.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    font-weight: 600;
}

.contact-item i {
    font-size: 1.8em;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-item span {
    display: block;
}

/* Footer */
.main-footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    border-top: 1px solid #333;
}

.main-footer p {
    margin: 0;
}

/* Utility */
.product-card.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    .header-content { flex-direction: row; justify-content: space-between; }
    .logo-area { margin-bottom: 0; }
    .brand-text h1 { font-size: 1.8em; }
    .brand-text p { font-size: 0.8em; }
    .mobile-nav.active { display: block; }
}

@media (max-width: 768px) {
    .logo-area { gap: 10px; }
    .logo-img { width: 60px; height: 60px; }
    .brand-text h1 { font-size: 1.6em; }
    .menu-header h2 { font-size: 2.2em; }
    .menu-header p { font-size: 1em; }
    .product-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
    .contact-info { gap: 20px; }
    .contact-item { flex-direction: column; gap: 5px; font-size: 1.1em; }
    .contact-item i { font-size: 1.5em; width: 35px; height: 35px; }
}

@media (max-width: 480px) {
    .header-content { padding: 0 10px; }
    .logo-img { width: 50px; height: 50px; }
    .brand-text h1 { font-size: 1.4em; }
    .brand-text p { font-size: 0.7em; }
    .menu-header h2 { font-size: 1.8em; }
    .product-grid { grid-template-columns: 1fr; gap: 15px; }
    .product-card h3 { font-size: 1.2em; }
    .product-card .price { font-size: 1.4em; }
    .contact-section { padding: 30px 0; }
    .contact-section h2 { font-size: 2em; }
}
