@font-face {
    font-family: 'ZapfChancery';
    /* Fonta verdiğin takma isim */
    src: url('../fonts/ITC-Zapf-Chancery-Roman.woff2') format('woff2');
    /* Eğer .woff2 yaptıysan format kısmını 'woff2' olarak değiştir */
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #d4af37;
    --accent-dark: #b8962e;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #fafafa;
    --white: #ffffff;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'ZapfChancery', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation - Orijinal Tasarım ===== */
.navbar {
    position: fixed;
    padding-bottom: 0;
    top: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 20px;
}

.logo {
    margin-left: -6rem;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-size: 1.3rem;
    color: white;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

/* Navigation Active State */
.nav-link.active {
    color: var(--accent);
}

.nav-link.active::after {
    width: 100%;
}

.navbar.scrolled .nav-link.active {
    color: var(--accent);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--primary);
}

@media (max-width: 768px) {
    .logo {
        margin-left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Menü açıkken navbar arka planı beyaz olsun */
    .navbar.menu-open {
        background: var(--white) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar.menu-open .hamburger span {
        background: var(--primary) !important;
    }

    .navbar.menu-open .nav-link {
        color: var(--text-dark) !important;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        margin-top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        max-height: 400px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        list-style: none;
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.3rem;
        padding: 1rem 1rem;
        width: 100%;
        text-align: center;
        display: block;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--accent) !important;
    }

    .nav-link:hover::after {
        width: 80%;
    }

    .nav-link.active {
        color: var(--accent) !important;
    }

    .nav-link.active::after {
        width: 80%;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('../images/hero-bg1.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: float linear infinite;
}

.particle:nth-child(1) {
    width: 3px;
    height: 3px;
    left: 10%;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    width: 5px;
    height: 5px;
    left: 30%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 4px;
    height: 4px;
    left: 50%;
    animation-duration: 18s;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 6px;
    height: 6px;
    left: 70%;
    animation-duration: 22s;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 3px;
    height: 3px;
    left: 90%;
    animation-duration: 16s;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: fadeInDown 1.2s ease;
    text-shadow:
        2px 2px 0px #000,
        -1px -1px 0px #000,
        1px -1px 0px #000,
        -1px 1px 0px #000,
        0px 10px 30px rgba(0, 0, 0, 0.8);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease 0.3s both;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1.2s ease 0.6s both;
}

.btn {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-primary {
    border: 2px solid #e4e4e4;
    border-radius: 3rem;
    background: #e4e4e4;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(218, 213, 197, 0.3);
    transform: translateY(0);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(218, 213, 197, 0.5);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    z-index: 3;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
    }

    80% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Section Styles ===== */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===== About Section (Text Only) ===== */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.06)"/></svg>');
    background-size: 28px;
    opacity: 0.6;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    padding: 1rem 0;
}

/* Metinler */
.about-text p {
    font-size: 1.4rem;
    line-height: 2.1;
    margin-bottom: 1.8rem;
    color: #4a4a4a;
    text-align: justify;
}


/* İlk harf vurgusu kalsın (çok yakışıyor) */
.about-text p:first-child::first-letter {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--accent);
    float: left;
    line-height: 0.85;
    margin: 0.1em 0.15em 0 0;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .about-text {
        padding: 2.5rem 2rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }
}


/* ===== Menu Section ===== */
.menu {
    background: linear-gradient(180deg,
            #faf7f2 0%,
            #f3efe8 100%);
    position: relative;
    overflow: hidden;
}

/* arkaplan dokusu */
.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.05)"/></svg>');
    background-size: 26px;
    opacity: 0.7;
}

/* ana wrapper */
.menu-hero {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== KART ===== */
.menu-hero-content {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 4rem 4.5rem;
    border-radius: 22px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
}

/* dekoratif tırnak */
.menu-hero-content::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 35px;
    font-size: 9rem;
    color: rgba(212, 175, 55, 0.50);
    line-height: 1;
    pointer-events: none;
}

/* açıklama metni */
.menu-intro-text {
    font-size: 1.4rem;
    line-height: 2.2;
    color: #555;
    margin-bottom: 3.5rem;
    font-style: italic;
    max-width: 800px;
}

/* ===== Butonlar ===== */
.menu-buttons {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

/* eşit boyut */
.btn-menu {
    min-width: 220px;
    padding: 1.1rem 0;
    background:#2a2a2a;
    color: white;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
    /* daha sofistike */
}

/* hover ripple */
.btn-menu::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-menu:hover::before {
    width: 320px;
    height: 320px;
}

.btn-menu span {
    position: relative;
    z-index: 1;
}

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

/* ===== Mobil ===== */
@media (max-width: 768px) {
    .menu-hero-content {
        padding: 2.5rem 2rem;
        border-radius: 18px;
    }

    .menu-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-menu {
        width: 100%;
    }

    .menu-intro-text {
        font-size: 1.15rem;
    }
}



/* ===== Hours Section ===== */
.hours {
    background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hours::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.hours .section-title {
    color: white;
}

.hours .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.hours-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hours-table {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.hours-table::before,
.hours-table::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
}

.hours-table::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.hours-table::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hours-row:hover {
    padding-left: 1rem;
    background: rgba(212, 175, 55, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.time-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.time {
    font-size: 1.2rem;
    font-weight: 600;
}


/* ===== Contact Section ===== */
.contact {
    background: var(--white);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height 0.4s ease;
}

.contact-item:hover::before {
    height: 100%;
}

.contact-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.contact-item a {
    color: var(--accent);
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-dark);
}

.contact-map {
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 20px solid var(--white);
    pointer-events: none;
    z-index: 1;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* ===== Footer ===== */

.footer {
    background: #2a2a2a;
    color: white;
    padding: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
    }

    .footer-bottom p {
        font-size: 1rem;
        opacity: 0.85;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-links a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}


/* ===== Responsive Design ===== */
@media (max-width: 1300px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
    }

    .logo {
        margin-left: -2rem;
    }

    .logo img {
        height: 38px;
    }
}

@media (max-width: 968px) {

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .about-content,
    .menu-hero,
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 3rem;
    }

}

/* ===== Inner Pages Navbar (Impressum / Datenschutz) ===== */
.inner-page .navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.inner-page .nav-link {
    color: var(--text-dark);
}

.inner-page .hamburger span {
    background: var(--primary);
}

/* Yatay scroll düzeltmesi */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

.navbar {
    max-width: 100vw;
}

/* Mobil düzeltmeler - Mevcut @media (max-width: 768px) bloğuna EKLE */
@media (max-width: 768px) {

    /* Logo negatif margin'i mobilde sıfırla */
    .logo {
        margin-left: 0 !important;
        flex-shrink: 0;
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 0.6rem 15px;
    }
}