/* =================== 
   GOOGLE FONTS IMPORT
   =================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* =================== 
   VARIABLES
   =================== */
:root {
    /* Base colors */
    --parchment: #f2e8c9;
    --dark-brown: #5c4033;
    --rusty-copper: #b87333;
    --antique-gold: #d4af37;
    --deep-gold: #b8860b;
    --bright-gold: #ffd700;
    --pale-blue: #7393b3;
    
    /* Additional colors */
    --cream: #ebe5ce;
    --light-sepia: #e6d7b9;
    --dark-sepia: #704214;
    --burnt-umber: #8b4513;
    --aged-paper: #d3c7a2;
    --faded-ink: #32302c;
    --old-map: #cca77f;
    --ancient-text: #483c32;
    
    /* Metallic colors */
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7);
    --bronze-gradient: linear-gradient(135deg, #CD7F32, #E8C39E, #CD7F32);
    --silver-gradient: linear-gradient(135deg, #bcc6cc, #eee, #bcc6cc);
    
    /* Functional colors */
    --background: var(--parchment);
    --text-primary: var(--dark-sepia);
    --text-secondary: var(--burnt-umber);
    --accent: var(--rusty-copper);
    --accent-light: var(--antique-gold);
    --accent-dark: #603813;
    --footer-bg: #32281e;
    
    /* Dark theme colors */
    --dark-background: #1e1a15;
    --dark-text-primary: #e6d7b9;
    --dark-text-secondary: #cca77f;
    --dark-accent: #c28d4b;
    
    /* Typography */
    --heading-font: 'Cinzel', serif;
    --subheading-font: 'Playfair Display', serif;
    --secondary-heading-font: 'EB Garamond', serif;
    --body-font: 'Cormorant Garamond', serif;
    --ui-font: 'Lora', serif;
    
    /* Shadows & Effects */
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.2);
    --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    --gold-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
    
    /* Border Radii */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 12px;
    --radius-xl: 20px;
    --radius-round: 50%;
}

/* =================== 
   RESET & BASE STYLES
   =================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--text-primary);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
    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%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23704214' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23704214' fill-opacity='0.02'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

body.dark-theme {
    background-color: var(--dark-background);
    color: var(--dark-text-primary);
    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%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d3c7a2' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d3c7a2' fill-opacity='0.02'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

a {
    text-decoration: none!important;
    color: var(--accent);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =================== 
   PRELOADER
   =================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

body.dark-theme .preloader {
    background: linear-gradient(135deg, #2c261e 0%, #1e1a15 100%);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ancient-scroll {
    display: flex;
    align-items: center;
    width: 300px;
    height: 120px;
    position: relative;
}

.scroll-handle {
    width: 20px;
    height: 100px;
    background-color: var(--deep-gold);
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
    position: relative;
}

.scroll-handle.left {
    transform: rotate(-5deg);
}

.scroll-handle.right {
    transform: rotate(5deg);
}

.scroll-paper {
    flex: 1;
    height: 100%;
    background-color: var(--aged-paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20z' fill='%23704214' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.scroll-paper h2 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-sepia);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.scroll-paper p {
    font-family: var(--secondary-heading-font);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
}

body.dark-theme .scroll-paper {
    background-color: #32281e;
}

body.dark-theme .scroll-paper h2,
body.dark-theme .scroll-paper p {
    color: var(--dark-text-primary);
}

/* =================== 
   TARIHSEL KUM SAATI
   =================== */
.hourglass {
    position: relative;
    width: 90px;
    height: 150px;
    margin: 25px auto;
    z-index: 2;
}

/* Kum saati çerçevesi */
.hourglass::before, 
.hourglass::after {
    content: '';
    position: absolute;
    left: 42px;
    width: 6px;
    height: 100%;
    background-color: var(--dark-sepia);
    border-radius: 3px;
    z-index: 1;
}

/* Ahşap ayaklık */
.hourglass::after {
    bottom: -15px;
    height: 16px;
    width: 50px;
    left: 20px;
    background: linear-gradient(to bottom, var(--burnt-umber), var(--dark-sepia));
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Kum saati üst bölümü */
.hourglass-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 65px;
    background-color: var(--parchment);
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23704214' fill-opacity='0.15' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H5V0zm1 5v1H5L0 1V0h1l5 5z'/%3E%3C/g%3E%3C/svg%3E");
    border-radius: 50% 50% 5px 5px / 25% 25% 15% 15%;
    border: 3px solid var(--dark-sepia);
    border-bottom: none;
    box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 2;
}

/* Kum saati alt bölümü */
.hourglass-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 65px;
    background-color: var(--parchment);
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23704214' fill-opacity='0.15' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H5V0zm1 5v1H5L0 1V0h1l5 5z'/%3E%3C/g%3E%3C/svg%3E");
    border-radius: 5px 5px 50% 50% / 15% 15% 25% 25%;
    border: 3px solid var(--dark-sepia);
    border-top: none;
    box-shadow: inset 0 -10px 15px -10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 2;
}

/* Kum saati orta bağlantısı */
.hourglass::before {
    top: 0;
    height: 150px;
    z-index: 1;
}

/* Kum üst bölümde */
.hourglass-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 30px;
    background-color: var(--deep-gold);
    border-radius: 35% 35% 5% 5%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: drain-sand 3s ease-in infinite;
}

/* Kum alt bölümde birikiyor */
.hourglass-bottom::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 50px;
    height: 0;
    background-color: var(--deep-gold);
    border-radius: 5% 5% 35% 35%;
    transform: translateX(-50%);
    opacity: 0.8;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    animation: fill-sand 3s ease-out infinite;
}

/* Kum akışı */
.sand-stream {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 20px;
    background-color: var(--antique-gold);
    z-index: 3;
    opacity: 0.9;
    animation: stream-sand 3s linear infinite;
}

/* Ahşap stand detayları */
.hourglass::before {
    box-shadow: 0 0 0 3px var(--dark-sepia);
}

/* Kum animasyonları */
@keyframes drain-sand {
    0% {
        height: 30px;
        top: 50%;
    }
    85% {
        height: 5px;
        top: 80%;
    }
    100% {
        height: 5px;
        top: 80%;
    }
}

@keyframes fill-sand {
    0% {
        height: 2px;
    }
    85%, 100% {
        height: 30px;
    }
}

@keyframes stream-sand {
    0% {
        height: 0;
        top: 65px;
        opacity: 0;
    }
    15% {
        height: 20px;
        opacity: 0.9;
    }
    85% {
        height: 20px;
        opacity: 0.9;
    }
    100% {
        height: 0;
        top: 65px;
        opacity: 0;
    }
}

/* Karanlık tema uyarlaması */
body.dark-theme .hourglass-top,
body.dark-theme .hourglass-bottom {
    background-color: #32281e;
    border-color: #483c32;
}

body.dark-theme .hourglass::before,
body.dark-theme .hourglass::after {
    background-color: #483c32;
}

body.dark-theme .hourglass-top::after,
body.dark-theme .hourglass-bottom::after {
    background-color: var(--dark-accent);
}

