/**
 * Kurumsa CMS - firmav24 ile birebir uyumlu
 * https://firmav24.demobul.com.tr/ style.css yüklenir, burada sadece ek/override stiller
 */
/* body overflow - firmav24 hidden yapıyor, scroll için düzelt */
body { overflow-x: hidden; overflow-y: auto !important; }
html { overflow-y: auto !important; }

:root {
    --color-primary: #DF0A0A;
    --color-primary-5: #B00F0F;
    --color-primary-alta: #FFECEC;
    --color-heading-1: #1C2539;
    --color-body: #5D666F;
    --font-primary: "Titillium Web", sans-serif;
    --font-secondary: "Titillium Web", sans-serif;
    --font-size-b1: 16px;
    --font-size-b2: 18px;
    --font-size-b3: 22px;
    --line-height-b1: 26px;
    --line-height-b2: 30px;
    --line-height-b3: 1.7;
    --h1: 60px;
    --h2: 48px;
    --h3: 36px;
    --h4: 30px;
    --h5: 24px;
    --h6: 20px;
    --s-bold: 700;
    --p-regular: 400;
    --transition: 0.3s;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
    overflow-x: hidden;
}

body {
    font-size: var(--font-size-b1);
    line-height: var(--line-height-b1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-primary);
    color: var(--color-body);
    font-weight: var(--p-regular);
    overflow-x: hidden;
}

/* Başlıklar - firmav24 */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    word-break: break-word;
    line-height: 1.4074;
    color: var(--color-heading-1);
    font-family: var(--font-primary);
}

h1, .h1 {
    font-size: var(--h1);
    line-height: 1.2;
    font-weight: 900;
}

h2, .h2 {
    font-size: var(--h2);
    line-height: 1.23;
    font-weight: var(--s-bold);
}

h3, .h3 {
    font-size: var(--h3);
    line-height: 1.3;
    font-weight: var(--s-bold);
}

h4, .h4 {
    font-size: var(--h4);
    line-height: 1.25;
    font-weight: var(--s-bold);
}

h5, .h5 {
    font-size: var(--h5);
    line-height: 1.24;
    font-weight: var(--s-bold);
}

h6, .h6 {
    font-size: var(--h6);
    line-height: 1.25;
    font-weight: var(--s-bold);
}

/* Paragraflar - firmav24 */
p {
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
    font-weight: var(--p-regular);
    color: var(--color-body);
    font-family: var(--font-primary);
}

/* Navigasyon linkleri */
.navbar .nav-link {
    font-family: var(--font-primary);
    color: var(--color-heading-1);
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--color-primary);
}

/* Logo / Marka */
.navbar-brand {
    font-family: var(--font-primary);
    color: var(--color-heading-1) !important;
    font-weight: 700;
}

/* Responsive başlık boyutları - firmav24 */
@media (max-width: 991px) {
    h1, .h1 { font-size: 38px; }
    h2, .h2 { font-size: 32px; }
    h3, .h3 { font-size: 28px; }
    h4, .h4 { font-size: 24px; }
    h5, .h5 { font-size: 18px; }
}

@media (max-width: 767px) {
    h1, .h1 { font-size: 34px; }
    h2, .h2 { font-size: 28px; }
    h3, .h3 { font-size: 24px; }
    h4, .h4 { font-size: 20px; }
    h5, .h5 { font-size: 20px; }
    p { font-size: 16px; line-height: 28px; }
}

/* Header Search butonu - oval/pill yapı */
.header-search-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-alta) !important;
    border: none !important;
    color: var(--color-primary) !important;
    border-radius: 50px;
    transition: all var(--transition);
    font-family: var(--font-primary);
}
.header-search-btn:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
}

/* 3 çizgi (hamburger) menü butonu - oval */
.header-menu-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-alta) !important;
    border: none !important;
    color: var(--color-primary) !important;
    border-radius: 50px;
    transition: all var(--transition);
    font-family: var(--font-primary);
}
.header-menu-btn:hover {
    background: var(--color-primary) !important;
    color: #fff !important;
}

/* Bilgi Talep Et butonu - oval/pill yapı */
.header-cta-btn {
    background: var(--color-primary) !important;
    border: none !important;
    color: #fff !important;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all var(--transition);
    font-family: var(--font-primary);
}
.header-cta-btn:hover {
    background: var(--color-primary-5) !important;
    color: #fff !important;
}

/* Form ve input'lar */
.form-control, .form-label, .btn {
    font-family: var(--font-primary);
}

/* Modal başlıkları */
.modal-title {
    font-family: var(--font-primary);
    font-weight: 700;
}

/* Header üst bar - firmav24 */
.header-top {
    font-family: var(--font-primary);
}

/* Lead text */
.lead {
    font-family: var(--font-primary);
    font-size: var(--font-size-b2);
    line-height: var(--line-height-b2);
}

/* Text muted */
.text-muted {
    color: #6c757d !important;
}
