:root {
    --primary-color: #A36ABF;
    --secondary-color: #6A1B9A;
    --accent-color: #ff4081;
    --dark-color: #4A148C;
    --light-color: #f3e5f5;
    --text-color: #333;
    --light-text: #fff;
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    --box-shadow: 0 2px 8px rgba(156, 39, 176, 0.1);
    --font-primary: "Roboto", sans-serif;
    --font-secondary: "Dancing Script", cursive;
    --header-color: #6A1B9A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lora", "Poppins", sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: var(--text-color);
    min-height: 100vh;
}
.scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: opacity 0.3s, visibility 0.3s;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

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

header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1px;
    position: relative;
}

nav .logo img {
    width: 80px;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    text-decoration: none;
    margin-left: 1px;
    position: relative;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    
}

.nav-links a::after {
     content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #ffeb3b;
        transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #f8a839;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}


#story {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in;
}

.story-form,
.stories-container {
    width: 48%;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-form:hover,
.stories-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.story-form {
    margin-right: 2%;
}

.story-form h2,
.stories-container h4 {
    color: var(--secondary-color);
}

/* Story Form */
textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e1bee7;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(163, 106, 191, 0.2);
}

button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: rgb(255, 255, 255);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

button:hover::before {
    left: 100%;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(106, 27, 154, 0.3);
}


.story-card {
    width: 100%;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #c094c8;
    animation: fadeIn 0.5s ease-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.story-card:last-child {
    margin-bottom: 1rem;
}

.story-card .story-content {
    width: 100%;
    margin-bottom: 1rem;
    text-align: left;
}

.story-card .story-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.story-card .story-meta {
    font-size: 0.85rem;
    color: #888;
}


.story-card .like-section {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.story-card .like-section .like-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    box-shadow: none;
}

.story-card .like-section .like-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: none;
}

.story-card .like-section .like-count {
    margin-left: 0.5rem;
    font-size: 1rem;
    color: #666;
}


.story-card .comments-section {
    width: 100%;
    margin-top: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    text-align: left;
}

.story-card .comments-section h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.story-card .comments-list {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.story-card .comments-list .comment {
    background-color: #f9f9f9;
    border-left: 3px solid var(--primary-color);
    padding: 0.7rem 1rem;
    margin-bottom: 0.7rem;
    border-radius: 5px;
}

.story-card .comments-list .comment-author {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.story-card .comments-list .comment-author small {
    font-weight: normal;
    color: #888;
    font-size: 0.8rem;
}

.story-card .comments-list .comment-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.story-card .comment-input-area {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.story-card .comment-input-area .comment-input {
    flex-grow: 1;
    min-height: 40px;
    height: auto;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    resize: none;
}

.story-card .comment-input-area .comment-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.story-card .comment-input-area .comment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}



.load-more {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: transform 0.3s, box-shadow 0.3s ease;
}

.load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(106, 27, 154, 0.3);
}

.pariltili {
    font-family: "Lora";
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    text-shadow: 0 0 5px rgba(107, 33, 168, 0.8), 0 0 10px rgba(107, 33, 168, 0.6),
        0 0 15px rgba(107, 33, 168, 0.4), 0 0 20px rgba(107, 33, 168, 0.2),
        0 0 25px rgba(107, 33, 168, 0.1);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(107, 33, 168, 0.8), 0 0 10px rgba(107, 33, 168, 0.6),
            0 0 15px rgba(107, 33, 168, 0.4);
    }
    to {
        text-shadow: 0 0 10px rgba(107, 33, 168, 0.8), 0 0 20px rgba(107, 33, 168, 0.6),
            0 0 30px rgba(107, 33, 168, 0.4), 0 0 40px rgba(107, 33, 168, 0.2);
    }
}

h1 {
    font-family: "Lora", sans-serif;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}


footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 40px 20px;
    font-family: "Lora", sans-serif;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}


.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.social-media {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #fff;
    font-size: 30px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: #f5a623;
    transform: translateY(-5px);
}


