:root {
    
    --primary-bg: #0d302f;
    --secondary-bg: #0a4b45;
    --text-light: #f3e6d6;

   
    --midnight-deep: #051615; 
    --premium-gold: #d4b886;  

  
    --card-bg: rgba(243, 230, 214, 0.03); 
    --glass-border: rgba(212, 184, 134, 0.2); 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--midnight-deep);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #0e3533;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    background: #213e3b;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo img {
    
    object-fit: contain;
}

/* DESKTOP NAV */
nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    color: #b0b0b0;
    transition: 0.3s;
    text-decoration: none;
}

nav a:hover {
    color: var(--premium-gold);
}

.account-btn {
    background: linear-gradient(135deg, #f4e2d6 0%, #f4e2d6 100%);
    color: #0f0c30 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--premium-gold);
}

/* SLIDE MENU */
.slide-menu {
    position: fixed;
    top: 0;
    right: -300px;
    /* Başlangıçta ekranın dışında */
    width: 280px;
    height: 100vh;
    background: var(--midnight-deep);
    border-left: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    gap: 20px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.slide-menu.active {
    right: 0;
}

/* CLOSE BUTTON INSIDE MENU */
.close-menu {
    align-self: flex-end;
    font-size: 35px;
    color: var(--premium-gold);
    cursor: pointer;
    line-height: 1;
    margin-bottom: 20px;
}

.slide-menu a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.slide-menu a:hover {
    color: var(--premium-gold);
    padding-left: 5px;
    transition: 0.3s;
}

/* CONTENT */
.content-wrapper {
    flex: 1 0 auto;
    padding-top: 100px;
}

/* =========================================
   PREMIUM FOOTER & BRANDING
   ========================================= */

   footer {
    flex-shrink: 0;
    background: linear-gradient(to bottom, var(--midnight), var(--midnight-deep));
    padding: 80px 6% 30px;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    background-color: #213e3b;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 50px;
}

/* MARKA BÖLÜMÜ */
.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    color: var(--premium-gold);
    margin-bottom: 20px;
    font-size: 32px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    max-width: 400px;
    margin-bottom: 25px;
}

/* SOSYAL MEDYA BUTONU */
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--premium-gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 12px 25px;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.social-links a:hover {
    background: var(--premium-gold);
    color: var(--midnight-deep);
    border-color: var(--premium-gold);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.15);
}

/* FOOTER LİNKLERİ */
.footer-section h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--premium-gold);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #777;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--premium-gold);
    padding-left: 8px;
}

/* FOOTER ALT BİLGİ (COPYRIGHT & CREATOR) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

.bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: #555;
    letter-spacing: 0.5px;
}

/* XRAFTWARE ÖZEL DİKKAT ÇEKİCİ BÖLÜM */
.creator {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.creator-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-weight: 700;
}

.logo-glow-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 20px; /* Zarif ama net */
    width: auto !important;
    filter: grayscale(1) brightness(0.6);
    transition: all 0.6s ease;
}

/* XRAFTWARE ÖZEL DİKKAT ÇEKİCİ BÖLÜM */
.creator {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px; /* Daha geniş alan */
    border-radius: 50px;
    background: rgba(197, 160, 89, 0.03); /* Çok hafif altın esintili arka plan */
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.creator-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #888;
    font-weight: 700;
}

.logo-glow-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 35px; /* Logo boyutu ciddi şekilde büyütüldü */
    width: auto !important;
    filter: grayscale(1) brightness(0.8);
    transition: all 0.5s ease;
    z-index: 2;
}

/* Markana Özel Parlama ve Canlanma Efekti */
.creator:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--premium-gold);
    transform: translateY(-5px) scale(1.02); /* Daha belirgin yükselme */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 0 15px rgba(197, 160, 89, 0.2);
}

.creator:hover .brand-logo {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 10px rgba(197, 160, 89, 0.5));
    transform: rotate(-2deg); /* Hafif bir karakter katmak için */
}

.creator:hover .creator-text {
    color: var(--premium-gold);
    text-shadow: 0 0 8px rgba(197, 160, 89, 0.3);
}

/* Arka planda süzülen hafif ışık efekti */
.creator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(197, 160, 89, 0.1),
        transparent
    );
    transition: 0.6s;
}

.creator:hover::before {
    left: 100%;
}

/* MOBİL AYARI */
@media (max-width: 768px) {
    .brand-logo {
        height: 28px; /* Mobilde de fark edilsin ama ekranı bozmasın */
    }
}

/* RESPONSIVE DÜZENLEME */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand p {
        margin: 0 auto 25px;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .creator {
        order: -1; /* Mobilde marka önce gelsin */
    }
}

/* RESPONSIVE - RAZOR COMPATIBLE */
@media (max-width: 992px) {
    nav {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
    }
}