﻿/* fiala.css - Main Site Design */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #111;
    --secondary: #888;
    --bg-light: #f9f9f9;
    --border: #eee;
    --gold: #b89e14;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; 
    max-width: 1750px;
    margin: 0 auto;
    height: 110px; 
}

.logo-wrapper img {
    height: 100%; 
    width: auto;
    max-width: 90px;
    object-fit: contain;
    display: block;
}

.logo-wrapper:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* MEGA MENU (DROPDOWN) */
.dropdown-wrapper {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-link {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.mega-link:hover {
    background-color: #f5f5f5;
    color: #000;
    padding-left: 25px;
}

.header-actions {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

/* MAIN CONTENT */
.main-content {
    min-height: 80vh;
}

/* FOOTER */
.site-footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-text {
    color: #999;
    font-size: 13px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #999;
    font-size: 13px;
}

.footer-links a:hover { color: #fff; padding-left: 5px; }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
}

.social-icons a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 15px; /* Üst boşluğu azalttım */
    padding-bottom: 15px; /* Alt boşluğu azalttım */
    text-align: center;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.voidmark-signature {
    color: #e0e0e0; /* Tam beyaz değil, kırık beyaz */
    font-weight: 600; /* Çok kalın olmasın */
    margin-left: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px; /* Logoya benzesin diye hafif küçülttüm */
}

.voidmark-signature:hover { 
    color: var(--gold); 
    text-decoration: none; /* Altı çizilmesin, sadece renk değişsin */
    transition: color 0.3s ease;
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Menu Panel */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none; 
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -300px; 
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: right 0.3s ease;
    padding: 40px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    right: 0;
}

.close-menu-btn {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #111;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-links, .header-actions { display: none; }
    .mobile-menu-btn { display: block; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
}
