/*
Theme Name:   One Page Theme
Theme URI:    https://emircandumoglu.com/onepagetheme
Author:       Emircan Dumoğlu
Author URI:   https://emircandumoglu.com
Description:  Kurumsal ve kişisel projeler için sade, tek sayfa WordPress teması.
Version:      1.0.0
Text Domain:  onepagetheme
*/

/* =====================================
   RESET
===================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    user-select: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

blockquote, q {
    quotes: none;
}

.wp-block {
    max-width: 100%;
}

/* Admin bar + fixed header uyumu */
body.admin-bar {
    margin-top: 0 !important;
}
body.admin-bar .site-header {
    top: 32px;
}
@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* =====================================
   TEMEL AYARLAR / BASE
===================================== */

:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #777777;
    --gold: #b08d57;
    --gold-soft: #f4e6ce;
    --dark: #1b1b1f;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
}

/* Fixed header boşluğu */
.site-main {
    display: block;
    padding-top: 120px;
}

/* Genel container */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Anchor scroll – header altında kalmasın */
#hizmetler,
#hakkimizda,
#makaleler,
#iletisim {
    scroll-margin-top: 130px;
}

/* =====================================
   HEADER (LOGO ÜSTTE, MENÜ ALTA)
===================================== */

.site-header {
    width: 100%;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #e5e5e5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
    transition: box-shadow .25s ease, background .25s ease;
}

.site-header .container {
    padding: 16px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: padding .25s ease;
}

/* Logo alanı */
.site-branding {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    max-height: 170px;
    overflow: hidden;
    transition:
        max-height .35s ease,
        opacity .35s ease,
        margin .35s ease,
        transform .35s ease;
}

.site-logo,
.custom-logo {
    height: 78px;
    width: auto;
    object-fit: contain;
    transition:
        height .35s ease,
        opacity .35s ease,
        transform .35s ease;
}

/* Menü */
.main-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-menu {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
}

.main-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    padding: 4px 0 8px;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.03em;
    transition: color .2s ease, border-color .2s ease;
}

.main-menu li a:hover {
    color: var(--gold);
    border-bottom-color: rgba(176,141,87,0.7);
}

/* Scroll sonrası compact header */
.site-header.site-header--compact {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.96);
}

.site-header.site-header--compact .container {
    padding: 10px 24px 6px;
}

/* Logo yumuşak kaybolma */
.site-header.site-header--compact .site-branding {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* Menü çok küçülmesin, sadece hafif */
.site-header.site-header--compact .main-menu li a {
    font-size: 14px;
    padding-bottom: 6px;
}

/* Mobil header ince ayar */
@media (max-width: 768px) {
    .site-header .container {
        padding: 8px 16px 6px;
    }

    .site-branding {
        margin-bottom: 4px;
        max-height: 110px;
    }

    .site-logo,
    .custom-logo {
        height: 52px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .main-menu li a {
        font-size: 14px;
        padding: 4px 0;
        letter-spacing: 0.02em;
    }

    .site-main {
        padding-top: 96px;
    }

    #hizmetler,
    #hakkimizda,
    #makaleler,
    #iletisim {
        scroll-margin-top: 110px;
    }
}

/* =====================================
   HERO
===================================== */

.hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 140px 0 260px; /* altta hizmet kutuları için boşluk */
    overflow: visible;
}

/* Karanlık overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Hero içerik */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 520px;
}

.hero-text h1,
.hero-text p {
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-button {
    padding: 12px 26px;
    background: var(--gold);
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s ease, transform .15s ease, box-shadow .15s ease;
}

.hero-button:hover {
    background: #9a7643;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

/* Hero mobil */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 140px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

/* =====================================
   HİZMETLER (HERO ALTI)
===================================== */

.services-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -130px;
    width: 100%;
    z-index: 3;
}

.services {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 0 20px;
}

.service-box {
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 340px;
    background: #ffffff;
    padding: 32px 24px 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-top 0.25s ease;
    border-top: 4px solid transparent;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    border-top-color: var(--gold);
}

/* Çok hafif logo arkaplanı */
.service-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("img/logo.png") no-repeat center;
    background-size: 70%;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.service-box > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f4e6ce;
    color: #73552b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.service-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    border-bottom: 1px solid rgba(176, 141, 87, 0.4);
}

.service-link:hover {
    border-color: transparent;
}