body.dark-theme .sand-stream {
    background-color: var(--dark-accent);
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .hourglass {
        width: 80px;
        height: 130px;
    }
    
    .hourglass-top,
    .hourglass-bottom {
        height: 55px;
        width: 80px;
    }
    
    .hourglass::before {
        left: 37px;
    }
    
    .hourglass::after {
        left: 15px;
        width: 50px;
    }
    
    .sand-stream {
        top: 55px;
    }
}

@media (max-width: 480px) {
    .hourglass {
        width: 70px;
        height: 110px;
    }
    
    .hourglass-top,
    .hourglass-bottom {
        height: 45px;
        width: 70px;
    }
    
    .hourglass::before {
        left: 32px;
    }
    
    .hourglass::after {
        left: 10px;
        width: 50px;
    }
    
    .sand-stream {
        top: 45px;
    }
}
/* =================== 
   SCROLL INDICATOR
   =================== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--gold-gradient);
    transition: width 0.1s ease-out;
}

/* =================== 
   HEADER & NAVIGATION
   =================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0;
    z-index: 90;
    transition: background-color var(--transition-medium), box-shadow var(--transition-medium);
    background-color: rgba(242, 232, 201, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.dark-theme .main-header {
    background-color: rgba(30, 26, 21, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-round);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-medium);
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.site-title {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-sepia);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: color var(--transition-medium);
    letter-spacing: 1px;
    margin: 0;
}

body.dark-theme .site-title {
    color: var(--dark-text-primary);
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 100;
}

.menu-icon .bar1, .menu-icon .bar2, .menu-icon .bar3 {
    width: 100%;
    height: 3px;
    background-color: var(--dark-sepia);
    margin: 5px 0;
    transition: var(--transition-medium);
    border-radius: 3px;
}

body.dark-theme .menu-icon .bar1,
body.dark-theme .menu-icon .bar2,
body.dark-theme .menu-icon .bar3 {
    background-color: var(--dark-text-primary);
}

.menu-icon.active .bar1 {
    transform: translateY(8px) rotate(45deg);
}

.menu-icon.active .bar2 {
    opacity: 0;
}

.menu-icon.active .bar3 {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    position: relative;
    font-family: var(--ui-font);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    font-size: 0.9rem;
    opacity: 0.8;
}

body.dark-theme .nav-links a {
    color: var(--dark-text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-medium);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--deep-gold);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle-track {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: #d0c3a2;
    border-radius: 13px;
    margin: 0 8px;
    transition: background-color var(--transition-medium);
}

body.dark-theme .toggle-track {
    background-color: #2c261e;
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: var(--antique-gold);
    border-radius: 50%;
    transition: transform var(--transition-medium), background-color var(--transition-medium);
}

body.dark-theme .toggle-thumb {
    transform: translateX(24px);
    background-color: var(--dark-accent);
}

.theme-toggle i {
    color: var(--text-primary);
    font-size: 0.9rem;
}

body.dark-theme .theme-toggle i {
    color: var(--dark-text-primary);
}

.search-box {
    display: flex;
    align-items: center;
    position: relative;
    width: 200px;
}

.search-box input {
    width: 100%;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    font-family: var(--ui-font);
    font-size: 0.9rem;
    transition: var(--transition-medium);
}

.search-box input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 220px;
}

.search-box button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-box button:hover {
    color: var(--deep-gold);
}

body.dark-theme .search-box input {
    background-color: rgba(50, 44, 35, 0.5);
    color: var(--dark-text-primary);
}

body.dark-theme .search-box input:focus {
    background-color: rgba(50, 44, 35, 0.8);
}

body.dark-theme .search-box button {
    color: var(--dark-accent);
}

body.dark-theme .search-box button:hover {
    color: var(--antique-gold);
}

@media (max-width: 992px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .menu-icon {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        padding: 5rem 2rem;
        flex-direction: column;
        background-color: var(--parchment);
        box-shadow: var(--shadow-strong);
        transition: right var(--transition-slow);
        z-index: 90;
    }
    
    body.dark-theme .nav-links {
        background-color: var(--dark-background);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .search-box {
        display: none;
    }
}

/* =================== 
   GOLDEN TIMELINE
   =================== */
.golden-timeline {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    z-index: 80;
    backdrop-filter: blur(5px);
}

body.dark-theme .golden-timeline {
    background: linear-gradient(to right, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.2), rgba(184, 134, 11, 0.1));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.timeline-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}

.timeline-years {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 3rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.timeline-years::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.timeline-year {
    font-family: var(--heading-font);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    color: var(--dark-sepia);
    border-radius: 20px;
    transition: var(--transition-medium);
    white-space: nowrap;
    position: relative;
}

body.dark-theme .timeline-year {
    color: var(--dark-text-primary);
}

.timeline-year:hover {
    color: var(--deep-gold);
}

.timeline-year.active {
    color: var(--bright-gold);
    background: rgba(184, 134, 11, 0.2);
    box-shadow: var(--gold-shadow);
}

.timeline-year::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(184, 134, 11, 0);
    transition: var(--transition-medium);
}

.timeline-year.active::after {
    border-top: 5px solid rgba(184, 134, 11, 0.8);
}

.timeline-arrow {
    cursor: pointer;
    padding: 0.5rem;
    color: var(--dark-sepia);
    transition: var(--transition-fast);
    z-index: 1;
}

body.dark-theme .timeline-arrow {
    color: var(--dark-text-primary);
}

.timeline-arrow:hover {
    color: var(--deep-gold);
}

.timeline-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .golden-timeline {
        top: 60px;
    }
    
    .timeline-year {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
}

/* =================== 
   ERA DISPLAY
   =================== */
.era-display {
    margin-top: 110px;
    padding: 1.5rem 2rem;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    text-align: center;
}

body.dark-theme .era-display {
    background: linear-gradient(to right, rgba(184, 134, 11, 0.05), rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.05));
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.era-title {
    margin-bottom: 0.5rem;
}

.era-title h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-sepia);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

body.dark-theme .era-title h2 {
    color: var(--dark-text-primary);
}

.era-years {
    font-family: var(--secondary-heading-font);
    font-size: 1.1rem;
    color: var(--accent);
    font-style: italic;
}

body.dark-theme .era-years {
    color: var(--dark-accent);
}

.era-description {
    max-width: 800px;
    margin: 0 auto;
}

.era-description p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

body.dark-theme .era-description p {
    color: var(--dark-text-secondary);
}

@media (max-width: 768px) {
    .era-display {
        margin-top: 100px;
        padding: 1rem;
    }
    
    .era-title h2 {
        font-size: 1.6rem;
    }
    
    .era-description p {
        font-size: 1rem;
    }
}

