/* Font tanımlamaları */
@font-face {
    font-family: "monument_extendedregular";
    src: url("https://www.yudiz.com/codepen/photography-banner/monumentextended-regular.woff2")
          format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Extenda Trial 20 Micro";
    src: url("https://www.yudiz.com/codepen/photography-banner/Extenda-20Micro.woff2")
          format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Extenda Trial 30 Deca";
    src: url("https://www.yudiz.com/codepen/photography-banner/Extenda-30Deca.woff2")
          format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Renk değişkenleri */
:root {
    --primary-beige: #E0D0C0;     /* Daha parlak bir bej tonu */
    --light-beige: #FFF5EE;       /* Daha açık ve canlı bej */
    --warm-brown: #A69080;        /* Daha sıcak kahverengi */
    --cinnamon: #7D574B;          /* Daha canlı tarçın rengi */
    --warm-gray: #C8B8A8;         /* Daha sıcak gri tonu */
    --stone-gray: #8D7D72;        /* Daha canlı taş grisi */
    --dark-brown: #382E28;        /* Daha derin kahverengi */
    --turkish-red: rgba(240, 20, 30, 0.15);
    --turkish-red-dark: rgba(210, 35, 60, 0.2);
    --turkish-red-light: rgba(240, 20, 30, 0.1);
    --petal-border: var(--primary-beige);
    --petal-gradient-start: var(--warm-brown);
    --petal-gradient-end: var(--cinnamon);
}

/* Temel stiller */
body,
html {
    overflow-x: hidden !important;
    margin: 0;
    background-color: var(--dark-brown);
}

::selection {
    background-color: rgba(210, 180, 140, 0.2);
    color: var(--light-beige);
}

/* Header Styles */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background-color: transparent;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo .brand {
    color: var(--light-beige);
    font-family: "monument_extendedregular";
    font-size: 20px;
    letter-spacing: 1.8px;
}

.logo .sub-brand {
    color: var(--primary-beige);
    font-family: "monument_extendedregular";
    font-size: 20px;
    letter-spacing: 1.8px;
}

/* Navigation Styles */
.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    color: var(--light-beige);
    text-decoration: none;
    font-family: "monument_extendedregular";
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: var(--primary-beige);
}

/* Rezervasyon Button */
.contact-btn {
    color: var(--primary-beige) !important;
    padding: 8px 16px;
    border: 1px solid var(--primary-beige);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-beige);
    color: var(--dark-brown) !important;
}

/* Dil değiştirme butonu */
.lang-switch {
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: "monument_extendedregular";
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--light-beige);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn:hover {
    color: var(--primary-beige);
}

.lang-btn .current-lang {
    color: var(--primary-beige);
    font-weight: bold;
}

.lang-btn .divider {
    opacity: 0.5;
}

.lang-btn .other-lang {
    opacity: 0.7;
}

/* Preloader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    color: var(--primary-beige);
    font-family: "monument_extendedregular";
    font-size: 32px;
    letter-spacing: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.loader-text span {
    opacity: 0;
    transform: translateY(20px);
}

.loader-text span:first-child {
    animation: fadeInUp 0.5s ease forwards;
}

.loader-text .pension {
    color: var(--warm-brown);
    font-size: 24px;
    letter-spacing: 6px;
    animation: fadeInUp 0.5s ease forwards 0.2s;
}

.progress-bar {
    width: 200px;
    height: 2px;
    background-color: rgba(213, 197, 181, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-beige);
    animation: progress 1.5s ease forwards;
}

/* Animasyonlar */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    to {
        width: 100%;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .logo .brand,
    .logo .sub-brand {
        font-size: 20px;
    }
    
    .nav ul li a {
        font-size: 11px;
    }
}

/* Scroll durumunda header görünümü */
.header.scrolled {
    background-color: rgba(62, 39, 35, 0.9);
    backdrop-filter: blur(10px);
}

/* Hero Section Yeni Stiller */
.about-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 36, 31, 0.95),
        rgba(45, 36, 31, 0.85)
    );
}

.hero-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 40px;
    height: calc(100vh - 160px);
    padding: 0 40px;
    position: relative;
}