.footer-center {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links,
.footer-contact {
    flex: 1;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding-left: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-links ul li:hover,
.footer-contact ul li:hover {
    transform: translateX(5px);
}

.footer-links a,
.footer-contact ul li {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact ul li:hover {
    color: #f5a623;
}

/* Sağ Kısım */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}


.app-card {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.app-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Uygulama İndirme Butonları */
.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.app-button img {
    width: 120px;
    transition: transform 0.3s ease;
}

.app-button:hover img {
    transform: scale(1.05);
}


.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.hero .slider img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero .slider img:hover {
    transform: scale(1.02);
}

/* Film kutuları için */
.film-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 50px;
}

.film-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: calc(25% - 20px);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.film-box:nth-child(2) {
    animation-delay: 0.1s;
}

.film-box:nth-child(3) {
    animation-delay: 0.2s;
}

.film-box:nth-child(4) {
    animation-delay: 0.3s;
}


.film-box .icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.film-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

/* Başlık */
.film-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
}

/* Açıklama metni */
.film-box p {
    font-size: 14px;
    line-height: 1.6;
}


.film-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    animation: fadeIn 0.5s ease-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

h2 {
    margin-bottom: 10px;
    font-size: 2rem;
}

p {
    font-size: 1em;
}


.books-section {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    gap: 30px; 
    padding: 20px;
    margin-top: 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #e4e8f0 100%);
}

.book {
    background-color: transparent;
}


.book-container {
    font-size: small;
    position: relative;
    width: 250px; 
    min-height: 450px; 
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; 
}

.book-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.book-container .book-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    flex-grow: 1; 
    padding-bottom: 10px; 
}


.small-image {
    max-width: 150px; 
    height: auto;
    display: block;
    border-radius: 8px; 
    margin-top: 15px; 
    margin-bottom: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}


.book-container .book-content p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #555;
    margin: 0 15px; 
}


.book-container .like-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #eee;
    background-color: #fcfcfc;
    margin-top: auto; 
}

.book-container .like-section .like-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.5em; 
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-container .like-section .like-btn:hover,
.book-container .like-section .like-btn.liked {
    color: #ff6f61;
    transform: scale(1.1);
}

.book-container .like-section .like-btn.liked i.fas {
    color: #ff6f61; 
}

.book-container .like-section .like-count {
    margin-left: 8px;
    font-size: 1em;
    color: #666;
}


.book-container .comments-section {
    width: 100%;
    margin-top: 0; 
    border-top: 1px solid #eee;
    padding: 15px;
    background-color: #f8f8f8;
    text-align: left;
    max-height: 250px; 
    overflow-y: auto;
    flex-shrink: 0; 
}

.book-container .comments-section h5 {
    font-size: 1.1em;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.book-container .comments-list {
    margin-bottom: 10px;
    padding-right: 5px;
}

.book-container .comments-list .comment {
    background-color: #f1f1f1;
    border-left: 3px solid var(--primary-color);
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 3px;
    font-size: 0.85em;
}

.book-container .comments-list .comment-author {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 0.8em;
}

.book-container .comments-list .comment-author small {
    font-weight: normal;
    color: #888;
    font-size: 0.7em;
}

.book-container .comments-list .comment-text {
    color: #555;
    line-height: 1.3;
}

.book-container .comment-input-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.book-container .comment-input-area .comment-input {
    min-height: 40px;
    height: auto;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.85em;
    resize: vertical;
}

.book-container .comment-input-area .comment-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85em;
    background: var(--primary-color);
    color: white;
    box-shadow: none;
    align-self: flex-end;
}

.book-container .comment-input-area .comment-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* Makale içerik düzeni */
.article-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    line-height: 1.6;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.article-content p {
    font-size: 18px;
    margin-bottom: 15px;
}


