* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fef9f0;
    color: #2c1e12;
    line-height: 1.6;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.main-header {
    background: #1a0f0a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 99999;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    font-family: Georgia, serif;
    color: #f1dfc7;
    text-decoration: none;
}

.logo span {
    color: #c89356;
}

.main-nav {
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #e4c7a3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #c89356;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #f1dfc7;
    font-size: 24px;
    cursor: pointer;
}

/* HERO */
.hero {
    min-height: 80vh;
    background: linear-gradient(135deg, #1a0f0a 0%, #2c1e12 100%);
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(200, 147, 86, 0.3);
    border-radius: 30px;
    color: #d6a972;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-family: Georgia, serif;
    color: #f1dfc7;
    line-height: 1.1;
}

.hero-desc {
    font-size: 20px;
    color: #e4c7a3;
    margin: 20px 0;
}

.hero-book img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #c89356;
    color: #fff;
}

.btn-primary:hover {
    background: #b07a42;
    transform: none;
}

.btn-secondary {
    border: 1px solid #c89356;
    color: #c89356;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(200, 147, 86, 0.1);
    transform: none;
}

/* GENERAL SECTIONS */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-family: Georgia, serif;
    text-align: center;
    color: #2c1e12;
    margin-bottom: 40px;
}

.page-title {
    font-size: 48px;
    font-family: Georgia, serif;
    text-align: center;
    margin: 50px 0 30px;
    color: #2c1e12;
}

/* PANELS */
.panels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.panel {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.panel h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c1e12;
}

/* BOOKS */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.book-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.book-card:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.book-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.book-card h3 {
    padding: 15px 15px 5px;
    font-size: 18px;
}

.book-card p {
    padding: 0 15px;
    font-size: 14px;
    color: #666;
}

.price {
    padding: 10px 15px;
    font-size: 22px;
    font-weight: bold;
    color: #c89356;
}

/* NEWS */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: #c89356;
    font-size: 13px;
    margin: 8px 0;
}

/* VIDEOS */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.video-card:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    padding: 15px;
    font-size: 18px;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: none;
}

.gallery-item:hover img {
    transform: none;
}

/* EVENTS */
.events-list {
    max-width: 800px;
    margin: 40px auto;
}

.event-card {
    display: flex;
    gap: 25px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.event-date {
    background: #c89356;
    color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 15px 20px;
    min-width: 80px;
}

.event-day {
    font-size: 32px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.event-month {
    font-size: 14px;
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-location {
    color: #c89356;
    margin: 8px 0;
    font-size: 14px;
}

/* CHARACTERS */
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.character-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.character-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.character-card h3 {
    margin: 15px 0 5px;
    font-size: 22px;
}

.character-book {
    color: #c89356;
    font-size: 14px;
    margin-bottom: 12px;
}

.character-card p {
    padding: 0 15px 20px;
    font-size: 14px;
}

/* AUTHOR */
.author-cover {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, #1a0f0a 0%, #2c1e12 100%);
    background-image: url('https://images.pexels.com/photos/2387873/pexels-photo-2387873.jpeg?auto=compress&cs=tinysrgb&w=1600&h=500&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.author-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 10, 0.7);
}

.author-cover-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #fff;
}

.author-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #c89356;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 48px;
    font-family: Georgia, serif;
}

.author-title {
    font-size: 18px;
    color: #d6a972;
    margin-top: 10px;
}

.author-bio {
    padding: 50px 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.author-bio p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 40px 0;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form button {
    background: #c89356;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
}

/* FOOTER */
.main-footer {
    background: #1a0f0a;
    color: #d7b894;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-social h3 {
    color: #f1dfc7;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #d7b894;
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover {
    color: #c89356;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: #d7b894;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #c89356;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 184, 148, 0.2);
    font-size: 14px;
}

/* MODAL */
.modal {
    display: none !important;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    pointer-events: none !important;
    cursor: auto !important;
}

.modal img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* ALERT */
.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert.success {
    background: #4caf50;
    color: #fff;
}

.alert.error {
    background: #f44336;
    color: #fff;
}

/* ========== KONUK YAZARLAR VE KİTAPLARI ========== */
.guest-writers-section {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.guest-featured {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #f5f0e8 0%, #fff 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    align-items: center;
}

.guest-featured-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c89356;
}

.guest-featured-name {
    font-size: 24px;
    font-family: Georgia, serif;
    color: #2c1e12;
    margin-bottom: 8px;
}

.guest-featured-bio {
    color: #5a4a38;
    margin-bottom: 12px;
    line-height: 1.5;
}

.guest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guest-card {
    background: #f5f0e8;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.guest-card:hover {
    transform: none;
}

.guest-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.guest-card-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c1e12;
    margin-bottom: 8px;
}

.guest-card-bio {
    font-size: 13px;
    color: #5a4a38;
    margin-bottom: 12px;
    line-height: 1.4;
}

.btn-small {
    padding: 6px 16px;
    font-size: 12px;
}

/* KONUK YAZAR KİTAP GÖRSELLERİ */
.guest-book {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.guest-book img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: none;
}

.guest-book img:hover {
    transform: none;
}

.guest-book span {
    font-size: 13px;
    color: #c89356;
    font-weight: 500;
}

/* CURSOR FIX */
html, body, * {
    cursor: auto !important;
}

a, button, .btn, .main-nav a, .social-icons a, .gallery-item {
    cursor: pointer !important;
}

/* MOBILE */
@media (max-width: 900px) {
    .main-header {
        padding: 10px 0;
    }

    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo {
        width: 100%;
    }

    .logo a {
        display: block;
        font-size: 24px;
        line-height: 1.2;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .main-nav {
        display: block !important;
        width: 100%;
        position: static !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        overflow: hidden !important;
    }

    .main-nav ul {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0 4px 0 !important;
        list-style: none !important;
        scrollbar-width: none;
    }

    .main-nav ul::-webkit-scrollbar {
        display: none;
    }

    .main-nav ul li {
        flex: 0 0 auto !important;
        width: auto !important;
        border: none !important;
        list-style: none !important;
    }

    .main-nav ul li a {
        display: block !important;
        white-space: nowrap !important;
        padding: 10px 14px !important;
        font-size: 14px !important;
        line-height: 1 !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.06) !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        color: #f3e5d1 !important;
        text-decoration: none !important;
    }

    .main-nav ul li a.active {
        color: #c89356 !important;
        border-color: rgba(200,147,86,0.45) !important;
        background: rgba(200,147,86,0.08) !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .panels,
    .videos-grid,
    .news-grid,
    .footer-flex,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        align-self: center;
    }

    .hero-title {
        font-size: 40px;
    }
    
    .guest-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guest-grid {
        grid-template-columns: 1fr;
    }
    
    .guest-book img {
        width: 70px;
        height: 90px;
    }
	* {
    transform: none !important;
    will-change: auto !important;
}

.btn, .card, .book-card, .panel {
    transform: none !important;
	/* HOVER TAM KAPAT */
* {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* CURSOR SABİT */
body {
    cursor: default !important;
}

a, button, .btn, .panel, .book-card, .video-card {
    cursor: pointer !important;
}