/* Dekoratif Sol Alan */
.decorative-left {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.circle-pattern {
    width: 100px;
    height: 120px;
    position: relative;
    opacity: 0;
}

.building-line {
    position: absolute;
    background-color: var(--primary-beige);
    opacity: 0;
    transform-origin: center;
}

/* Bina çizgileri */
.building-line.vertical-left,
.building-line.vertical-right {
    width: 2px;
    height: 0;
    bottom: 0;
}

.building-line.vertical-left { left: 0; }
.building-line.vertical-right { right: 0; }

.building-line.horizontal {
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
}

/* Pencereler */
.window {
    position: absolute;
    width: 20px;
    height: 24px;
    opacity: 0;
    border: 1px solid var(--primary-beige);
    background: rgba(213, 197, 181, 0.05);
    overflow: hidden;
}

.window-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    border: 1px solid var(--primary-beige);
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.window-1 { left: 15px; bottom: 60px; }
.window-2 { right: 15px; bottom: 60px; }
.window-3 { left: 15px; bottom: 90px; }
.window-4 { right: 15px; bottom: 90px; }

/* Kapı ve Tabela */
.door-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 45px;
    opacity: 0;
}

.door {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(213, 197, 181, 0.1);
    border: 1px solid var(--primary-beige);
}

.door-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 90%;
    border: 1px solid var(--primary-beige);
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.door-handle {
    position: absolute;
    right: 4px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary-beige);
    border-radius: 50%;
}

.sign {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 35px;
    opacity: 0;
    overflow: hidden;
}

.sign-border {
    position: absolute;
    background-color: var(--primary-beige);
    opacity: 0;
}

.sign-border-top,
.sign-border-bottom {
    height: 2px;
    width: 0;
    left: 0;
}

.sign-border-top { top: 0; }
.sign-border-bottom { bottom: 0; }

.sign-border-left,
.sign-border-right {
    width: 2px;
    height: 0;
    top: 0;
}

.sign-border-left { left: 0; }
.sign-border-right { right: 0; }

.sign-background {
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: var(--primary-beige);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
}

.sign-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    box-sizing: border-box;
    z-index: 2;
}

.sign-text,
.sign-text-small {
    opacity: 0;
    transform: translateY(10px);
    color: var(--dark-brown);
    font-family: "monument_extendedregular";
}

.sign-text {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.sign-text-small {
    font-size: 8px;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Sallanma animasyonu */
@keyframes signWave {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) rotate(1.5deg);
    }
    75% {
        transform: translateX(-50%) rotate(-1.5deg);
    }
}

/* Aktif sallanma sınıfı */
.sign.waving {
    animation: signWave 4s ease-in-out infinite;
}

/* Çatı güncellemesi */
.roof {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 25px solid var(--primary-beige);
    opacity: 0;
}

.line-pattern {
    height: 200px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-beige),
        transparent
    );
    margin: 0 auto;
}

/* Ana İçerik */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

/* Dekoratif Sağ Alan */
.decorative-right {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: var(--primary-beige);
    font-family: "monument_extendedregular";
    font-size: 14px;
    letter-spacing: 4px;
    opacity: 0.6;
    transform: rotate(180deg);
    margin-bottom: 40px;
}

.dot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 60px;
    height: 60px;
}

.dot-grid::before,
.dot-grid::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--primary-beige);
    border-radius: 50%;
    opacity: 0.4;
}

/* Dot grid pozisyonları için */
.dot-grid::before { top: 0; right: 0; }
.dot-grid::after { bottom: 0; left: 0; }

/* Responsive Düzenlemeler */
@media screen and (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 80px 1fr 80px;
        gap: 20px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .decorative-left,
    .decorative-right {
        display: none;
    }

    .hero-content {
        padding: 20px;
    }
}

/* Animasyon için yeni sınıflar */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mevcut hero-content içindeki stil güncellemeleri */
.hero-content h1 {
    margin: 40px 0 24px;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-beige);
    opacity: 0.4;
}

.hero-content p {
    max-width: 600px;
    position: relative;
    padding: 0 20px;
}

.hero-content p::before,
.hero-content p::after {
    content: '"';
    position: absolute;
    font-size: 40px;
    color: var(--primary-beige);
    opacity: 0.3;
    font-family: serif;
}

.hero-content p::before {
    left: -10px;
    top: -20px;
}

.hero-content p::after {
    right: -10px;
    bottom: -40px;
}

