* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f3eb;
    color: #1f1a17;
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

header {
    background: #1f1a17;
    padding: 18px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    color: #f3e7c9;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 18px;
}

nav a {
    color: #f5f1e8;
    text-decoration: none;
    font-size: 15px;
}

nav a:hover {
    opacity: 0.8;
}

main {
    padding: 0;
}

h1 {
    margin-top: 0;
    font-size: 36px;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* Genel alanlar */

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.page-header,
.features,
.showcase-preview,
.form-section,
.home-info,
.content-section {
    padding: 28px 0 18px;
}

/* Genel hero */

.hero,
.page-hero,
.hero-cover {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero {
    padding: 72px 0 56px;
    min-height: 0;
}

.hero-content,
.page-hero-inner,
.hero-content-light {
    position: relative;
    z-index: 3;
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    background: #eadfcb;
    color: #5d4631;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1,
.page-hero-inner h1,
.hero-content-light h1 {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.12;
}

.hero p,
.page-hero-inner p,
.hero-content-light p {
    max-width: 680px;
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.75;
}

/* Açık hero (anasayfa normal hero gibi) */

.hero h1,
.hero p {
    color: #1f1a17;
}

/* Koyu kapak hero */

.page-hero,
.hero-cover {
    border-radius: 24px;
    margin-bottom: 26px;
    color: #fffaf2;
}

.page-hero::before,
.hero-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.page-hero-overlay,
.hero-cover-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(20, 16, 13, 0.82) 0%, rgba(20, 16, 13, 0.48) 45%, rgba(20, 16, 13, 0.22) 100%);
}

.page-hero-inner,
.hero-content-light {
    color: #fffaf2;
}

.page-hero-inner h1,
.hero-content-light h1 {
    color: #fffaf2;
}

.page-hero-inner p,
.hero-content-light p {
    color: rgba(255, 250, 242, 0.92);
}

/* Sayfa hero görselleri */

.page-hero-about::before {
    background-image: url('/assets/img/pages/about/about-hero.jpg');
}

.page-hero-contact::before {
    background-image: url('/assets/img/pages/contact/contact-hero.jpg');
}

.page-hero-sell::before {
    background-image: url('/assets/img/pages/forms/sell-hero.jpg');
}

.page-hero-buy::before {
    background-image: url('/assets/img/pages/forms/buy-hero.jpg');
}

.page-hero-antiques::before,
.hero-cover-antiques::before {
    background-image: url('/assets/img/pages/antiques/antiques-hero.jpg');
}

/* Butonlar */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    background: #2d2118;
    color: #f8f3ea;
}

.btn-secondary {
    background: transparent;
    color: #2d2118;
    border-color: #2d2118;
}

.home-slider-secondary,
.hero-btn-light {
    color: #fffaf2;
    border-color: rgba(255, 250, 242, 0.7);
    background: rgba(255, 250, 242, 0.06);
}

/* Kartlar ve grid */

.feature-grid,
.showcase-grid,
.form-grid,
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 28px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card,
.showcase-card,
.site-form,
.content-card,
.contact-info-card,
.contact-form-card,
.about-main-card,
.about-side-card,
.empty-showcase,
.antique-detail-image-card,
.antique-detail-content-card {
    background: #fffaf2;
    border: 1px solid #e8dcc8;
    border-radius: 16px;
}

.feature-card,
.showcase-card {
    padding: 20px;
}

.feature-card h3,
.showcase-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* Form */

.site-form {
    padding: 24px;
}

.contact-form-compact {
    background: transparent;
    border: 0;
    padding: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #d9cbb5;
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
}

/* Uyarılar */

.alert {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid;
}

.alert-success {
    background: #eef9f0;
    border-color: #b7dfbe;
    color: #1f5a2b;
}

.alert-error {
    background: #fff1f1;
    border-color: #e4b8b8;
    color: #8a2222;
}

.field-error {
    color: #8a2222;
    font-size: 13px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Anasayfa slider */

.home-slider {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    margin-bottom: 28px;
    background: #1f1a17;
}

.home-slider-full {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

.home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 16, 13, 0.82) 0%, rgba(20, 16, 13, 0.48) 45%, rgba(20, 16, 13, 0.20) 100%);
}

.home-slide-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 56px));
    margin: 0 auto;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fffaf2;
}

.home-slide-content h1 {
    margin: 0 0 16px;
    font-size: 50px;
    line-height: 1.08;
    color: #fffaf2;
}

.home-slide-content p {
    max-width: 680px;
    margin-bottom: 28px;
    color: rgba(255, 250, 242, 0.92);
    font-size: 17px;
    line-height: 1.75;
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.16);
    color: #fffaf2;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.home-slider-prev {
    left: 18px;
}

.home-slider-next {
    right: 18px;
}

.home-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.home-slider-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.45);
    cursor: pointer;
}

.home-slider-dots button.is-active {
    background: #fffaf2;
}