/* =================== 
   HERO SECTION DÜZELTMESİ
   =================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url(https://via.placeholder.com/1920x1080);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 4rem;
    z-index: 1;
    padding: 0 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(92, 64, 51, 0.8) 0%, rgba(92, 64, 51, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    color: var(--parchment);
    gap: 3rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.animate-title {
    font-family: var(--heading-font);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.5s forwards;
    letter-spacing: 2px;
}

.animate-subtitle {
    font-family: var(--secondary-heading-font);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.8s forwards;
}

.hero-image {
    flex: 0 0 40%;
    position: relative;
    height: 500px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s 1s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-artifact {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.2);
    animation: float 6s ease-in-out infinite;
    background-color: var(--parchment);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(10px) rotate(-2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.artifact-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.artifact-2 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.artifact-3 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    left: 30%;
    animation-delay: 2s;
}

/* =================== 
   PUSULA (COMPASS) YENİ TASARIM - GELİŞTİRİLMİŞ VERSİYON
   =================== */
/* =================== 
   SADE AMA TARİHSEL PUSULA TASARIMI
   =================== */
.compass {
    position: absolute;
    width: 220px;
    height: 220px;
    top: 30%;
    right: 30%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1.5s;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(92, 64, 51, 0.25));
}

.compass-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Sade ama tarihsel arka plan */
    background-color: var(--parchment);
    border: 2px solid var(--deep-gold);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.15),
                inset 0 0 20px rgba(184, 134, 11, 0.05);
    overflow: hidden;
    transition: all var(--transition-medium);
}

body.dark-theme .compass-inner {
    background-color: #2c2620;
    border: 2px solid var(--dark-accent);
}

/* Minimal antik pusula çemberi */
.compass-inner::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0.5;
}

body.dark-theme .compass-inner::before {
    border: 1px solid var(--dark-accent);
    opacity: 0.4;
}

/* Pusula kağıt dokusu */
.compass-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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%3Cpath fill='%23704214' fill-opacity='0.03' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: -1;
}

/* Yön harfleri - dönem fontunu kullan */
.compass-directions {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: var(--heading-font);
    color: var(--dark-sepia);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
}

body.dark-theme .compass-directions {
    color: var(--dark-text-primary);
}

.compass-direction {
    position: absolute;
    transform: translate(-50%, -50%);
}

.direction-n {
    top: 12%;
    left: 50%;
}

.direction-e {
    top: 50%;
    right: 12%;
    transform: translate(0, -50%);
}

.direction-s {
    bottom: 12%;
    left: 50%;
    transform: translate(-50%, 0);
}

.direction-w {
    top: 50%;
    left: 12%;
    transform: translate(0, -50%);
}

/* Pusula çizgileri */
.compass-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.compass-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45%;
    height: 1px;
    background-color: var(--accent);
    opacity: 0.15;
    transform-origin: center left;
}

body.dark-theme .compass-line {
    background-color: var(--dark-accent);
    opacity: 0.2;
}

.compass-line:nth-child(1) { transform: translateY(-50%) rotate(0deg); }
.compass-line:nth-child(2) { transform: translateY(-50%) rotate(30deg); }
.compass-line:nth-child(3) { transform: translateY(-50%) rotate(60deg); }
.compass-line:nth-child(4) { transform: translateY(-50%) rotate(90deg); }
.compass-line:nth-child(5) { transform: translateY(-50%) rotate(120deg); }
.compass-line:nth-child(6) { transform: translateY(-50%) rotate(150deg); }

/* Pusula merkezi */
.compass-center {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--deep-gold);
    border: 2px solid var(--parchment);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 4;
}

body.dark-theme .compass-center {
    background: var(--dark-accent);
    border: 2px solid #2c2620;
}

/* Ana pusula ibresi */
.compass-arrow {
    position: absolute;
    width: 3px;
    height: 85px;
    background: linear-gradient(to bottom, var(--rusty-copper), var(--dark-sepia));
    transform-origin: center bottom;
    bottom: 50%;
    border-radius: 2px;
    animation: compass-rotate 12s linear infinite;
    z-index: 3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* İbre ucu */
.compass-arrow:after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid var(--rusty-copper);
}

/* İkinci ibre */
.compass-arrow-secondary {
    position: absolute;
    width: 2px;
    height: 65px;
    background: linear-gradient(to bottom, var(--deep-gold), var(--burnt-umber));
    transform-origin: center bottom;
    bottom: 50%;
    border-radius: 2px;
    transform: rotate(125deg);
    animation: compass-rotate-secondary 18s linear infinite;
    z-index: 2;
}

/* İbre animasyonu */
@keyframes compass-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* İkinci ibre için animasyon */
@keyframes compass-rotate-secondary {
    0% {
        transform: rotate(125deg);
    }
    100% {
        transform: rotate(485deg);
    }
}

/* Hafif glow efekti */
.compass-glow {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(ellipse at center, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: glow 6s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes glow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
}

/* Ek görsel iyileştirmeler için medya sorguları */
@media (max-width: 992px) {
    .compass {
        width: 180px;
        height: 180px;
    }
    
    .compass-arrow {
        height: 70px;
    }
    
    .compass-arrow-secondary {
        height: 55px;
    }
    
    .compass-directions {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .compass {
        width: 140px;
        height: 140px;
    }
    
    .compass-directions {
        font-size: 14px;
    }
    
    .compass-center {
        width: 10px;
        height: 10px;
    }
    
    .compass-arrow {
        height: 55px;
        width: 2px;
    }
    
    .compass-arrow-secondary {
        height: 45px;
    }
    
    .compass-arrow:after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 8px solid var(--rusty-copper);
    }
}

@media (max-width: 480px) {
    .compass {
        width: 110px;
        height: 110px;
        right: 25%;
    }
    
    .compass-directions {
        font-size: 12px;
    }
    
    .compass-center {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }
    
    .compass-arrow {
        height: 40px;
        width: 2px;
    }
    
    .compass-arrow-secondary {
        height: 30px;
        width: 1px;
    }
    
    .compass-arrow:after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 8px solid var(--rusty-copper);
    }
}

/* Floating Artifact bu kodda dokunulmadı, 
   sadece pusula tasarımı değiştirildi */

/* Floating Artifact Büyütme */
.floating-artifact {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.3);
    animation: float 6s ease-in-out infinite;
    background-color: var(--parchment);
}