/* Hizmetler tablet-mobil */
@media (max-width: 900px) {
    .services {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Hizmetler küçük mobil – kartları hero’dan ayır, sıkışmayı azalt */
@media (max-width: 768px) {
    .services-wrapper {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-top: 24px;      /* hero ile kartlar arasında nefes */
        margin-bottom: 24px;   /* kartlardan sonra da boşluk */
    }

    .services {
        padding: 0 16px 24px;
        flex-direction: column;
        gap: 20px;
    }
    .service-box {
        max-width: 100%;
    }
}

/* =====================================
   HAKKIMIZDA
===================================== */

.about {
    padding: 180px 0 120px;
    background: #f7f7f7;
}

.about-inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 3;
}

.about-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.about-text h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.about-highlights {
    margin-top: 16px;
}

.about-highlights li {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

/* Sağdaki kart */
.about-card {
    flex: 2;
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 22px 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.about-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.about-role {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin: 14px 0 18px;
}

.about-stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.about-stat-label {
    font-size: 12px;
    color: #777;
}

.about-areas h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.about-areas ul {
    padding-left: 16px;
    list-style: disc;
}

.about-areas li {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

.about-quote {
    font-size: 13px;
    font-style: italic;
    color: #666;
    margin-top: 16px;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}

/* Hakkımızda mobil */
@media (max-width: 900px) {
    .about-inner {
        flex-direction: column;
        gap: 30px;
    }

    .about {
        padding: 140px 0 80px;
    }
}

/* =====================================
   HAKKIMIZDA – EKİP
===================================== */

.about-team {
    margin-top: 50px;
}

.about-team-title {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.about-team-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
    margin: 10px auto 20px;
}

.about-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.lawyer-card {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    text-align: center;
}

.lawyer-photo {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.lawyer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #222;
}

.lawyer-role {
    font-size: 13px;
    color: #777;
    margin-bottom: 4px;
}

.lawyer-area {
    font-size: 13px;
    color: #555;
}

/* Ekip mobil */
@media (max-width: 900px) {
    .about-team-grid {
        justify-content: center;
    }

    .lawyer-card {
        max-width: 100%;
    }
}

/* =====================================
   MAKALELER – ANASAYFA & ARŞİV
===================================== */

.blog,
.home-blog {
    padding: 100px 0 80px;
    background: #ffffff;
}

.blog-header {
    text-align: center;
    margin-bottom: 32px;
}

.blog-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #222;
}

.blog-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

.blog-subtitle {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.blog-card {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    background: #fafafa;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card-link {
    display: block;
    color: inherit;
}

.blog-card-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 16px 18px 20px;
}

.blog-card-date {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 6px 0 8px;
    color: #222;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.blog-more {
    text-align: center;
    margin-top: 28px;
}

.blog-more-button {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Blog mobil */
@media (max-width: 900px) {
    .blog-grid {
        justify-content: center;
    }

    .blog-card {
        max-width: 100%;
    }
}

/* Tüm makaleler – başlık & sayfalama */
.blog-header-archive {
    margin-bottom: 32px;
}

.blog-title-archive {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.blog-pagination {
    margin-top: 32px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    margin: 0 4px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid #ddd;
    color: #444;
}

.blog-pagination .page-numbers.current {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.blog-pagination .page-numbers:hover:not(.current) {
    border-color: var(--gold);
    color: var(--gold);
}

/* =====================================
   İLETİŞİM
===================================== */

.contact {
    padding: 100px 0 80px;
    background: #f7f7f7;
}

.contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #222;
}

.contact-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
    margin: 12px auto 0;
}

.contact-subtitle {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.contact-alert {
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
}

.contact-alert-success {
    background: #e2f6e9;
    color: #246b39;
}

.contact-alert-error {
    background: #fde7e7;
    color: #9c1f1f;
}

.contact-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* SOL: FORM */

.contact-form-wrapper {
    flex: 1.2;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 22px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-form-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-form-row-textarea textarea {
    min-height: 120px;
}

.contact-form-row label {
    width: 110px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    padding-top: 7px;
}

.contact-form-field {
    flex: 1;
}

/* Form alanları – masaüstü + mobil */
.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 14px;    /* yükseklik arttı */
    font-size: 15px;
    background: #fff;
}

/* Textarea için minimum yükseklik */
.contact-form-field textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form-row-submit {
    margin-top: 4px;
}

.contact-form-row-submit .contact-form-label-empty {
    width: 110px;
}

.contact-form-row-submit .contact-form-field {
    text-align: right;
}

/* SAĞ: BİLGİLER + HARİTA */

.contact-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 18px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-info-item + .contact-info-item {
    margin-top: 10px;
}

.contact-info-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 2px;
}

.contact-info-text {
    font-size: 14px;
    color: #444;
}

.contact-info-text a {
    color: #444;
}

.contact-info-text a:hover {
    color: var(--gold);
}

.contact-map {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    min-height: 220px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* İletişim tablet/mobil */
@media (max-width: 900px) {
    .contact-inner {
        flex-direction: column;
    }

    .contact-form-wrapper,
    .contact-side {
        width: 100%;
    }

    .contact-form-row {
        flex-direction: column;
    }

    .contact-form-row label,
    .contact-form-row-submit .contact-form-label-empty {
        width: auto;
        padding-top: 0;
    }

    .contact-form-row-submit .contact-form-field {
        text-align: left;
    }
}

/* İletişim küçük mobil – alanları biraz daha büyüt */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px 16px 18px;
    }

    .contact-form-field input {
        min-height: 52px;
    }

    .contact-form-field textarea {
        min-height: 160px;
    }
}

/* =====================================
   SINGLE (TEKİL MAKALE)
===================================== */

.single-article {
    padding: 120px 0 100px;
    background: #ffffff;
}

/* Single container genişliği */
.single-article .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Başlık alanı */
.single-header {
    margin-bottom: 24px;
}

.single-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.single-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

.single-meta {
    font-size: 13px;
    color: #777;
}

.single-meta-sep {
    margin: 0 4px;
}

/* Öne çıkan görsel */
.single-thumb {
    margin: 24px 0 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.single-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* İçerik */
.single-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.single-content p {
    margin-bottom: 14px;
}

.single-content h2,
.single-content h3,
.single-content h4 {
    margin: 26px 0 10px;
    font-weight: 700;
    color: #222;
}

.single-content ul,
.single-content ol {
    margin: 0 0 14px 20px;
}

.single-content a {
    color: var(--gold);
}

.single-content a:hover {
    text-decoration: underline;
}

/* Etiketler */
.single-tags {
    margin-top: 26px;
    font-size: 13px;
    color: #555;
}

.single-tags-label {
    font-weight: 600;
    margin-right: 6px;
}

.single-tag {
    display: inline-block;
    margin: 2px 4px 0 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #444;
}

/* Geri dön alanı */
.single-back-wrapper {
    margin-top: 32px;
}

/* Tüm makalelere dön butonu */
.single-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--gold);
    font-weight: 600;
    color: #fff !important;
    font-size: 14px;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.single-back-link::before {
    content: "←";
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
}

.single-back-link:hover {
    background: #976f3c;
    box-shadow: 0 6px 14px rgba(0,0,0,.15);
    transform: translateY(-2px);
}

/* Single sayfalar kısa olduğunda footer dipte dursun */
.single .site-main {
    min-height: calc(100vh - 180px); /* header + footer yaklaşık toplam */
    padding-bottom: 60px;
}

/* Single mobil */
@media (max-width: 768px) {
    .single-article {
        padding: 100px 0 80px;
    }

    .single-title {
        font-size: 26px;
    }

    .single-thumb {
        margin: 18px 0 16px;
    }
}

/* =====================================
   404 SAYFASI
===================================== */

.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.error-404 .container {
    max-width: 600px;
}

.error-code {
    font-weight: 900;
    color: var(--gold);
    line-height: 0.8;
    font-size: clamp(200px, 35vw, 320px);
    margin-bottom: 20px;
    user-select: none;
}

.error-message {
    font-size: 20px;
    color: #444;
    margin-bottom: 28px;
}

.error-button {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    background: var(--gold);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background .2s, transform .2s, box-shadow .2s;
}

.error-button:hover {
    background: #9a7643;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* =====================================
   FOOTER
===================================== */

.site-footer {
    background: #121212;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 18px 0;
    color: #d6d6d6;
    font-size: 15px;
    letter-spacing: .2px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-center {
    text-align: center;
    flex: 1;
    font-weight: 500;
    color: #bfbfbf;
}

.footer-left {
    margin-left: auto;
}

.footer-left a {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    transition: .25s ease;
}

.footer-left a:hover {
    color: #e7c48c;
}

.footer-center,
.footer-left {
    padding: 0 8px;
}

/* Footer mobil */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-left {
        margin-left: 0;
    }
}