/* Sayaç stili güncellemesi */
.year-counter {
    font-family: "monument_extendedregular";
    color: var(--primary-beige);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.counter-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.counter {
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1;
    background: linear-gradient(
        to right,
        var(--primary-beige),
        var(--light-beige)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(213, 197, 181, 0.3);
}

.apostrophe {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    color: var(--warm-gray);
}

.beri {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Başlık ve paragraf düzeltmeleri */
.hero-content h1 {
    color: var(--light-beige);
    font-family: "monument_extendedregular";
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.3;
    margin-bottom: 24px;
    opacity: 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content p {
    color: var(--warm-gray);
    font-family: "monument_extendedregular";
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    opacity: 0;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive düzeltmeler */
@media screen and (max-width: 768px) {
    .about-hero {
        padding: 0 20px;
    }

    .year-counter {
        margin-bottom: 30px;
    }

    .counter {
        font-size: 72px;
    }

    .apostrophe,
    .beri {
        font-size: 20px;
    }
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background-color: var(--dark-brown);
    position: relative;
    min-height: 100vh;
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 60px;
    position: relative;
}

/* Content Column */
.content-column {
    padding-right: 40px;
}

.content-block {
    margin-bottom: 180px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    padding: 40px;
    border-radius: 12px;
    background: rgba(45, 36, 31, 0.5);
    backdrop-filter: blur(10px);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    color: var(--primary-beige);
    font-family: "monument_extendedregular";
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.3;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.content-block p {
    color: var(--warm-gray);
    font-family: "monument_extendedregular";
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.content-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.content-block img:hover {
    opacity: 1;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-beige) 0%,
        var(--primary-beige) var(--scroll-percent, 0%),
        rgba(213, 197, 181, 0.2) var(--scroll-percent, 0%),
        rgba(213, 197, 181, 0.2) 100%
    );
    box-shadow: 0 0 10px rgba(213, 197, 181, 0.3);
}

.year-marker {
    position: absolute;
    left: 50%;
    transform: translateX(20px);
    display: flex;
    align-items: center;
    gap: 16px;
    width: auto;
    height: 30px;
    z-index: 2;
}

.year-marker[data-year="1980"] { top: calc(0% + 60px); }
.year-marker[data-year="1995"] { top: calc(25% + 60px); }
.year-marker[data-year="2010"] { top: calc(50% + 60px); }
.year-marker[data-year="2023"] { top: calc(75% + 60px); }

.year-marker .year {
    color: var(--warm-gray);
    font-family: "monument_extendedregular";
    font-size: 16px;
    font-weight: 500;
    opacity: 0.6;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.year-marker .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--primary-beige);
    background-color: transparent;
    transform: scale(1);
    transition: all 0.3s ease;
    position: absolute;
    left: -28px;
    box-shadow: 0 0 10px rgba(213, 197, 181, 0.3);
    opacity: 0.6;
}

.year-marker.active .year {
    opacity: 1;
    color: var(--primary-beige);
    font-weight: 700;
    transform: scale(1.1);
}

.year-marker.active .dot {
    background-color: var(--primary-beige);
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 15px rgba(213, 197, 181, 0.5);
}

.year-marker:hover .dot {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-hero {
        padding: 0 20px;
    }

    .timeline-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .timeline-line {
        display: block;
        width: 40px;
        right: 0;
        left: auto;
        position: fixed;
    }

    .year-marker {
        transform: translateX(-100%);
        left: 30px;
    }

    .year-marker .dot {
        left: auto;
        right: -20px;
    }

    .content-block {
        margin-bottom: 100px;
        padding: 20px;
    }

    .content-block h2 {
        font-size: 32px;
    }

    .content-block p {
        font-size: 16px;
    }
}

/* Gül container güncelleme */
.rose-container {
    height: calc(100% - 45px);
    width: 2px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    display: flex;
    justify-content: flex-end;
    padding-right: 15px;
}

/* Sap stili güncelleme */
.stem-line {
    height: 0;
    width: 2px;
    background: var(--primary-beige);
    position: absolute;
    top: 0;
    right: 0;
    transform-origin: top center;
}

/* Sapın kıvrılan kısmı için güncelleme */
.stem-curve {
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-beige);
    bottom: 0;
    right: 0;
    transform-origin: right center;
    opacity: 0;
    border-radius: 0 20px 20px 0;
    transform: scaleX(-1);
    overflow: visible;
}

/* Stem container güncelleme */
.stem {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
}

/* Diken pozisyonları güncelleme */
.thorn-1 { 
    top: 45%;
    transform: rotate(-45deg);
    left: -5px;
}

.thorn-2 { 
    top: 70%;
    transform: rotate(45deg);
    left: 2px;
}

.thorn-3 { 
    top: 95%;
    transform: rotate(-45deg);
    left: -5px;
}

/* Artemis görsel stili güncelleme */
.artemis-image {
    position: absolute;
    width: 100px;
    height: 100px;
    right: -1525px;
    bottom: 0;
    opacity: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform-origin: center;
    filter: contrast(1.1) brightness(1.05);
    transition: filter 0.3s ease;
}

/* Çizim efekti için gradient overlay */
.artemis-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(213, 197, 181, 0.1),
        transparent 50%,
        rgba(213, 197, 181, 0.1)
    );
    pointer-events: none;
}

/* Responsive animasyon ayarları */
@media screen and (max-width: 1024px) {
    /* Tablet için animasyon ölçeklendirmeleri */
    .rose-container {
        height: calc(100% - 35px);
        padding-right: 10px;
    }

    .stem-line {
        width: 1.5px;
    }

    .stem-curve {
        height: 1.5px;
    }

    .thorn {
        width: 10px;
        height: 1.5px;
    }

    .artemis-image {
        width: 80px;
        height: 80px;
        right: -1200px; /* Tablet için kıvrım uzunluğu */
    }
}

@media screen and (max-width: 768px) {
    /* Mobil için animasyon ölçeklendirmeleri */
    .rose-container {
        height: calc(100% - 25px);
        padding-right: 8px;
    }

    .stem-line {
        width: 1px;
    }

    .stem-curve {
        height: 1px;
    }

    .thorn {
        width: 8px;
        height: 1px;
    }

    .artemis-image {
        width: 60px;
        height: 60px;
        right: -800px; /* Mobil için kıvrım uzunluğu */
    }
}

/* Responsive düzenlemeler */
@media screen and (max-width: 1024px) {
    .content-block h2 {
        font-size: 32px;
        letter-spacing: 1.2px;
    }
}

@media screen and (max-width: 768px) {
    .content-block h2 {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 480px) {
    .content-block h2 {
        font-size: 24px;
        letter-spacing: 0.8px;
        margin-bottom: 20px;
    }
}

/* Footer Styles */
.footer {
    background-color: rgba(45, 36, 31, 0.95);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(213, 197, 181, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.2)
    );
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

/* Logo ve İletişim */
.footer-logo {
    margin-bottom: 24px;
}

.footer-logo .brand,
.footer-logo .sub-brand {
    display: block;
    font-family: "monument_extendedregular";
    letter-spacing: 2px;
}

.footer-logo .brand {
    color: var(--light-beige);
    font-size: 24px;
}

.footer-logo .sub-brand {
    color: var(--primary-beige);
    font-size: 20px;
}

.footer-desc {
    color: var(--warm-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact a {
    color: var(--primary-beige);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--light-beige);
}

/* Başlıklar */
.footer-col h3 {
    color: var(--light-beige);
    font-family: "monument_extendedregular";
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Linkler */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-beige);
}

/* Sosyal Medya */
.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--primary-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-beige);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-beige);
    color: var(--dark-brown);
}