.slider-container {
    position: relative;
    width: 100%;
    height: calc(100vw / 2.5);
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

/* Slayt düzeni */
.slide {
    width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

/* Fotoğraf görünümü */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slayt içeriği */
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    width: 90%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: slideInUp 0.8s ease-out;
}

.slide-content h2,
.slide-conte1nt h2 { 
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.slide-content p {
    font-size: 18px;
}


.youtube-btn {
    display: inline-block;
    margin-top: 15px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 20;
}

.prev,
.next {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Düğme göstergeleri */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.3);
}

.dot.active {
    background-color: white;
    transform: scale(1.3);
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    border-radius: 50px;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top.show {
    display: block;
    opacity: 1;
    transform: scale(1);
    animation: bounce 2s infinite;
}



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1100;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}



/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Genel responsive düzenlemeler */
@media (max-width: 1200px) {
    .film-box {
        width: calc(33.333% - 20px);
    }
    nav {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    /* Navbar için */
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li {
        text-decoration: none;
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 10px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links li:last-child a {
        text-decoration: none;
        border-bottom: none;
    }

    /* ... (Qalan media-query kodunuz eyni qalır) ... */


    /* Film kutuları mobilde 2 sütuna yerleşecek */
    .film-box {
        width: calc(50% - 20px);
    }
    /* Film kutularının içindeki linklerin altındaki çizgiyi kaldır */
.film-box {
    text-decoration: none; /* Bu, film-box'ın özündəki alt xətti silir */
    color: white; /* Hər ehtimala qarşı rəngi təyin edirik */
}

.film-box a {
    text-decoration: none; /* Film-box içindeki a elementlerinin altındaki xətti silir */
    color: white; /* Film-box içindeki a elementlerinin rəngini ağ edir */
}

.film-box h3 {
    text-decoration: none; /* h3 içindeki metnin altındaki xətti silir (ehtiyat üçün) */
    color: white; /* h3 metninin rəngini ağ edir */
}

.film-box:hover {
    text-decoration: none; /* Hover olanda da alt xətt gəlməsin */
}

/* Əlavə olaraq, hover effektlərini də nəzərə alırıq */
.film-box a:hover {
    text-decoration: none;
    color: #f8a839; /* İstədiyiniz hover rəngini buraya yazın */
}

.film-box h3:hover {
     text-decoration: none;
     color: #f8a839; /* H3 hover rəngi */
}

    /* Hero slider düzeni */
    .hero .slider img {
        height: auto;
        width: 100%;
    }

    .hero .slider-container {
        height: 250px;
    }

    .slide-content {
        bottom: 20px;
        width: 95%;
    }
    .slide-content h2 {
        font-size: 1.5rem;
        padding: 8px 15px;
    }
    .slide-content p {
        font-size: 0.9rem;
    }
    .youtube-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    /* Footer düzeni */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        margin-bottom: 20px;
    }

    /* Kartlar için grid düzeni */
    .card-container {
        grid-template-columns: 1fr;
    }

    /* Story form ve container düzeni */
    #story {
        flex-direction: column;
        padding: 1rem;
    }

    .story-form,
    .stories-container {
        width: 100%;
        margin-bottom: 20px;
        padding: 1.5rem;
    }

    .story-form {
        margin-right: 0;
    }

    /* Scroll-top butonu düzenlemesi */
    .scroll-top {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 16px;
    }

    /* Makale içerik düzeni */
    .article-content {
        padding: 15px;
        font-size: 16px;
    }

    /* Başlık font büyüklükleri */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Film kutuları tek sütun düzeni */
    .film-box {
        width: 100%;
        margin-bottom: 15px;
        padding: 20px;
    }

    /* Kitap kutularını mobilde daha geniş yapalım */
    .books-section {
        padding: 0;
        gap: 20px; /* Mobil görünümde aralığı azaldıq */
    }
    .book-container {
        width: calc(100% - 40px); /* Yanlardan 20px boşluq */
        margin: 10px auto;
    }
    .book-container .small-image {
        max-width: 120px; /* Mobil görünümde daha küçük resim */
    }
    .book-container .book-content p {
        font-size: 0.85em; /* Mobil görünümde daha kiçik mətn */
    }
    .book-container .comments-section {
        max-height: 200px; /* Mobil görünümde şərh bölməsinin hündürlüyü */
        padding: 10px;
    }
    .book-container .comments-section h5 {
        font-size: 1em;
    }
    .book-container .comment-input-area .comment-input {
        min-height: 35px;
        padding: 6px;
        font-size: 0.8em;
    }
    .book-container .comment-input-area .comment-btn {
        padding: 6px 10px;
        font-size: 0.8em;
    }


    /* Slider'daki görsellerin responsive düzeni */
    .hero .slider img {
        width: 100%;
        height: auto;
    }
    .hero .slider-container {
        height: 200px;
    }

    /* Footer düzeni */
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    .app-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .app-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .app-button img {
        width: 100px;
    }

    /* Navigasyon padding'ini ayarla */
    nav {
        padding: 10px;
    }

    nav .logo img {
        width: 70px;
    }
    .hamburger {
        margin-right: 10px;
    }

    .slide-content h2 {
        font-size: 1.2rem;
        padding: 5px 10px;
    }
    .slide-content p {
        font-size: 0.8rem;
    }
    .youtube-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}