.artifact-1 {
    width: 180px; /* Büyütüldü */
    height: 180px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.artifact-2 {
    width: 150px; /* Büyütüldü */
    height: 150px;
    top: 50%;
    right: 8%;
    animation-delay: 1s;
}

.artifact-3 {
    width: 130px; /* Büyütüldü */
    height: 130px;
    bottom: 8%;
    left: 25%;
    animation-delay: 2s;
}

/* Ek görsel iyileştirmeler için medya sorguları */
@media (max-width: 992px) {
    .compass {
        width: 200px;
        height: 200px;
    }
    
    .compass-directions {
        font-size: 24px;
    }
    
    .compass-direction.direction-ne,
    .compass-direction.direction-se,
    .compass-direction.direction-sw,
    .compass-direction.direction-nw {
        font-size: 18px;
    }
    
    .compass-arrow {
        height: 90px;
    }
    
    .compass-arrow-secondary {
        height: 65px;
    }
    
    .floating-artifact.artifact-1 {
        width: 160px;
        height: 160px;
    }
    
    .floating-artifact.artifact-2 {
        width: 130px;
        height: 130px;
    }
    
    .floating-artifact.artifact-3 {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .compass {
        width: 160px;
        height: 160px;
    }
    
    .compass-directions {
        font-size: 20px;
    }
    
    .compass-direction.direction-ne,
    .compass-direction.direction-se,
    .compass-direction.direction-sw,
    .compass-direction.direction-nw {
        font-size: 14px;
    }
    
    .compass-center {
        width: 20px;
        height: 20px;
    }
    
    .compass-arrow {
        height: 70px;
        width: 6px;
    }
    
    .compass-arrow-secondary {
        height: 50px;
        width: 6px;
    }
    
    .compass-arrow:after {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 14px solid var(--bright-gold);
    }
    
    .floating-artifact.artifact-1 {
        width: 140px;
        height: 140px;
    }
    
    .floating-artifact.artifact-2 {
        width: 120px;
        height: 120px;
    }
    
    .floating-artifact.artifact-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .compass {
        width: 120px;
        height: 120px;
        right: 25%;
    }
    
    .compass-directions {
        font-size: 16px;
    }
    
    .compass-direction.direction-ne,
    .compass-direction.direction-se,
    .compass-direction.direction-sw,
    .compass-direction.direction-nw {
        display: none; /* Çok küçük ekranlarda gizle */
    }
    
    .compass-center {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .compass-arrow {
        height: 55px;
        width: 4px;
    }
    
    .compass-arrow-secondary {
        height: 40px;
        width: 4px;
    }
    
    .compass-arrow:after {
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 10px solid var(--bright-gold);
    }
    
    .floating-artifact.artifact-1 {
        width: 100px;
        height: 100px;
    }
    
    .floating-artifact.artifact-2 {
        width: 80px;
        height: 80px;
    }
    
    .floating-artifact.artifact-3 {
        width: 70px;
        height: 70px;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 1.1s forwards;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--ui-font);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-medium);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
}

.cta-button i {
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button.primary {
    background-color: var(--deep-gold);
    color: var(--parchment);
}

.cta-button.primary:hover {
    background-color: var(--dark-sepia);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--parchment);
    border: 2px solid var(--parchment);
}

.cta-button.secondary:hover {
    background-color: var(--parchment);
    color: var(--dark-sepia);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: opacity var(--transition-medium);
    animation: fadeIn 1s 1.5s forwards;
    opacity: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .compass {
        right: 30%;
    }
}

@media (max-width: 768px) {
    .animate-title {
        font-size: 3rem;
    }
    
    .animate-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .floating-artifact.artifact-1 {
        width: 100px;
        height: 100px;
    }
    
    .floating-artifact.artifact-2 {
        width: 80px;
        height: 80px;
    }
    
    .floating-artifact.artifact-3 {
        width: 70px;
        height: 70px;
    }
    
    .compass {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .animate-title {
        font-size: 2.5rem;
    }
    
    .animate-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        height: 200px;
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--parchment);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--parchment);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-down {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--parchment);
    border-bottom: 2px solid var(--parchment);
    transform: rotate(45deg);
    margin: -6px 0;
    animation: arrow 1.5s infinite;
}

.arrow-down:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes arrow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .animate-title {
        font-size: 3rem;
    }
    
    .animate-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .animate-title {
        font-size: 2.5rem;
    }
    
    .animate-subtitle {
        font-size: 1.1rem;
    }
}

/* =================== 
   SECTION HEADING
   =================== */
.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-heading h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-sepia);
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    transition: color var(--transition-medium);
    letter-spacing: 1px;
}

body.dark-theme .section-heading h2 {
    color: var(--dark-text-primary);
}

.heading-decorator {
    height: 2px;
    flex: 1;
    max-width: 150px;
    background: linear-gradient(90deg, transparent, var(--deep-gold));
    opacity: 0.8;
}

.heading-decorator.right {
    background: linear-gradient(90deg, var(--deep-gold), transparent);
}

body.dark-theme .heading-decorator {
    background: linear-gradient(90deg, transparent, var(--dark-accent));
}

body.dark-theme .heading-decorator.right {
    background: linear-gradient(90deg, var(--dark-accent), transparent);
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .heading-decorator {
        max-width: 80px;
    }
}

/* =================== 
   TIMELINE SECTION
   =================== */
.timeline-section {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    min-height: 20px;
    margin: 0 auto;
}

.timeline-scroll-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--light-sepia);
    padding: 2rem 0;
}

.timeline-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.timeline-scroll-container::-webkit-scrollbar-track {
    background: var(--light-sepia);
    border-radius: 4px;
}

.timeline-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 4px;
}

body.dark-theme .timeline-scroll-container {
    scrollbar-color: var(--dark-accent) #32281e;
}

body.dark-theme .timeline-scroll-container::-webkit-scrollbar-track {
    background: #32281e;
}

body.dark-theme .timeline-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--dark-accent);
}

.timeline {
    display: flex;
    min-width: max-content;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--light-sepia), var(--accent), var(--light-sepia));
    border-radius: 2px;
}

body.dark-theme .timeline::before {
    background: linear-gradient(90deg, #32281e, var(--dark-accent), #32281e);
}

.timeline-item {
    position: relative;
    padding: 0 2rem;
    min-width: 250px;
    opacity: 0.7;
    transform: scale(0.95);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.timeline-item:hover {
    opacity: 1;
    transform: scale(1);
}

.timeline-marker {
    width: 24px;
    height: 24px;
    background-color: var(--deep-gold);
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 4px solid var(--parchment);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.3);
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: background-color var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
}

body.dark-theme .timeline-marker {
    border-color: var(--dark-background);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.3);
}

.timeline-item:hover .timeline-marker {
    background-color: var(--antique-gold);
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.4);
}

.timeline-year {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-sepia);
    margin-bottom: 0.5rem;
    text-align: center;
    transition: color var(--transition-medium);
}

body.dark-theme .timeline-year {
    color: var(--dark-text-primary);
}

.timeline-content {
    background-color: var(--parchment);
    padding: 1.5rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), background-color var(--transition-medium);
    border: 1px solid rgba(92, 64, 51, 0.1);
    backdrop-filter: blur(5px);
}

body.dark-theme .timeline-content {
    background-color: rgba(30, 26, 21, 0.8);
    border-color: rgba(230, 215, 185, 0.1);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--parchment);
    transition: border-bottom-color var(--transition-medium);
}

body.dark-theme .timeline-content::before {
    border-bottom-color: rgba(30, 26, 21, 0.8);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.timeline-content h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
}

body.dark-theme .timeline-content h3 {
    color: var(--dark-text-primary);
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color var(--transition-medium);
}

body.dark-theme .timeline-content p {
    color: var(--dark-text-secondary);
}

.read-more {
    font-family: var(--ui-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-gold);
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.read-more i {
    margin-left: 0.3rem;
    transition: transform var(--transition-fast);
}

.read-more:hover {
    color: var(--accent-light);
}

.read-more:hover i {
    transform: translateX(3px);
}

/* =================== 
   FEATURED SECTION
   =================== */
.featured-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 232, 201, 0.5);
    transition: background-color var(--transition-medium);
}

body.dark-theme .featured-section {
    background-color: rgba(30, 26, 21, 0.5);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background-color: var(--parchment);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), background-color var(--transition-medium);
    position: relative;
}

