/* --- GENEL AYARLAR --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0A0A0A;
    color: #F5F5F5;
    overflow-x: hidden;
}
html, body {
    overflow-x: hidden;
}
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F0D365;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --dark: #1A1A1A;
    --black: #0A0A0A;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
}


/* --- NAVBAR (MENÜ) AYARLARI --- */
nav {
    position: fixed; /* Sabit kalması için şart */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    padding: 0 clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.4); /* Hafif şeffaf arka plan */
    backdrop-filter: blur(10px); /* Arkası bulanık görünsün */
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

/* Sayfa aşağı kayınca Navbar görünümü */
nav.scrolled {
    height: 70px; /* Biraz daralsın */
    background: rgba(10, 10, 10, 0.95); /* Tam siyah olsun */
    border-bottom-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* --- LOGO AYARLARI --- */
.nav-logo {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    width: 140px; /* Logo alanı genişliği */
    z-index: 1001;
}

.logo-img {
    height: 110px !important; /* Logo boyutu sabitlendi */
    width: auto !important;
    position: absolute;
    top: -5px; /* Hafif yukarı hizalama */
    left: 0;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    transition: all 0.4s ease;
}

/* Aşağı kayınca logo küçülsün */
nav.scrolled .logo-img {
    height: 85px !important;
    top: -8px;
}

/* --- MENÜ LİNKLERİ --- */
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

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

.nav-links a.active {
    color: var(--gold);
}

/* --- HERO (GİRİŞ) BÖLÜMÜ --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px clamp(30px, 6vw, 100px) 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease .2s forwards;
}

.hero-tag::before, .hero-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .02em;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s ease .4s forwards;
}

.hero-title .line {
    display: block;
}

.hero-title .gold {
    color: var(--gold);
    font-style: italic;
    display: block;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 50px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .6);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease .7s forwards;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 18px 44px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all .4s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, .3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease 1s forwards;
}

.hero-cta:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, .4);
}

.hero-cta .arrow {
    font-size: 1.2rem;
    transition: transform .3s;
}

.hero-cta:hover .arrow {
    transform: translateX(4px);
}

/* --- SEKSİYON GENEL --- */
.section {
    padding: clamp(80px, 10vw, 140px) clamp(30px, 6vw, 100px);
    background: var(--cream);
    color: var(--dark);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold-dark);
}

.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
}

.section-h2 .gold {
    color: var(--gold-dark);
    font-style: italic;
}

.section-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(26, 26, 26, .7);
    line-height: 1.8;
}

/* --- HİKAYEMİZ --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.about-content .about-text {
    font-size: 1.5rem;
    font-weight: bold;
    
    color: rgba(26, 26, 26, .75);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-visual {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--dark);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(212, 175, 55, .4);
    font-family: var(--font-display);
    color: var(--black);
    line-height: 1;
}

.about-badge .year {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-badge .text {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
    opacity: .8;
}

/* --- MENÜ --- */
.menu-section {
    padding: clamp(80px, 10vw, 140px) clamp(30px, 6vw, 100px);
    background: var(--dark);
}

.menu-section .section-h2, .menu-section .section-desc {
    color: var(--cream);
}

.menu-section .section-tag {
    color: var(--gold);
}

.menu-section .section-tag::before {
    background: var(--gold);
}

.menu-section .section-desc {
    color: rgba(250, 248, 245, .7);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3px;
    background: rgba(212, 175, 55, .08);
    margin-top: 60px;
}

.product-card {
    background: var(--black);
    padding: 0;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.product-card:hover {
    background: #0F0F0F;
}

.pc-visual {
    height: 240px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    transition: transform .5s ease;
}

.product-card:hover .pc-visual {
    transform: scale(1.03);
}

.pc-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(212, 175, 55, .06));
}

.pbadge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
    background: var(--gold);
    color: var(--black);
}

.pc-body {
    padding: 28px 32px 32px;
}

.pc-cat {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.pc-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: .02em;
    line-height: 1.2;
}

.pc-desc {
    font-size: .9rem;
    font-weight: 300;
    color: rgba(250, 248, 245, .6);
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 3.6em;
}

.pc-footer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px solid rgba(212, 175, 55, .15);
    padding-top: 16px;
}

.pc-price {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: .04em;
    font-weight: 700;
}

.price-label {
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, .4);
}

/* --- İLETİŞİM --- */
.contact-section {
    padding: clamp(80px, 10vw, 140px) clamp(30px, 6vw, 100px);
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: var(--white);
    padding: 44px 36px;
    border: 1px solid rgba(212, 175, 55, .2);
    transition: all .4s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border-color: var(--gold);
}

.cc-icon {
    font-size: 2.6rem;
    margin-bottom: 20px;
    display: block;
}

.cc-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.cc-info {
    font-size: .95rem;
    font-weight: 400;
    color: rgba(26, 26, 26, .7);
    line-height: 1.7;
}

.cc-info a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}

.cc-info a:hover {
    color: var(--gold);
}

/* --- FOOTER --- */
footer {
    background: var(--black);
    padding: 60px clamp(30px, 6vw, 100px) 30px;
    color: rgba(255, 255, 255, .6);
    border-top: 1px solid rgba(212, 175, 55, .15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .fb-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: .08em;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: .04em;
}

.footer-col a {
    display: block;
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color .3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .8rem;
    letter-spacing: .05em;
}

/* --- ANİMASYONLAR --- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: none;
    }
}

/* --- MOBİL UYUMLULUK --- */
@media(max-width: 960px) {
    .nav-links {
        display: none; /* Mobilde linkleri gizle (Hamburger menü için) */
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media(max-width: 600px) {
    nav {
        padding: 0 24px;
    }
    /* Mobilde logo daha da küçülsün */
    .logo-img {
        height: 70px !important; 
        top: 10px;
    }
    .nav-logo {
        width: 90px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}