/* Vitrin */

.showcase-card {
    padding: 18px;
}

.showcase-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    display: block;
}

.placeholder {
    background: linear-gradient(135deg, #e8dcc8, #d4c2a8);
}

.showcase-price {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
}

.showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.showcase-actions {
    margin-top: 14px;
}

.empty-showcase {
    padding: 24px;
}

/* Footer */

.site-footer {
    background: #1f1a17;
    color: #f5f1e8;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #f5f1e8;
    text-decoration: none;
    font-size: 14px;
}

.footer-col a:hover {
    opacity: 0.8;
}

/* WhatsApp */

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* İletişim */

.contact-layout {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 24px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.contact-info-card,
.contact-form-card {
    padding: 24px;
}

.contact-info-card h2,
.contact-form-card h2 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-info-item strong {
    font-size: 15px;
}

.contact-info-item span {
    line-height: 1.6;
}

.contact-note {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #eadfcb;
}

.contact-note p {
    margin: 0;
}

.contact-map-full {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8dcc8;
    background: #fffaf2;
}

.contact-map-full iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.map-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8dcc8;
    border-radius: 12px;
}

/* İçerik */

.content-card {
    padding: 24px;
}

.content-card p {
    margin: 0;
    line-height: 1.8;
}

/* Hakkımızda */

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
    gap: 24px;
    padding: 10px 0 28px;
}

.about-main-card,
.about-side-card {
    border-radius: 18px;
    padding: 26px;
}

.about-main-card h2,
.about-side-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.about-main-card p {
    margin: 0 0 16px;
    line-height: 1.85;
    font-size: 16px;
}

.about-main-card p:last-child {
    margin-bottom: 0;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-point {
    padding-bottom: 16px;
    border-bottom: 1px solid #eadfcb;
}

.about-point:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.about-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.about-point span {
    line-height: 1.65;
    font-size: 15px;
}

.about-address-box {
    margin-top: 24px;
    padding: 18px;
    border-radius: 14px;
    background: #f6efe2;
    border: 1px solid #e8dcc8;
}

.about-address-box strong {
    display: block;
    margin-bottom: 8px;
}

.about-address-box p {
    margin: 0;
    line-height: 1.7;
}

/* Antika detay */

.antique-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    padding: 10px 0 28px;
}

.antique-detail-image-card,
.antique-detail-content-card {
    border-radius: 18px;
    padding: 24px;
}

.antique-detail-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.antique-detail-content-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.antique-detail-price {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
}

/* Responsive */

@media (max-width: 900px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
    }

    .feature-grid,
    .showcase-grid,
    .form-grid,
    .footer-inner,
    .about-layout,
    .contact-layout,
    .antique-detail-layout {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .hero-cover {
        min-height: 320px;
        border-radius: 18px;
    }

    .page-hero-inner,
    .hero-content,
    .hero-content-light {
        width: calc(100% - 32px);
    }

    .hero h1,
    .page-hero-inner h1,
    .hero-content-light h1 {
        font-size: 34px;
    }

    .hero p,
    .page-hero-inner p,
    .hero-content-light p {
        font-size: 16px;
    }

    .contact-map-full iframe {
        height: 340px;
    }

    .home-slider {
        min-height: 440px;
    }

    .home-slide-content {
        width: calc(100% - 32px);
        min-height: 440px;
    }

    .home-slide-content h1 {
        font-size: 34px;
    }

    .home-slide-content p {
        font-size: 16px;
    }

    .home-slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }

    .home-slider-prev {
        left: 10px;
    }

    .home-slider-next {
        right: 10px;
    }

    .antique-detail-image {
        height: 340px;
    }
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 28px;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(245, 241, 232, 0.75);
}

.footer-credit {
    opacity: 0.7;
}

@media (max-width: 900px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
.footer-credit a {
    color: inherit;
    text-decoration: none;
}

.footer-credit a:hover {
    opacity: 0.8;
}
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-right {
        grid-template-columns: 1fr;
    }
}
.site-footer {
    background: #1f1a17;
    color: #f5f1e8;
    padding: 40px 0 0;
    margin-top: 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 1fr 1.3fr;
    gap: 32px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.footer-col strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-col p {
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
    color: rgba(245, 241, 232, 0.9);
}

.footer-col a {
    color: #f5f1e8;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
}

.footer-col a:hover {
    opacity: 0.8;
}

.footer-col-about p {
    max-width: 420px;
}

.footer-col-contact p span {
    font-weight: 700;
    color: #fffaf2;
}

.footer-more {
    margin-top: 8px;
    display: inline-block;
    font-weight: 700;
    color: #f3e7c9;
    text-decoration: none;
}

.footer-more:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 28px;
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(245, 241, 232, 0.75);
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
}

.footer-credit a:hover {
    opacity: 0.8;
}

@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1.3fr 0.9fr 0.9fr 1.2fr;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-col-about p {
        max-width: none;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}