body.dark-theme .featured-card {
    background-color: rgba(30, 26, 21, 0.8);
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-card:hover .card-image img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(92, 64, 51, 0.7));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.featured-card:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: var(--parchment);
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.featured-card:hover .overlay i {
    transform: translateY(0);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
}

body.dark-theme .card-content h3 {
    color: var(--dark-text-primary);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color var(--transition-medium);
}

body.dark-theme .card-content p {
    color: var(--dark-text-secondary);
}

/* =================== 
   MAP SECTION
   =================== */
.map-section {
    padding: 5rem 1rem;
    position: relative;
}

.map-container {
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(92, 64, 51, 0.4), rgba(92, 64, 51, 0.6));
    z-index: 1;
}

.ancient-map {
    width: 100%;
    height: 100%;
    background-image: url('https://vemaps.com/uploads/img/large/tr-02.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    filter: sepia(30%);
    transition: filter var(--transition-medium);
}

body.dark-theme .ancient-map {
    filter: sepia(20%) brightness(0.8);
}

.map-marker {
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

.marker-point {
    width: 24px;
    height: 24px;
    background-color: var(--deep-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.3);
    transition: background-color var(--transition-medium), transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: var(--deep-gold);
    border-radius: 50%;
    animation: pulse-marker 2s infinite;
    opacity: 0;
    transform: scale(1);
}

@keyframes pulse-marker {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.map-marker:hover .marker-point {
    background-color: var(--antique-gold);
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.4);
}

.map-marker:hover .marker-pulse {
    opacity: 1;
}

.marker-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 200px;
    padding: 1rem;
    background-color: var(--parchment);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), transform var(--transition-medium), visibility var(--transition-medium), background-color var(--transition-medium);
    z-index: 3;
}

body.dark-theme .marker-info {
    background-color: rgba(30, 26, 21, 0.9);
}

.marker-info:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: var(--parchment) transparent transparent transparent;
    transition: border-color var(--transition-medium);
}

body.dark-theme .marker-info:after {
    border-color: rgba(30, 26, 21, 0.9) transparent transparent transparent;
}

.map-marker:hover .marker-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.marker-info h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
}

body.dark-theme .marker-info h4 {
    color: var(--dark-text-primary);
}

.marker-info p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
    transition: color var(--transition-medium);
}

body.dark-theme .marker-info p {
    color: var(--dark-text-secondary);
}

@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
    
    .marker-info {
        min-width: 150px;
    }
}

/* =================== 
   QUOTE SECTION - KART TASARIMI
   =================== */
.quote-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 232, 201, 0.3);
    transition: background-color var(--transition-medium);
}

body.dark-theme .quote-section {
    background-color: rgba(30, 26, 21, 0.3);
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0;
}

/* Yeni kart tasarımı */
.quote-card {
    background-color: var(--parchment);
    border-radius: var(--radius-large);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: all var(--transition-medium);
}

body.dark-theme .quote-card {
    background-color: rgba(30, 26, 21, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.3);
}

/* Alternatif parşömen dokusu */
.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23704214' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

/* Kenar süslemeleri */
.quote-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid transparent;
    border-image: linear-gradient(45deg, rgba(184, 134, 11, 0.3), rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.3)) 1;
    pointer-events: none;
    z-index: 1;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--deep-gold);
    margin-bottom: 1.5rem;
    transition: color var(--transition-medium);
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

body.dark-theme .quote-icon {
    color: var(--dark-accent);
}

blockquote {
    font-family: var(--secondary-heading-font);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
    position: relative;
    z-index: 2;
}

body.dark-theme blockquote {
    color: var(--dark-text-primary);
}

.quote-author {
    font-family: var(--ui-font);
    font-size: 1.2rem;
    color: var(--deep-gold);
    transition: color var(--transition-medium);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

body.dark-theme .quote-author {
    color: var(--dark-accent);
}

.quote-change {
    background: none;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--dark-sepia);
    font-size: 1.2rem;
    transition: background-color var(--transition-medium), color var(--transition-medium), transform var(--transition-fast);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

body.dark-theme .quote-change {
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--dark-text-primary);
}

.quote-change:hover {
    background-color: var(--deep-gold);
    color: var(--parchment);
    transform: rotate(180deg);
}

/* Sağ ve sol süslemeler */
.quote-decoration {
    position: absolute;
    width: 30px;
    height: 80%;
    top: 10%;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    z-index: 0;
}

.quote-decoration.left {
    left: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='60' viewBox='0 0 24 60' fill='none'%3E%3Cpath d='M12 0C12 11 12 22 12 33M12 60V33M12 33C5 33 0 27 0 20C0 13 5 7 12 7' stroke='%23704214' stroke-width='2'/%3E%3C/svg%3E");
}

.quote-decoration.right {
    right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='60' viewBox='0 0 24 60' fill='none'%3E%3Cpath d='M12 0C12 11 12 22 12 33M12 60V33M12 33C19 33 24 27 24 20C24 13 19 7 12 7' stroke='%23704214' stroke-width='2'/%3E%3C/svg%3E");
}

body.dark-theme .quote-decoration {
    opacity: 0.1;
}

@media (max-width: 768px) {
    .quote-card {
        padding: 2rem 1.5rem;
    }
    
    blockquote {
        font-size: 1.5rem;
    }
    
    .quote-author {
        font-size: 1rem;
    }
    
    .quote-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .quote-card {
        padding: 1.5rem 1rem;
    }
    
    blockquote {
        font-size: 1.3rem;
    }
}

body.dark-theme .quote-icon {
    color: var(--dark-accent);
}

blockquote {
    font-family: var(--secondary-heading-font);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
}

body.dark-theme blockquote {
    color: var(--dark-text-primary);
}

.quote-author {
    font-family: var(--ui-font);
    font-size: 1.2rem;
    color: var(--deep-gold);
    transition: color var(--transition-medium);
}

.quote-change {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--dark-sepia);
    font-size: 1.2rem;
    transition: background-color var(--transition-medium), color var(--transition-medium), transform var(--transition-fast);
    margin: 2rem auto 0;
}

body.dark-theme .quote-change {
    background-color: rgba(184, 134, 11, 0.1);
    color: var(--dark-text-primary);
}

.quote-change:hover {
    background-color: var(--deep-gold);
    color: var(--parchment);
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    blockquote {
        font-size: 1.5rem;
    }
    
    .quote-author {
        font-size: 1rem;
    }
}

/* =================== 
   NEWSLETTER SECTION
   =================== */
.newsletter-section {
    padding: 5rem 1rem;
    position: relative;
}

.newsletter-parchment {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--parchment);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background-color var(--transition-medium);
    border: 1px solid rgba(92, 64, 51, 0.1);
}

body.dark-theme .newsletter-parchment {
    background-color: rgba(30, 26, 21, 0.8);
    border-color: rgba(230, 215, 185, 0.1);
}

.newsletter-parchment:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23704214' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: -1;
}

.newsletter-parchment h2 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
}

body.dark-theme .newsletter-parchment h2 {
    color: var(--dark-text-primary);
}

