/**
 * TTMFAV contact-page styles - copied from ttmfav.org.tr/kutuphane-rezervasyon
 * Matches kontin.css and Bootstrap alert/form styles
 */
:root {
    --thm-font: 'Georgia', 'serif';
    --thm-reey-font: 'reeyregular';
    --thm-gray: #767676;
    --thm-gray-rgb: 118, 118, 118;
    --thm-primary: #fba919;
    --thm-primary-rgb: 251, 169, 25;
    --thm-black: #171717;
    --thm-black-rgb: 23, 23, 23;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-clr-extra: #e3e3e3;
}

body {
    font-family: var(--thm-font);
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 34px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--thm-black);
    margin: 0;
}

/* Section title - from kontin.css */
.section-title {
    margin-top: -15px;
    margin-bottom: 47px;
}

.section-title__title {
    margin: 0;
    font-weight: 700;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
}

@media (max-width: 767px) {
    .section-title__title {
        font-size: 34px;
        line-height: 44px;
    }
}

/* Contact page - from kontin.css */
.contact-page {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.contact-page .container {
    max-width: 768px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Form container - from kontin.css */
.form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Alert overrides - Bootstrap compat */
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-heading {
    margin-bottom: 0.5rem;
}

/* Btn style one - from kontin.css */
.btn-style-one {
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    background: var(--thm-primary);
    color: var(--thm-base);
    border-radius: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-style-one .btn-title {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0;
    padding: 27px 60px 24px;
    z-index: 1;
}

.btn-style-one:hover {
    background: var(--thm-primary);
    color: #ffffff;
}

.btn-style-one .btn-curve {
    position: absolute;
    right: -15px;
    top: 0;
    width: 30px;
    height: 100%;
    background: rgba(var(--thm-black-rgb), 0.1);
    z-index: 0;
    transform: skewX(-22deg);
    transition: all 0.5s ease;
}

.btn-style-one:hover .btn-curve {
    background: rgba(var(--thm-black-rgb), 1);
    right: 0;
    width: 100%;
    transform: skewX(0deg);
}

.comment-form__btn {
    background-color: var(--thm-black);
    border: none;
    outline: none;
}

.comment-form__btn:hover {
    color: var(--thm-base);
    background-color: var(--thm-black);
}

.comment-form__btn .btn-curve {
    background: rgba(var(--thm-base-rgb), 0.1);
}

.comment-form__btn:hover .btn-curve {
    background: rgba(var(--thm-primary-rgb), 1);
}

.w-100 {
    width: 100% !important;
}

.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
