/* --- MIXED MEDIA / COLLAGE VARIABLES --- */
:root {
    --bg-paper: #f4f1ea;        /* Eski Kağıt Rengi */
    --text-ink: #1a1a1a;        /* Mürekkep Siyahı */
    --highlight-yellow: #fff200; /* Fosforlu Kalem */
    --highlight-pink: #ff9ff3;
    --paper-shadow: 5px 5px 15px rgba(0,0,0,0.15);
    --tape-color: rgba(255, 255, 255, 0.6);
    --font-serif: 'Playfair Display', serif; /* Daktilo/Dergi Havası */
    --font-hand: 'Permanent Marker', cursive; /* El Yazısı */
    --font-body: 'Courier Prime', monospace; /* Daktilo */
    --max-width: 1100px;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-paper);
    color: var(--text-ink);
    font-family: var(--font-body);
    line-height: 1.6;
    /* Kağıt Dokusu Efekti */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
img { width: 100%; height: auto; display: block; }

/* --- BANT EFEKTİ (TAPE) --- */
.tape {
    position: absolute;
    width: 120px;
    height: 35px;
    background-color: var(--tape-color);
    transform: rotate(-5deg);
    opacity: 0.8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 10;
    left: 50%;
    top: -15px;
    margin-left: -60px;
    border-left: 2px dashed rgba(255,255,255,0.3);
    border-right: 2px dashed rgba(255,255,255,0.3);
}

/* --- HEADER --- */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(244, 241, 234, 0.95);
    border-bottom: 2px solid var(--text-ink);
    border-bottom-style: dashed;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-hand);
    font-size: 2rem;
    transform: rotate(-3deg);
    background: var(--text-ink);
    color: var(--bg-paper);
    padding: 5px 15px;
}

.nav-links { display: flex; gap: 20px; align-items: center; }

.nav-links a {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 5px 10px;
    position: relative;
}

/* Marker Efekti */
.nav-links a:hover, .nav-links a.active {
    background: linear-gradient(120deg, var(--highlight-yellow) 0%, var(--highlight-yellow) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 80%;
    transform: rotate(2deg);
    display: inline-block;
}

.burger { display: none; cursor: pointer; font-size: 2rem; }

/* --- LAYOUTS --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px;
    flex: 1;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }

/* --- COMPONENTS (COLLAGE STYLE) --- */
.collage-card {
    background: white;
    padding: 20px;
    box-shadow: var(--paper-shadow);
    position: relative;
    border: 1px solid #ccc;
    transition: transform 0.3s;
}

.collage-card:nth-child(odd) { transform: rotate(2deg); }
.collage-card:nth-child(even) { transform: rotate(-1deg); }
.collage-card:hover { transform: scale(1.02) rotate(0deg); z-index: 5; }

.polaroid {
    background: white;
    padding: 15px 15px 50px 15px;
    box-shadow: var(--paper-shadow);
    transform: rotate(-3deg);
    position: relative;
}
.polaroid img { filter: sepia(30%) contrast(1.1); }
.polaroid::after {
    content: 'Endorse Advocate ©';
    position: absolute;
    bottom: 15px; right: 20px;
    font-family: var(--font-hand);
    color: #555;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--text-ink);
    color: white;
    font-family: var(--font-serif);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid var(--text-ink);
    transition: 0.2s;
    position: relative;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
}

.btn:hover {
    background: var(--highlight-pink);
    color: var(--text-ink);
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.icon-box svg { width: 50px; height: 50px; fill: var(--text-ink); margin-bottom: 10px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--text-ink);
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 { 
    font-size: 4rem; 
    line-height: 1;
    text-shadow: 2px 2px 0px var(--highlight-yellow);
}

h2 { 
    font-size: 2.5rem; 
    text-align: center; 
    background: var(--text-ink);
    color: white;
    display: inline-block;
    padding: 5px 20px;
    transform: rotate(-2deg);
}

p { font-size: 1.1rem; margin-bottom: 20px; }

.hand-note {
    font-family: var(--font-hand);
    color: #d63031;
    font-size: 1.4rem;
    transform: rotate(-5deg);
    display: inline-block;
}

/* --- FORMS --- */
.form-card {
    background: white;
    padding: 40px;
    box-shadow: var(--paper-shadow);
    transform: rotate(1deg);
    border: 1px solid #ccc;
    background-image: repeating-linear-gradient(#fff, #fff 29px, #00b894 30px);
}

.form-group { margin-bottom: 25px; }
label { display: block; margin-bottom: 5px; font-family: var(--font-serif); font-weight: bold; background: white; width: fit-content; }
input, textarea, select {
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.8);
    border: 2px solid var(--text-ink);
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: #333;
}
input:focus, textarea:focus { outline: none; background: var(--highlight-yellow); }

/* --- FOOTER --- */
footer {
    background: #2d3436;
    color: #dfe6e9;
    padding: 60px 0 20px;
    margin-top: auto;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col h4 { font-family: var(--font-hand); font-size: 1.5rem; color: var(--highlight-pink); margin-bottom: 15px; }
.footer-col a { display: block; margin-bottom: 10px; border-bottom: 1px dashed #777; width: fit-content; }
.footer-col a:hover { color: white; border-bottom-style: solid; }

.tr-phone {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: bold;
    background: white;
    color: black;
    padding: 5px 10px;
    transform: rotate(2deg);
    display: inline-block;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute; top: 80px; left: 0; width: 100%;
        background: var(--bg-paper);
        flex-direction: column; padding: 30px; text-align: center;
        border-bottom: 2px dashed var(--text-ink);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .burger { display: block; }
    
    .grid-2 { grid-template-columns: 1fr; }
    h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .tr-phone { justify-content: center; }
}