.newsletter-parchment p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
    transition: color var(--transition-medium);
}

body.dark-theme .newsletter-parchment p {
    color: var(--dark-text-secondary);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: box-shadow var(--transition-medium);
}

.form-group:focus-within {
    box-shadow: var(--shadow-strong);
}

.form-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    background-color: white;
    font-family: var(--ui-font);
    font-size: 1rem;
    color: var(--text-primary);
    transition: background-color var(--transition-medium), color var(--transition-medium);
}

body.dark-theme .form-group input {
    background-color: rgba(50, 44, 35, 0.8);
    color: var(--dark-text-primary);
}

.form-group input::placeholder {
    color: rgba(92, 64, 51, 0.5);
    transition: color var(--transition-medium);
}

body.dark-theme .form-group input::placeholder {
    color: rgba(230, 215, 185, 0.5);
}

.form-group input:focus {
    outline: none;
}

.submit-btn {
    background-color: var(--deep-gold);
    color: white;
    border: none;
    padding: 0 1.5rem;
    font-family: var(--ui-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color var(--transition-medium);
}

.submit-btn:hover {
    background-color: var(--accent-dark);
}

.submit-btn i {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .newsletter-parchment {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-parchment h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-parchment p {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        width: 100%;
        border-radius: var(--radius-medium) var(--radius-medium) 0 0;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        border-radius: 0 0 var(--radius-medium) var(--radius-medium);
    }
}

/* =================== 
   FOOTER
   =================== */
footer {
    background-color: var(--footer-bg);
    color: var(--parchment);
    padding: 5rem 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-branding {
    flex: 1 1 300px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-round);
    overflow: hidden;
    margin-bottom: 1rem;
}

.footer-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--parchment);
}

.footer-branding p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(242, 232, 201, 0.8);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: rgba(242, 232, 201, 0.1);
    border-radius: var(--radius-round);
    color: var(--parchment);
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--deep-gold);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 2 1 600px;
}

.link-group {
    flex: 1 1 160px;
}

