/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
    font-size: var(--font-size-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-md); }
h6 { font-size: var(--font-size-base); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto;
}

/* Mobil öncelikli yaklaşım */
@media (max-width: 767px) {
    body {
        font-size: var(--font-size-sm);
    }
    
    h1 { font-size: var(--font-size-2xl); }
    h2 { font-size: var(--font-size-xl); }
    h3 { font-size: var(--font-size-lg); }
    h4 { font-size: var(--font-size-md); }
    h5 { font-size: var(--font-size-base); }
    h6 { font-size: var(--font-size-sm); }
    
    .container {
        padding: 0 0.75rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.card {
    background-color: var(--card-bg);
    box-shadow: 0 4px 6px var(--shadow-color);
    border-radius: 8px;
    padding: 1rem;
}

input, textarea {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem;
    border-radius: 4px;
    width: 100%;
    font-size: 1rem;
}

input:focus, textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px var(--accent-hover);
    outline: none;
}

/* Responsive görüntü ve video */
.responsive-media {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-media iframe,
.responsive-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

