/* =========================
   DEĞİŞKENLER
========================= */
:root {
    --body-bg: #F9F7F2;
    --body-color: #1A1A1A;
    --primary-color: #B8860B;
    --secondary-color: #D4A373;
    --accent-color: #D4A373;
    --text-color-light: #EAE9FF;
    --badge-color: #fdfaf3;
    --scrollbar-bg: rgba(0, 0, 0, 0.1);
    --font-family: 'Poppins', sans-serif;
    --container-max-width: 1600px;
    --whatsapp-bg: #25D366;
    --phone-bg: #B8860B;
    --phone-color: #1a1a1a;
    --scroll-btn-bg: #B8860B;
    --scroll-btn-color: #EAE9FF;
    --fixed-btn-size: 60px;
    --fixed-btn-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --section-title-color: #B8860B;
    --section-title-border-color: #D4A373;
    --section-title-font-size: 2rem;
    --section-title-font-weight: 600;
    --section-title-border-height: 3px;
    --section-title-margin-bottom: 20px;
    --breadcrumb-bg: #fdfaf3;
    --breadcrumb-color: #6b7280;
    --breadcrumb-hover-color: #D4A373;
    --breadcrumb-font-size: 1.2rem;
    --breadcrumb-gap: 8px;
}

/* =========================
   GENEL AYARLAR
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-family);
    background-color: var(--body-bg);
    color: var(--body-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0;
}

/* Seçim rengi */
::selection {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
}

/* Linkler */
a {
    color: inherit;
    /* üst elemandan rengi alır */
    text-decoration: none;
    /* alt çizgi olmasın */
}

a:hover {
    color: inherit;
    text-decoration: none;
}

/* Responsive için ortak ayarlar */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }
}

/* Sabit sol alt WhatsApp */
.fixed-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 10px;
    width: var(--fixed-btn-size);
    height: var(--fixed-btn-size);
    background: var(--whatsapp-bg);
    color: white;
    font-size: 30px;
    text-align: center;
    line-height: var(--fixed-btn-size);
    border-radius: 50%;
    box-shadow: var(--fixed-btn-shadow);
    z-index: 99;
    transition: transform 0.3s;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
}

/* Sabit sol alt Telefon */
.fixed-phone {
    margin-bottom: 75px;
    position: fixed;
    bottom: 20px;
    left: 10px;
    width: var(--fixed-btn-size);
    height: var(--fixed-btn-size);
    background: var(--phone-bg);
    color: var(--phone-color);
    font-size: 28px;
    text-align: center;
    line-height: var(--fixed-btn-size);
    border-radius: 50%;
    box-shadow: var(--fixed-btn-shadow);
    z-index: 99;
    transition: transform 0.3s;
}

.fixed-phone:hover {
    transform: scale(1.1);
}

/* Scroll to top */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 99;
    background: var(--scroll-btn-bg);
    color: var(--scroll-btn-color);
    border: none;
    width: var(--fixed-btn-size);
    height: var(--fixed-btn-size);
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
}

/* Başlıklar */
.section-title {
    font-size: var(--section-title-font-size);
    font-weight: var(--section-title-font-weight);
    color: var(--section-title-color);
    margin-bottom: var(--section-title-margin-bottom);
    border-bottom: var(--section-title-border-height) solid var(--section-title-border-color);
    display: inline-block;
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb-section {
    width: 100%;
    background-color: var(--breadcrumb-bg);
    padding: 20px 0;
}

.breadcrumb {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: 20px;
    font-family: var(--font-family);
    font-size: var(--breadcrumb-font-size);
    display: flex;
    align-items: center;
    gap: var(--breadcrumb-gap);
}

.breadcrumb a {
    color: var(--breadcrumb-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: var(--breadcrumb-hover-color);
}

.breadcrumb span {
    color: var(--breadcrumb-color);
}

.breadcrumb .current {
    color: var(--breadcrumb-hover-color);
    font-weight: 500;
}