/* Adres */
.address {
    color: var(--warm-gray);
    font-size: 14px;
    line-height: 1.8;
}

/* Alt Bilgi */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(213, 197, 181, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--warm-gray);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: var(--warm-gray);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-beige);
}

.footer-bottom-links .divider {
    color: var(--warm-gray);
    opacity: 0.5;
}

/* Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-logo .brand {
        font-size: 20px;
    }

    .footer-logo .sub-brand {
        font-size: 16px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet için düzenlemeler (768px - 1024px) */
@media screen and (max-width: 1024px) {
    /* Dekoratif elementleri gizle */
    .decorative-left,
    .circle-pattern,
    .rose-container,
    .stem,
    .building-line,
    .window,
    .door-container,
    .sign {
        display: none !important;
    }

    .about-hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 20px;
        margin-top: 60px; /* Header için boşluk */
    }

    .hero-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    /* Hero content düzenlemeleri */
    .hero-content {
        width: 100%;
        max-width: 600px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0;
    }

    .year-counter {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .counter {
        font-size: 48px;
        color: var(--primary-beige);
    }

    .apostrophe {
        font-size: 24px;
        color: var(--primary-beige);
    }

    .beri {
        font-size: 20px;
        color: var(--primary-beige);
    }

    .hero-content h1 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0;
        color: var(--light-beige);
        line-height: 1.2;
        word-break: break-word;
        hyphens: auto;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 500px;
        margin: 0;
        color: var(--warm-gray);
        padding: 0 15px;
    }
}

