/* --- PREMIUM WEB TEMASI: REPUBLIC PUB --- */
:root {
    --bg-main: #070708;
    --bg-surface: #0e0e11;
    --text-primary: #f3f3f4;
    --text-secondary: #a5a5ab;
    --gold: #d4af37;      
    --gold-bright: #f5cc6f;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

/* --- YAZI FONTU GELİŞTİRMELERİ --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1.5px;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    color: var(--text-primary);
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto 50px;
    position: relative;
}
.divider::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- NAVİGASYON BARI (HEADER) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

header.scrolled {
    background: rgba(7, 7, 8, 0.98);
    padding: 18px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px; 
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- HERO (KARŞILAMA) ALANI --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1920&q=80');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(7, 7, 8, 0.6) 0%, rgba(7, 7, 8, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 30px;
}

.hero-logo {
    max-width: 380px;
    width: 85%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.7));
}

.fallback-logo {
    font-size: 5.5rem;
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 12px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--gold-glow);
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 45px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* EFEKTİF VE ŞIK GOLD BUTON */
.gold-btn {
    display: inline-block;
    padding: 16px 45px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: transparent;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0; height: 100%;
    background-color: var(--gold);
    z-index: -1;
    transition: var(--transition-smooth);
}

.gold-btn:hover {
    color: var(--bg-main);
    box-shadow: 0 0 25px var(--gold-glow);
}

.gold-btn:hover::before {
    width: 100%;
}

/* ÇOK YAKINDA BUTONU ÖZEL STİLİ */
.coming-soon-btn {
    cursor: default;
    line-height: 1.4;
    border-color: rgba(212, 175, 55, 0.5);
    color: rgba(212, 175, 55, 0.8);
}
.coming-soon-btn:hover {
    background: transparent;
    color: rgba(212, 175, 55, 0.8);
    box-shadow: none;
}
.coming-soon-btn:hover::before {
    width: 0;
}
.soon-text {
    font-size: 0.65rem;
    letter-spacing: 4px;
    opacity: 0.7;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* --- HAKKIMIZDA --- */
.about-section {
    padding: 140px 0 80px 0;
    background-color: var(--bg-main);
    position: relative;
}

.about-wrapper {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: justify;
    text-align-last: center;
}

/* YENİ: Düz yazı ve şık ayar */
.about-content .lead-paragraph {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-style: normal; /* İtalik kaldırıldı */
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    text-align-last: center;
    letter-spacing: 0.5px;
}

/* YENİ: Daha şık, düz formlu ve keskin Tagline */
.tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    font-style: normal; /* İtalik kaldırıldı */
    color: var(--gold-bright);
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 1px;
}
.tagline span {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-top: 10px;
}

/* --- MENÜ BÖLÜMÜ --- */
.menu-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    text-align: center;
}

.menu-teaser p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* --- GALERİ ALANI --- */
.gallery-section {
    padding: 120px 0 80px 0;
    background-color: var(--bg-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; 
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 380px;
    border-radius: 8px; 
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; 
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); 
    opacity: 1; 
}

/* --- İLETİŞİM & HARİTA --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.contact-container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    margin-top: 20px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 35px;
}

.info-block h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-block p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.gold-link {
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}
.gold-link:hover {
    color: var(--gold-bright);
    padding-left: 5px;
}

.map-container {
    flex: 1.3;
    height: 400px;
    border-radius: 12px; 
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(212, 175, 55, 0.15); 
    filter: grayscale(100%) invert(90%) contrast(85%) brightness(85%) sepia(10%) hue-rotate(10deg);
    transition: var(--transition-smooth);
}

.map-container:hover {
    border-color: rgba(212, 175, 55, 0.5);
    filter: grayscale(80%) invert(90%) contrast(90%) brightness(95%) sepia(10%) hue-rotate(10deg);
}

/* --- FOOTER --- */
footer {
    background-color: #040405;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 25px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}
.footer-logo:hover {
    opacity: 1;
}

.fallback-logo-sub {
    font-size: 2rem;
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 6px;
    margin-bottom: 20px;
}

footer p {
    font-size: 0.85rem;
    color: #55555a;
    letter-spacing: 1px;
}

/* =========================================
   MOBİL UYUMLULUK (RESPONSIVE) AYARLARI
   ========================================= */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Mobilde arka plan kayma problemini önler */
    }
    
    /* Menü mobilde ekran dışına taşmasın diye ortalanıp küçültüldü */
    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; 
    }
    
    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    /* Boşluklar daraltıldı */
    .about-section, .menu-section, .gallery-section, .contact-section {
        padding: 70px 0 50px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* İletişim ve harita alt alta dizilsin */
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Metin boyutları telefona uygun hale getirildi */
    .about-content .lead-paragraph {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 1.4rem;
        padding: 30px 0;
    }
    
    .tagline span {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .fallback-logo {
        font-size: 3rem;
        letter-spacing: 8px;
    }
    
    .subtitle {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
    
    .hero-logo {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .fallback-logo {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }
    
    .gold-btn {
        padding: 14px 30px;
        font-size: 0.75rem;
    }
    
    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item {
        height: 300px;
    }
}