/*
Theme Name: Elvis Theme
Author: Elvis
Version: 4.5
*/

/* --- 1. RESET VE TEMEL --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Oswald', sans-serif; background-color: #0b0b0b; color: #fff; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. HEADER --- */
#main-header { background: #000; border-bottom: 4px solid #ff0000; padding: 15px 0; position: sticky; top: 0; z-index: 9999; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 30px; font-weight: bold; color: #fff; text-decoration: none; letter-spacing: 2px; }
.logo-dot { color: #ffff00; }
.header-right-stack { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.social-icons-row { display: flex; gap: 15px; align-items: center; }
.social-icons-row a { color: #fff; font-size: 18px; }
.nav-menu { display: flex; list-style: none; gap: 20px; }
.nav-menu li a { color: #fff; text-decoration: none; font-weight: bold; text-transform: uppercase; font-size: 14px; }
.nav-menu li a:hover { color: #ff0000; }
.hamburger-menu { display: none; color: #ff0000; font-size: 24px; cursor: pointer; }

/* --- 3. SLIDER (HERO) & VİDEO --- */
.myHeroSwiper { width: 100%; height: 75vh; position: relative; background: #000; overflow: hidden; }
.swiper-slide { display: flex; align-items: center; justify-content: center; position: relative; }

.hero-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2; }
.hero-inner { position: relative; z-index: 5; text-align: center; padding: 0 20px; }
.hero-main-title { font-size: clamp(35px, 8vw, 70px); color: #ffff00; text-shadow: 4px 4px 0 #ff0000; margin-bottom: 10px; text-transform: uppercase; font-weight: 800; }
.hero-tagline { font-size: clamp(16px, 3vw, 22px); color: #fff; margin-bottom: 25px; letter-spacing: 1px; }

/* Butonlar */
.btn-red { background: #ff0000; color: #fff; padding: 12px 35px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; border: 2px solid #ff0000; }
.btn-red:hover { background: transparent; color: #fff; }

/* Oklar */
.swiper-button-next, .swiper-button-prev { color: #ffff00 !important; }

/* --- 4. YAZI KARTLARI --- */
.main-content-wrapper { padding: 60px 0; }
.section-label { border-left: 5px solid #ff0000; padding-left: 15px; margin-bottom: 40px; font-size: 30px; color: #fff; }
.post-grid-layout { display: flex; flex-wrap: wrap; gap: 25px; }
.elvis-card { background: #161616; width: calc(33.333% - 17px); padding: 25px; border-bottom: 4px solid #ff0000; transition: 0.3s; }
.elvis-card:hover { transform: translateY(-5px); background: #222; }
.elvis-card h3 a { color: #ffff00; text-decoration: none; font-size: 22px; }

/* --- 5. MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .hamburger-menu { display: block; }
    .main-navigation { 
        display: none; 
        position: absolute; 
        top: 100%; left: 0; width: 100%; 
        background: #000; padding: 20px 0; border-bottom: 2px solid #ff0000;
        z-index: 1000;
    }
    .main-navigation.active { display: block; }
    .nav-menu { flex-direction: column; align-items: center; gap: 15px; }
    .elvis-card { width: 100%; }
    .myHeroSwiper { height: 60vh; }
}
/* --- ZİYARETÇİ DEFTERİ TASARIMI --- */
.comments-area {
    background: #111;
    padding: 30px;
    margin-top: 50px;
    border-top: 4px solid #ff0000;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-body {
    background: #1a1a1a;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #ffff00;
    color: #eee;
}

.comment-author cite {
    color: #ffff00;
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
}

.comment-meta a {
    color: #888;
    font-size: 12px;
    text-decoration: none;
}

/* Yorum Yapma Formu (Ziyaretçi Defteri Yazma Alanı) */
#respond {
    background: #161616;
    padding: 30px;
    border: 1px solid #333;
}

#reply-title {
    color: #ff0000;
    text-transform: uppercase;
    margin-bottom: 20px;
}

#commentform input, #commentform textarea {
    width: 100%;
    background: #000;
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

#commentform input:focus, #commentform textarea:focus {
    border-color: #ffff00;
    outline: none;
}

#submit {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

#submit:hover {
    background: #ffff00;
    color: #000;
}