/* --- DERİ VE BAKIR TEMASI (MOCKUP BİREBİR) --- */
:root {
    --bg-dark-leather: #19120e;  /* Çok koyu kahve / Deri zemin rengi */
    --bg-card: #281d16;          /* Kartların zemini */
    
    /* Bakır / Bronz Metalik Geçiş (Gradient) */
    --copper-gradient: linear-gradient(135deg, #a66a46 0%, #eebf91 50%, #a66a46 100%);
    --copper-dark: #a66a46;
    --copper-light: #eebf91;
    
    --text-light: #d8c3b5;
    --text-muted: #9e8576;
}

/* --- GENEL AYARLAR --- */
body {
    background-color: #000; /* Dış zemin siyah */
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Ana Çerçeve (Görseldeki kalın bakır çerçeveli alan) */
.app-wrapper {
    background-color: var(--bg-dark-leather);
    /* Hafif deri dokusu için noise eklenebilir, şimdilik CSS radial gradient ile derinlik katıyoruz */
    background-image: radial-gradient(circle at center, #261b15 0%, #110c09 100%);
    width: 100%;
    max-width: 1200px;
    border: 8px solid;
    border-image: var(--copper-gradient) 1;
    border-radius: 10px; /* border-image ile radius çalışmaz ama iç kısımları ayarlayacağız */
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

/* Bakır Metin Efekti Sınıfı */
.text-copper {
    background: var(--copper-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback */
}

h1, h2, h3, h4, .brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
}

/* --- BUTONLAR --- */
.btn-copper {
    background: var(--copper-gradient);
    color: #110c09 !important; /* Koyu kahve/siyah yazı */
    border: none;
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(166, 106, 70, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-copper:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 191, 145, 0.4);
}

/* --- YENİ HERO BÖLÜMÜ (webpage.jpeg) --- */
.hero-new-section {
    position: relative;
    background: linear-gradient(rgba(17, 12, 9, 0.4), rgba(17, 12, 9, 0.95)), url('../../images/Calisma-sistemi.webp') center/cover;
    padding: 30px 40px 60px;
    text-align: center;
}

.hero-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.nav-links-new {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.nav-links-new li a {
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links-new li a:hover {
    color: var(--copper-light);
}

.btn-outline-pill {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--copper-dark);
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-pill:hover {
    background: var(--copper-gradient);
    color: #110c09;
    border-color: transparent;
}

.hero-huge-logo {
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
    margin-bottom: 5px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 6px;
    text-transform: lowercase;
}

/* --- YENİ SLOGAN BÖLÜMÜ --- */
.hero-slogan-area {
    background: linear-gradient(rgba(36, 18, 20, 0.88), rgba(36, 18, 20, 0.98)), url('../../images/foto1.jpg') center/cover;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--copper-dark);
}

.slogan-main-title {
    font-size: 3rem;
    color: #fffaf0; /* Cream text */
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slogan-sub-text {
    font-size: 1.1rem;
    color: #e8e0d5;
    margin-bottom: 40px;
    line-height: 1.6;
}

.slogan-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- 3'LÜ GÖRSEL BÖLÜMÜ --- */
.showcase-section {
    padding: 50px 40px 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.showcase-item {
    text-align: center;
}

.showcase-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--copper-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.showcase-image:hover {
    transform: scale(1.03);
}

.showcase-title {
    font-size: 2rem;
    letter-spacing: 1px;
}

/* --- BİLGİ KARTLARI BÖLÜMÜ --- */
.cards-section {
    padding: 20px 40px 50px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--copper-dark);
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 10px 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--copper-light);
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--copper-light);
    line-height: 1.4;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Ortadaki Rezervasyon Butonu */
.center-action {
    text-align: center;
    padding: 0 0 50px;
}

/* --- GALERİ BÖLÜMÜ --- */
.gallery-section {
    padding: 0 40px 50px;
}

.gallery-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 15px;
}

.gallery-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(166, 106, 70, 0.3);
}

/* Görseldeki gibi asimetrik kolaj yerleşimi */
.gal-1 { grid-column: span 1; grid-row: span 2; }
.gal-2 { grid-column: span 1; grid-row: span 1; }
.gal-3 { grid-column: span 1; grid-row: span 1; }
.gal-4 { grid-column: span 1; grid-row: span 2; }
.gal-5 { grid-column: span 2; grid-row: span 1; }

/* --- FOOTER BÖLÜMÜ --- */
.footer-section {
    padding: 40px;
    background-color: #110c09;
    border-top: 2px solid var(--copper-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-info {
    flex: 1;
}

.footer-brand {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-line {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-line i {
    width: 25px;
    color: var(--copper-light);
    font-size: 1.1rem;
}

.footer-map {
    flex: 1;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--copper-dark);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- RESPONSIVE (Mobil Uyumluluk) --- */
@media (max-width: 992px) {
    .showcase-grid, .cards-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .btn-top-right {
        position: static;
        margin-top: 20px;
    }
    
    .gallery-collage {
        grid-template-columns: repeat(2, 1fr);
    }
    .gal-1, .gal-4 { grid-row: span 1; }
    .gal-5 { grid-column: span 1; }
    
    .footer-section {
        flex-direction: column;
    }
    
    .footer-map {
        width: 100%;
    }
}

.footer-vertical-logo {
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    margin-bottom: 5px;
}
