/*
Theme Name: Ozdal Marketplace Tema
Theme URI: https://example.com
Author: Ozdal
Description: A minimal, responsive theme for Ozdal Marketplace.
Version: 1.0.0
Text Domain: ozdal-marketplace-tema
*/

/* Reset & Base */
* {
    box_sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: #555;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #000;
}

/* Footer */
.site-footer {
    background: #fff;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #777;
}

/* Content */
.site-main {
    min-height: 60vh;
}

.page-title {
    margin-bottom: 30px;
    font-size: 32px;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}