@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #1e293b;
    --accent: #c2a37d; /* Altın/taş tonu */
    --bg: #fdfcfb;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
.quote,
.logo {
    font-family: 'Playfair Display', serif;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    background: rgba(194, 163, 125, 0.12);
    padding: 2px 8px;
    border-radius: 999px;
}

/* --- COMMENTS FORM --- */
.comment-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-soft);
}

.comment-form label {
    display: block;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font: inherit;
    outline: none;
}

.comment-form textarea {
    resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: rgba(194, 163, 125, 0.9);
    box-shadow: 0 0 0 4px rgba(194, 163, 125, 0.18);
}

/* --- GUESTBOOK / COMMENTS DISPLAY --- */
.comment-display-container {
    max-width: 900px;
    margin: 0 auto 40px;
}

.comment-item {
    background: var(--white);
    padding: 25px;
    border-radius: 22px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
}

.comment-user { font-weight: 800; color: var(--primary); }
.comment-date { font-size: 0.8rem; color: var(--text-light); margin-left: 10px; }
.comment-text { margin-top: 10px; color: var(--text-dark); }

.admin-reply {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(194, 163, 125, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
}
.admin-reply b { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; }

.load-more-comments {
    text-align: center;
    margin-bottom: 40px;
    display: none; /* JS ile kontrol edilecek */
}

.btn-load-more {
    padding: 12px 35px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--accent);
    color: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 600;
    color: var(--text-light);
    margin: 10px 0 18px;
}

.checkbox input {
    margin-top: 3px;
}

.comment-note {
    margin-top: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.honeypot {
    position: absolute;
    left: -5000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* --- NAV BAR --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 15px 10%;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

body.page nav {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 15px 10%;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

nav.scrolled .logo {
    color: var(--primary);
}

body.page .logo {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    position: relative;
}

nav.scrolled .nav-links a {
    color: var(--text-dark);
}

body.page .nav-links a {
    color: var(--text-dark);
}

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

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

/* --- HERO --- */
.hero {
    height: 100vh;
    width: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6)),
        url('Fotos.img/IMG_20240831_132753.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.6rem);
    font-weight: 300;
    max-width: 900px;
    margin-bottom: 50px;
    opacity: 0.95;
    animation: fadeInUp 1.3s ease-out;
    line-height: 1.4;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.6s ease-out;
}

.btn-primary {
    padding: 16px 45px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(194, 163, 125, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(194, 163, 125, 0.6);
}

.btn-youtube {
    background: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

/* --- ABOUT SECTION --- */
.about {
    padding: 150px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-img {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    position: relative;
}

.about-img img {
    width: 100%;
    display: block;
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.about-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.inline-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.inline-link:hover {
    text-decoration: underline;
}

/* --- PODCAST & VIDEO GRID --- */
section {
    padding: 120px 10%;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.premium-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-deep);
}

.card-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #0b1220;
}

.card-body {
    padding: 35px;
}

.tag {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.podcast-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary);
    line-height: 1.2;
}

.meta-line {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.card-desc {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 20px;
}

.card-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary);
    font-weight: 800;
}

.card-link:hover {
    text-decoration: underline;
}

/* --- VIDEO FILE --- */
.video-file {
    grid-column: span 2;
}

.video-player {
    width: 100%;
    margin-top: 16px;
    border-radius: 22px;
    background: #000;
}

/* --- PHOTOS --- */
.photo-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.photo-img {
    height: 320px;
}

/* --- PHILOSOPHY --- */
.philosophy-card {
    border-left: 6px solid rgba(194, 163, 125, 0.55);
}

.philosophy-img {
    height: 200px;
}

.philosophy-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.philosophy-loading {
    color: var(--text-light);
    font-weight: 600;
}

/* --- FEATURED PODCAST CARD --- */
.featured-podcast .card-img {
    height: 280px;
    position: relative;
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.72), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* --- AUDIO PLAYER --- */
.audio-player {
    width: 100%;
    border-radius: 50px;
    outline: none;
    accent-color: var(--accent);
    height: 40px;
}

/* --- HOW TO --- */
.howto {
    margin-top: 35px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-soft);
}

.howto summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--primary);
}

.howto ol {
    margin-top: 14px;
    padding-left: 22px;
    color: var(--text-light);
}

/* --- QUOTE --- */
.parallax-quote {
    padding: 150px 10%;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
}

.parallax-quote .quote {
    font-size: 2.8rem;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
    font-weight: 400;
}

/* --- FOOTER --- */
footer {
    padding: 100px 10% 50px;
    background: #0f172a;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    color: white;
    text-decoration: none;
}

.footer-desc {
    opacity: 0.7;
    max-width: 420px;
}

.footer-links h4 {
    margin-bottom: 30px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 18px 5%;
    }

    nav.scrolled {
        padding: 12px 5%;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    section {
        padding: 80px 5%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: min(380px, 100%);
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}
