/* --- COLLAGE / SCRAPBOOK VARIABLES --- */
:root {
    --paper-bg: #fdfbf7;
    --craft-paper: #e3dcd2;
    --tape-color: rgba(255, 255, 255, 0.85);
    --text-dark: #4a4a4a;
    --text-accent: #8c7b70;
    --fabric-red: #c0392b;
    --fabric-blue: #2980b9;
    --font-hand: 'Patrick Hand', cursive; /* El yazısı */
    --font-serif: 'Playfair Display', serif; /* Şık başlıklar */
    --font-body: 'Open Sans', sans-serif; /* Okunabilirlik */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--paper-bg);
    /* Subtle paper noise texture */
    background-image: url("https://www.transparenttextures.com/patterns/cream-paper.png");
    color: var(--text-dark);
    font-family: var(--font-body);
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- SIDEBAR NAVIGATION (LEFT FIXED) --- */
.sidebar {
    width: 260px;
    background-color: var(--craft-paper);
    background-image: url("https://www.transparenttextures.com/patterns/cardboard.png");
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 40px 30px;
    border-right: 1px dashed #bbb;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
}

.brand {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 10px;
}

.nav-menu li { margin-bottom: 20px; }

.nav-link {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--text-dark);
    display: block;
    position: relative;
    padding-left: 10px;
}

/* Sticker/Tag Effect on Hover */
.nav-link:hover, .nav-link.active {
    color: var(--fabric-red);
    transform: rotate(-2deg);
}

.nav-link.active::before {
    content: '📌';
    position: absolute;
    left: -20px;
    font-size: 1rem;
}

/* Mobile Toggle */
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; position: fixed; top: 20px; right: 20px; z-index: 2000; background: #fff; padding: 5px 10px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }

/* --- MAIN CONTENT AREA --- */
.main-content {
    margin-left: 260px; /* Offset for sidebar */
    width: calc(100% - 260px);
    padding: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- COLLAGE ELEMENTS --- */
h1, h2 { font-family: var(--font-serif); color: var(--text-dark); }

.page-title {
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
    background: #fff;
    padding: 10px 30px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}

/* TAPE EFFECT CSS */
.taped-img {
    position: relative;
    background: #fff;
    padding: 15px 15px 40px 15px; /* Polaroid bottom padding */
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
    transform: rotate(2deg);
    transition: transform 0.3s;
    margin: 20px auto;
}

.taped-img:hover { transform: rotate(0deg) scale(1.02); z-index: 10; }

.taped-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 35%;
    width: 30%;
    height: 35px;
    background-color: var(--tape-color);
    transform: rotate(-3deg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    opacity: 0.8;
    z-index: 5;
}

.scrapbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 30px;
}

.handwritten-note {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--text-accent);
    margin-top: 10px;
    text-align: center;
}

/* --- SECTIONS SPECIFIC --- */
.hero-collage {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.transparenttextures.com/patterns/graphy.png');
}

.hero-text {
    background: rgba(255,255,255,0.9);
    padding: 40px;
    max-width: 600px;
    text-align: center;
    border: 2px solid var(--text-dark);
    box-shadow: 10px 10px 0 var(--fabric-red);
    z-index: 2;
}

.paper-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: var(--text-dark);
    color: #fff;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    transform: rotate(-1deg);
}

/* --- FORMS (Lined Paper Style) --- */
.notepad-form {
    background: #fff;
    background-image: linear-gradient(#e1e1e1 1px, transparent 1px);
    background-size: 100% 40px;
    padding: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    line-height: 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.notepad-form::before {
    content: ''; 
    position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: #ffaaaa; /* Red margin line */
}

.form-group { margin-bottom: 20px; }
input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    font-family: var(--font-hand);
    font-size: 1.5rem;
    color: var(--text-dark);
    outline: none;
    padding-left: 40px; /* Offset for red line */
}

/* --- FOOTER --- */
footer {
    margin-top: auto;
    padding-top: 50px;
    text-align: center;
    font-family: var(--font-hand);
    color: #888;
    border-top: 2px dashed #ccc;
}
.phone-footer { font-weight: bold; font-size: 1.2rem; color: var(--fabric-blue); }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
        width: 260px;
    }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-left: 0; width: 100%; padding: 30px; }
    .mobile-toggle { display: block; }
    .page-title { font-size: 2.5rem; }
}