/* Mobil için ek düzenlemeler */
@media screen and (max-width: 768px) {
    .about-container {
        padding: 60px 15px 30px;
    }

    .content-block {
        padding: 15px;
    }

    .content-block img {
        height: 200px;
    }

    .year-marker {
        width: 20px;
        height: 20px;
        right: 8px;
    }

    .year-marker .year {
        font-size: 12px;
        right: 30px;
        padding: 3px 10px;
    }

    /* Hero Section içeriği */
    .hero-content {
        text-align: center;
        padding: 20px 15px;
    }

    .hero-content h1 {
        font-size: clamp(20px, 3.5vw, 28px);
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .year-counter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
    }

    .counter {
        font-size: 42px;
    }

    .apostrophe {
        font-size: 20px;
    }

    .beri {
        font-size: 18px;
    }
}

/* Küçük ekranlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .about-container {
        padding: 50px 10px 20px;
    }

    .content-block {
        padding: 12px;
    }

    .content-block img {
        height: 180px;
    }

    .hero-content h1 {
        font-size: 18px;
        padding: 0 5px;
    }

    .hero-content p {
        font-size: 13px;
        padding: 0 5px;
    }

    .counter {
        font-size: 36px;
    }
}

/* Yatay görünüm için düzenlemeler */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .about-container {
        padding: 40px 15px;
    }

    .hero-content {
        padding: 10px;
    }

    .content-block img {
        height: 160px;
    }
}

/* Yüksek DPI ekranlar için optimizasyon */
@media screen and (-webkit-min-device-pixel-ratio: 2), 
       screen and (min-resolution: 192dpi) {
    .content-block img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Touch cihazlar için hover efektlerini düzenle */
@media (hover: none) {
    .content-block:hover {
        transform: none;
    }

    .year-marker:hover .dot {
        transform: none;
    }
}

/* Animasyon performans optimizasyonu */
@media screen and (prefers-reduced-motion: reduce) {
    .content-block,
    .year-marker,
    .hero-content,
    .counter {
        transition: none;
    }
}

/* Tablet ve Mobil için düzenlemeler */
@media screen and (max-width: 1024px) {
    .about-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Hero Section */
    .about-hero {
        min-height: 60vh; /* Yüksekliği azalttık */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 20px 40px;
        margin-top: 60px;
    }

    /* Hero content düzenlemeleri */
    .hero-content {
        width: 100%;
        max-width: 600px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* Timeline Section */
    .timeline-section {
        width: 100%;
        padding: 40px 20px;
        background: rgba(45, 36, 31, 0.3);
    }

    .timeline-container {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        padding-right: 40px;
    }

    /* Timeline çizgisi */
    .timeline-line {
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--primary-beige);
    }

    /* Content blocks */
    .content-block {
        background: rgba(45, 36, 31, 0.8);
        backdrop-filter: blur(5px);
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 40px;
        border: 1px solid rgba(213, 197, 181, 0.1);
        position: relative;
    }

    .content-block:last-child {
        margin-bottom: 0;
    }

    .content-block h2 {
        color: var(--primary-beige);
        font-size: 24px;
        margin-bottom: 15px;
    }

    .content-block p {
        color: var(--warm-gray);
        font-size: 14px;
        line-height: 1.6;
    }

    .content-block img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin: 15px 0;
    }

    /* Yıl işaretleyicileri */
    .year-marker {
        position: absolute;
        right: -40px;
        top: 20px;
        width: 20px;
        height: 20px;
        background: var(--dark-brown);
        border: 2px solid var(--primary-beige);
        border-radius: 50%;
    }

    .year-marker .year {
        position: absolute;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--dark-brown);
        color: var(--primary-beige);
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 14px;
        border: 1px solid var(--primary-beige);
        white-space: nowrap;
    }
}

/* Mobil için ek düzenlemeler */
@media screen and (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 60px 15px 30px;
    }

    .timeline-section {
        padding: 30px 15px;
    }

    .content-block {
        padding: 20px;
        margin-bottom: 30px;
    }

    .content-block h2 {
        font-size: 20px;
    }

    .content-block img {
        height: 180px;
    }
}

/* Küçük ekranlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .about-hero {
        min-height: 40vh;
        padding: 50px 10px 25px;
    }

    .timeline-section {
        padding: 25px 10px;
    }

    .content-block {
        padding: 15px;
        margin-bottom: 25px;
    }

    .content-block h2 {
        font-size: 18px;
    }

    .content-block img {
        height: 160px;
    }

    .year-marker {
        width: 16px;
        height: 16px;
        right: -35px;
    }

    .year-marker .year {
        font-size: 12px;
        padding: 3px 10px;
        right: 25px;
    }
}