.link-group h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--accent-light);
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-group a {
    font-family: var(--ui-font);
    font-size: 0.95rem;
    color: rgba(242, 232, 201, 0.8);
    transition: color var(--transition-fast), transform var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.link-group a:hover {
    color: var(--deep-gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(242, 232, 201, 0.1);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(242, 232, 201, 0.6);
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    font-size: 0.9rem;
    color: rgba(242, 232, 201, 0.6);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--deep-gold);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-branding {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: space-between;
    }
    
    .link-group {
        flex: 1 1 140px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =================== 
   BACK TO TOP BUTTON
   =================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    background: var(--gold-gradient);
    color: var(--dark-sepia);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    z-index: 50;
}

body.dark-theme .back-to-top {
    color: var(--dark-text-primary);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    box-shadow: var(--gold-shadow);
    transform: translateY(-5px);
}

/* =================== 
   ANIMATIONS
   =================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Animations for AOS-like functionality (will be implemented in JS) */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate="fade-in"] {
    transform: translateY(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0) scale(1);
}
/* Etkileşimli Zaman Çizelgesi Stilleri */
.timeline-section {
    margin: 3rem 0;
    padding: 0;
}

.timeline-container {
    background-color: rgba(20, 16, 10, 0.95);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-filters {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #e6d7b9;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.filter-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.category-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.category-dot.political { background-color: #b87333; }
.category-dot.sports { background-color: #2196F3; }
.category-dot.scientific { background-color: #FF9800; }
.category-dot.cultural { background-color: #9C27B0; }
.category-dot.women { background-color: #E91E63; }
.category-dot.economic { background-color: #4CAF50; }
.category-dot.military { background-color: #795548; }
.category-dot.disaster { background-color: #F44336; }

.year-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.year-range {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.year-range label {
    color: #e6d7b9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.year-range select {
    background-color: rgba(30, 25, 20, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #e6d7b9;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

.year-range select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.year-range select:hover {
    border-color: #d4af37;
    transform: translateY(-2px);
}

.gold-button {
    background: linear-gradient(to bottom, #d4af37, #aa8c2c);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.gold-button:hover {
    background: linear-gradient(to bottom, #e5c04e, #bb9d3d);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.4);
}

.gold-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.view-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.view-btn {
    background-color: rgba(30, 25, 20, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #e6d7b9;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.view-btn:hover {
    background-color: rgba(50, 40, 30, 0.8);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.view-btn.active {
    background: linear-gradient(to bottom, #d4af37, #aa8c2c);
    color: #000;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Zaman Çizelgesi Görselleştirme */
.timeline-visualization {
    height: 450px;
    background-color: rgba(50, 40, 30, 0.7);
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Çizgi Görünümü */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5d4b3a, #d4af37, #5d4b3a);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Olay Noktaları */
.event-point {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s, z-index 0.1s;
    z-index: 2;
}

.event-point:hover {
    transform: scale(1.3);
    z-index: 3;
}

.event-marker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 8px;
}

.event-label {
    font-size: 1rem;
    font-weight: 600;
    color: #e6d7b9;
    text-align: center;
    width: 120px;
    margin-left: -50px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 8px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.event-point:hover .event-label {
    opacity: 1;
    transform: translateY(0);
}

/* Izgara Görünümü */
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    height: 100%;
    overflow-y: auto;
}

.grid-event {
    background-color: rgba(30, 25, 20, 0.9);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 5px solid;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.grid-event:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.2);
}

.grid-event-year {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.grid-event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e6d7b9;
    margin-bottom: 0.8rem;
}

.grid-event-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bbb;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

/* Harita Görünümü */
.timeline-map {
    width: 100%;
    height: 100%;
    background-image: url('https://vemaps.com/uploads/img/large/tr-02.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    filter: sepia(30%) brightness(0.7);
}

.map-event {
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.map-marker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s;
}

.map-marker:hover {
    transform: scale(1.5);
}

/* Lejant */
.timeline-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    background-color: rgba(30, 25, 20, 0.7);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.legend-label {
    font-size: 1rem;
    color: #e6d7b9;
    font-weight: 500;
}

/* Olay Popup */
.event-popup {
    position: absolute;
    background-color: rgba(20, 16, 10, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    width: 350px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s, transform 0.4s;
    transform: translateY(10px);
}

.event-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(30, 25, 20, 0.8);
    border-radius: 10px 10px 0 0;
}

.popup-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #d4af37;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-close {
    background: none;
    border: none;
    color: #e6d7b9;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s, transform 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    color: #d4af37;
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.1);
}

.popup-content {
    padding: 1.5rem;
}

.popup-date {
    font-weight: 600;
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.popup-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 0;
}

.popup-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 1rem;
}

.popup-category {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.popup-category .category-dot {
    width: 12px;
    height: 12px;
}

.category-name {
    font-size: 1rem;
    color: #e6d7b9;
}

.popup-link {
    color: #d4af37;
    font-size: 1.05rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s, transform 0.3s;
    padding: 0.5rem 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 6px;
}

.popup-link:hover {
    color: #e5c04e;
    transform: translateX(5px);
    background-color: rgba(212, 175, 55, 0.2);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .timeline-filters {
        gap: 1.5rem;
    }
    
    .year-range {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .timeline-visualization {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .timeline-container {
        padding: 1.5rem;
    }
    
    .filter-item {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .year-range label {
        font-size: 1.1rem;
    }
    
    .year-range select {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .gold-button {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
    
    .timeline-visualization {
        height: 350px;
    }
    
    .event-popup {
        width: 300px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .timeline-container {
        padding: 1rem;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-item {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    
    .timeline-visualization {
        height: 300px;
    }
    
    .event-popup {
        width: 280px;
    }
    
    .popup-title {
        font-size: 1.1rem;
    }
    
    .popup-description {
        font-size: 0.9rem;
    }
}
/* =================== 
   KİŞİLER SAYFASI ÖZEL STİLLERİ
   =================== */

/* Galeri Bölümü Stilleri */
.gallery-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 232, 201, 0.3);
    transition: background-color var(--transition-medium);
}

body.dark-theme .gallery-section {
    background-color: rgba(30, 26, 21, 0.3);
}

.gallery-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.filter-btn {
    padding: 0.7rem 1.2rem;
    background-color: rgba(92, 64, 51, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: var(--radius-medium);
    color: var(--dark-sepia);
    font-family: var(--ui-font);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-medium);
}

body.dark-theme .filter-btn {
    background-color: rgba(30, 26, 21, 0.5);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--dark-text-primary);
}

.filter-btn:hover {
    background-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.filter-btn.active {
    background-color: var(--deep-gold);
    color: var(--parchment);
    border-color: var(--deep-gold);
    box-shadow: var(--gold-shadow);
}

.search-filter {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-filter input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--radius-medium);
    background-color: rgba(255, 255, 255, 0.8);
    font-family: var(--ui-font);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-medium);
}

body.dark-theme .search-filter input {
    background-color: rgba(30, 26, 21, 0.7);
    border-color: rgba(184, 134, 11, 0.4);
    color: var(--dark-text-primary);
}

.search-filter input:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.search-filter button {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.search-filter button:hover {
    color: var(--deep-gold);
}

body.dark-theme .search-filter button {
    color: var(--dark-accent);
}

body.dark-theme .search-filter button:hover {
    color: var(--antique-gold);
}

.view-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.view-btn {
    background-color: rgba(92, 64, 51, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
    color: var(--dark-sepia);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-size: 1rem;
}

body.dark-theme .view-btn {
    background-color: rgba(30, 26, 21, 0.5);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--dark-text-primary);
}

.view-btn:hover {
    background-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.view-btn.active {
    background-color: var(--deep-gold);
    color: var(--parchment);
    border-color: var(--deep-gold);
    box-shadow: var(--gold-shadow);
}

/* Galeri Konteyneri */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Grid Görünümü */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    display: none;
}

.gallery-grid.active-view {
    display: grid;
}

/* Masonry Görünümü */
.gallery-masonry {
    column-count: 3;
    column-gap: 2rem;
    display: none;
}

.gallery-masonry.active-view {
    display: block;
}

@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
    }
}

/* Timeline Görünümü */
.gallery-timeline {
    display: none;
}

.gallery-timeline.active-view {
    display: block;
}

/* Galeri Öğeleri */
.gallery-item {
    background-color: var(--parchment);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), background-color var(--transition-medium);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    break-inside: avoid; /* Masonry için */
    margin-bottom: 2rem; /* Masonry için */
}

body.dark-theme .gallery-item {
    background-color: rgba(30, 26, 21, 0.8);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
}

.gallery-info h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
    font-family: var(--secondary-heading-font);
    font-style: italic;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-round);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.action-btn:hover {
    background-color: var(--deep-gold);
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.gallery-caption {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-caption h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
}

body.dark-theme .gallery-caption h4 {
    color: var(--dark-text-primary);
}

.gallery-caption p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 1rem;
    flex-grow: 1;
    transition: color var(--transition-medium);
}

body.dark-theme .gallery-caption p {
    color: var(--dark-text-secondary);
}

.gallery-category {
    font-family: var(--ui-font);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(184, 134, 11, 0.1);
    border-radius: 20px;
    align-self: flex-start;
    transition: all var(--transition-medium);
}

body.dark-theme .gallery-category {
    color: var(--dark-accent);
    background-color: rgba(184, 134, 11, 0.15);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--deep-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: var(--radius-round);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-medium);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--deep-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-details {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    color: white;
    border-radius: 0 0 var(--radius-medium) var(--radius-medium);
}

.lightbox-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lightbox-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 800px;
}

.lightbox-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.lightbox-actions {
    display: flex;
    gap: 1rem;
}

.lightbox-download,
.lightbox-share {
    padding: 0.7rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: var(--radius-medium);
    color: white;
    font-family: var(--ui-font);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
}

.lightbox-download:hover,
.lightbox-share:hover {
    background-color: var(--deep-gold);
    transform: translateY(-3px);
}

/* Sayfalama */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 1rem;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: rgba(92, 64, 51, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
    color: var(--dark-sepia);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

body.dark-theme .pagination-btn {
    background-color: rgba(30, 26, 21, 0.5);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--dark-text-primary);
}

.pagination-btn:hover {
    background-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-3px);
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: rgba(92, 64, 51, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.2);
    color: var(--dark-sepia);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-family: var(--ui-font);
    font-weight: 500;
}

body.dark-theme .page-number {
    background-color: rgba(30, 26, 21, 0.5);
    border-color: rgba(184, 134, 11, 0.3);
    color: var(--dark-text-primary);
}

.page-number:hover {
    background-color: rgba(184, 134, 11, 0.2);
    transform: translateY(-3px);
}

.page-number.active {
    background-color: var(--deep-gold);
    color: var(--parchment);
    border-color: var(--deep-gold);
    box-shadow: var(--gold-shadow);
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .lightbox-image {
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.2rem;
    }
    
    .gallery-caption h4 {
        font-size: 1.1rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-title {
        font-size: 1.3rem;
    }
    
    .lightbox-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .gallery-actions {
        gap: 0.5rem;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
    }
    
    .lightbox-content {
        width: 95%;
        height: 95%;
    }
    
    .lightbox-details {
        padding: 1rem;
    }
    
    .lightbox-title {
        font-size: 1.2rem;
    }
    
    .lightbox-description {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .lightbox-meta {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .lightbox-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .pagination-numbers {
        gap: 0.3rem;
    }
    
    .page-number, 
    .pagination-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
/* =================== 
   İLETİŞİM SAYFASI ÖZEL STİLLERİ
   =================== */

/* Hero Section Düzenlemesi */
.contact-hero {
    background-image: url('/placeholder.svg?height=1920&width=1080');
    background-position: center;
}

.contact-main {
    padding: 0;
}

/* İletişim Formu Bölümü */
.contact-form-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 232, 201, 0.3);
    transition: background-color var(--transition-medium);
}

body.dark-theme .contact-form-section {
    background-color: rgba(30, 26, 21, 0.3);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    position: relative;
}

.form-container {
    flex: 1;
    position: relative;
    z-index: 2;
}

.parchment-form {
    background-color: var(--parchment);
    border-radius: var(--radius-large);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: all var(--transition-medium);
}

body.dark-theme .parchment-form {
    background-color: rgba(30, 26, 21, 0.8);
    border-color: rgba(184, 134, 11, 0.3);
}

/* Parşömen dokusu */
.parchment-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23704214' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

/* Kenar süslemeleri */
.parchment-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid transparent;
    border-image: linear-gradient(45deg, rgba(184, 134, 11, 0.3), rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.3)) 1;
    pointer-events: none;
    z-index: 1;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--ui-font);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-sepia);
    transition: color var(--transition-medium);
}

body.dark-theme .form-group label {
    color: var(--dark-text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--radius-medium);
    background-color: rgba(255, 255, 255, 0.8);
    font-family: var(--ui-font);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-medium);
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
    background-color: rgba(30, 26, 21, 0.7);
    border-color: rgba(184, 134, 11, 0.4);
    color: var(--dark-text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.submit-button,
.reset-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-medium);
    font-family: var(--ui-font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-medium);
}

.submit-button {
    background-color: var(--deep-gold);
    color: white;
    flex: 2;
    justify-content: center;
}

.submit-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.reset-button {
    background-color: rgba(92, 64, 51, 0.1);
    color: var(--dark-sepia);
    flex: 1;
    justify-content: center;
}

body.dark-theme .reset-button {
    background-color: rgba(30, 26, 21, 0.5);
    color: var(--dark-text-primary);
}

.reset-button:hover {
    background-color: rgba(92, 64, 51, 0.2);
    transform: translateY(-3px);
}

/* Form Dekorasyonu */
.form-decoration {
    flex: 0 0 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quill-decoration,
.ink-decoration,
.seal-decoration {
    position: absolute;
    transition: transform var(--transition-medium);
}

.quill-decoration {
    top: 10%;
    right: 0;
    transform: rotate(15deg);
}

.ink-decoration {
    top: 40%;
    left: 0;
}

.seal-decoration {
    bottom: 10%;
    right: 20%;
    transform: rotate(-10deg);
}

.form-decoration:hover .quill-decoration {
    transform: rotate(20deg) translateY(-10px);
}

.form-decoration:hover .ink-decoration {
    transform: translateY(-5px);
}

.form-decoration:hover .seal-decoration {
    transform: rotate(-15deg) translateY(-8px);
}

/* Form Başarı Mesajı */
.form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--parchment);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 10;
}

body.dark-theme .form-success-message {
    background-color: rgba(30, 26, 21, 0.9);
}

.form-success-message.active {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.form-success-message h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--dark-sepia);
    margin-bottom: 1rem;
}

body.dark-theme .form-success-message h3 {
    color: var(--dark-text-primary);
}

.form-success-message p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

body.dark-theme .form-success-message p {
    color: var(--dark-text-secondary);
}

.new-message-button {
    padding: 1rem 2rem;
    background-color: var(--deep-gold);
    color: white;
    border: none;
    border-radius: var(--radius-medium);
    font-family: var(--ui-font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.new-message-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* İletişim Bilgileri Bölümü */
.contact-info-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 232, 201, 0.1);
    transition: background-color var(--transition-medium);
}

body.dark-theme .contact-info-section {
    background-color: rgba(30, 26, 21, 0.1);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background-color: var(--parchment);
    border-radius: var(--radius-medium);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
    border: 1px solid rgba(184, 134, 11, 0.2);
}

body.dark-theme .info-card {
    background-color: rgba(30, 26, 21, 0.8);
    border-color: rgba(184, 134, 11, 0.3);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--dark-sepia);
}

body.dark-theme .info-icon {
    color: var(--dark-text-primary);
}

.info-card h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    color: var(--dark-sepia);
    margin-bottom: 1rem;
}

body.dark-theme .info-card h3 {
    color: var(--dark-text-primary);
}

.info-card p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
}

body.dark-theme .info-card p {
    color: var(--dark-text-secondary);
}

/* Sosyal Medya Bağlantıları */
.social-connect {
    text-align: center;
    margin-top: 3rem;
}

.social-connect h3 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: var(--dark-sepia);
    margin-bottom: 1.5rem;
}

body.dark-theme .social-connect h3 {
    color: var(--dark-text-primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-medium);
}

.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: var(--shadow-strong);
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

/* SSS Bölümü */
.faq-section {
    padding: 5rem 1rem;
    background-color: rgba(242, 232, 201, 0.3);
    transition: background-color var(--transition-medium);
}

body.dark-theme .faq-section {
    background-color: rgba(30, 26, 21, 0.3);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--parchment);
    border-radius: var(--radius-medium);
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: all var(--transition-medium);
}

body.dark-theme .faq-item {
    background-color: rgba(30, 26, 21, 0.8);
    border-color: rgba(184, 134, 11, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-medium);
}

.faq-question:hover {
    background-color: rgba(184, 134, 11, 0.1);
}

.faq-question h3 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--dark-sepia);
    margin: 0;
}

body.dark-theme .faq-question h3 {
    color: var(--dark-text-primary);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--deep-gold);
    transition: transform var(--transition-medium);
}

.faq-icon .fa-minus {
    display: none;
}

.faq-item.active .faq-icon .fa-plus {
    display: none;
}

.faq-item.active .faq-icon .fa-minus {
    display: block;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

body.dark-theme .faq-answer p {
    color: var(--dark-text-secondary);
}


/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .form-decoration {
        display: none;
    }
    
    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .parchment-form {
        padding: 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .parchment-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .submit-button, 
    .reset-button {
        width: 100%;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
/* Kategoriler Bölümü Stilleri */
.categories-section {
    background-color: rgba(30, 26, 21, 0.95);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.category-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-row:last-child {
    margin-bottom: 0;
}

.category-item {
    background: linear-gradient(145deg, rgba(30, 26, 21, 0.8), rgba(50, 40, 30, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-medium);
    padding: 2rem;
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.category-item:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--dark-sepia);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    transition: all var(--transition-medium);
}

.category-item:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.category-item h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--antique-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.category-item p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    color: var(--dark-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.category-link {
    font-family: var(--heading-font);
    font-size: 1rem;
    color: var(--antique-gold);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--antique-gold);
    border-radius: 30px;
    transition: all var(--transition-medium);
    letter-spacing: 1px;
    display: inline-block;
}

.category-link:hover {
    background-color: var(--antique-gold);
    color: var(--dark-sepia);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .category-row {
        gap: 1.5rem;
    }
    
    .category-item {
        max-width: 280px;
        padding: 1.8rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .category-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .category-item {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .category-item {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .category-item h3 {
        font-size: 1.3rem;
    }
    
    .category-item p {
        font-size: 1rem;
    }
}

/* Newsletter Message Styles */
.newsletter-message {
    display: none;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Gallery Fullscreen Styles */
.gallery-full-image {
    transition: transform 0.3s ease;
}

.gallery-full-image:hover {
    transform: scale(1.02);
}

.image-zoom-controls {
    z-index: 10;
}

.image-zoom-controls button {
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.image-zoom-controls button:hover {
    transform: scale(1.1);
}