* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

/* =========================
   ORTAK GENİŞLİK
========================= */

.header-container,
.section-container,
.footer-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* =========================
   ÜST MENÜ
========================= */

.site-header {
    position: relative;
    z-index: 50;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(201, 163, 87, 0.25);
}

.header-container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-area img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

.main-menu a {
    position: relative;
    color: #e8e8e8;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.25s ease;
}

.main-menu a:hover,
.main-menu a.active {
    color: #d2ad63;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: #d2ad63;
    transition: 0.25s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    margin-top: 80px;
    background: #060606;
    border-top: 1px solid rgba(201, 163, 87, 0.25);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 50px;
    padding: 60px 0 45px;
}

.footer-container h3,
.footer-container h4 {
    color: #d2ad63;
    margin-bottom: 16px;
}

.footer-about p,
.footer-contact p {
    color: #b7b7b7;
    font-size: 14px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-menu a {
    color: #b7b7b7;
    font-size: 14px;
    transition: 0.2s ease;
}

.footer-menu a:hover {
    color: #d2ad63;
}

.footer-bottom {
    text-align: center;
    padding: 18px;
    border-top: 1px solid #181818;
    color: #777;
    font-size: 13px;
}