/* Nadide Hobi Malzemeleri - Modern Tema */
/* Ahşap tonları ve sıcak renkler kullanılmıştır */

:root {
    --primary-color: #8B6F47;      /* Ahşap kahverengi */
    --primary-light: #A67C52;      /* Açık ahşap */
    --primary-dark: #6B4E3D;       /* Koyu ahşap */
    --accent-color: #E8B86D;       /* Altın sarısı */
    --accent-light: #F4D19B;       /* Açık sarı */
    --warm-beige: #F5E6D3;         /* Sıcak bej */
    --soft-cream: #FAF7F2;         /* Yumuşak krem */
    --text-dark: #2C2C2C;
    --text-light: #666;
    --shadow: rgba(139, 111, 71, 0.15);
    --gradient: linear-gradient(135deg, #8B6F47 0%, #A67C52 50%, #E8B86D 100%);
}

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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--soft-cream);
    overflow-x: hidden;
}

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

/* ========== HEADER ========== */
.site-header {
    background: #ffffff;
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.main-nav {
    padding: 20px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: transform 0.3s;
}

.logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(232, 184, 109, 0.5);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 184, 109, 0.15), rgba(139, 111, 71, 0.1));
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(139, 111, 71, 0.2);
}

.nav-menu a:hover::after {
    width: calc(100% - 24px);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    margin: 0;
    height: 600px;
    overflow: hidden;
    background: var(--warm-beige);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 40px 40px;
    color: white;
}

.slide-title {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-weight: 700;
    line-height: 1.2;
}

.slide-link {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(232, 184, 109, 0.4);
}

.slide-link:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 184, 109, 0.6);
}

.slide-placeholder {
    width: 100%;
    height: 100%;
    background: var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
    border-color: white;
}

/* ========== STORY SECTION ========== */
.story-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--soft-cream) 100%);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
}

.story-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}

.story-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    font-size: 42px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.story-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.story-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 18px;
    position: relative;
    z-index: 1;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

/* ========== SOCIAL SECTION ========== */
.social-section {
    padding: 60px 0;
    background: var(--primary-dark);
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 184, 109, 0.4);
    border-color: var(--accent-color);
}

.social-link i {
    font-size: 20px;
}

/* ========== EVENTS LIST ========== */
.events-list {
    padding: 80px 0;
    background: var(--soft-cream);
}

.events-list h1 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 48px;
    color: var(--primary-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
}

.events-list h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 111, 71, 0.1);
}

.event-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.25);
}

.event-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.event-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 111, 71, 0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.event-card:hover .event-image::after {
    opacity: 1;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-info {
    padding: 30px;
    background: white;
}

.event-info h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.event-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: var(--warm-beige);
    border-radius: 20px;
}

.event-date i {
    color: var(--accent-color);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
    font-size: 18px;
}

/* ========== EVENT DETAIL ========== */
.event-detail {
    padding: 60px 0;
    background: white;
}

.event-header {
    margin-bottom: 50px;
    text-align: center;
}

.cover-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 50px var(--shadow);
}

.event-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.event-date,
.event-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--warm-beige);
    border-radius: 30px;
    color: var(--primary-dark);
    font-weight: 600;
}

.event-date i,
.event-location i {
    color: var(--accent-color);
    font-size: 18px;
}

.event-description {
    max-width: 100%;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    padding: 40px;
    background: var(--soft-cream);
    border-radius: 20px;
    border-left: 5px solid var(--accent-color);
}

/* Social Share */
.social-share {
    max-width: 100%;
    margin: 40px auto;
    padding: 30px;
    background: var(--warm-beige);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-share span {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 16px;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-share.facebook {
    background: #1877F2;
}

.btn-share.twitter {
    background: #000000;
}

.btn-share.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-share.whatsapp {
    background: #25D366;
}

/* Gallery */
.event-gallery {
    max-width: 100%;
    margin: 60px auto 0;
}

.event-gallery h2 {
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--primary-dark);
    text-align: center;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s;
}

.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    z-index: 2;
    transition: transform 0.3s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 111, 71, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--primary-dark);
    color: #e0e0e0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 15px;
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 15px;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section i {
    margin-right: 10px;
    color: var(--accent-color);
    width: 20px;
}

.map-container {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    border: 3px solid rgba(232, 184, 109, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 14px;
}
.footer-bottom p {
    margin-bottom: 8px;
}
.footer-credit {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 12px !important;
}
.footer-credit a {
    color: #ffffff !important;
    font-weight: bold;
    text-decoration: none;
}
.footer-credit a:hover {
    color: var(--accent-color) !important;
}

/* ========== SUCCESS STORIES (Blog Tarzı) ========== */
.success-stories-list {
    padding: 80px 0;
    background: var(--soft-cream);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.page-subtitle {
    margin-top: 30px;
    color: var(--text-light);
    font-size: 18px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 111, 71, 0.1);
}

.story-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.25);
}

.story-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.story-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 111, 71, 0.5));
    opacity: 0;
    transition: opacity 0.3s;
}

.story-card:hover .story-image::after {
    opacity: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.story-card:hover .story-overlay {
    opacity: 1;
}

.read-more {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(232, 184, 109, 0.4);
}

.story-content {
    padding: 30px;
    background: white;
}

.story-content h2 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.story-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: var(--warm-beige);
    border-radius: 20px;
}

.story-date i {
    color: var(--accent-color);
}

/* Success Story Detail */
.success-story-detail {
    padding: 60px 0;
    background: white;
}

.story-header {
    margin-bottom: 50px;
    text-align: center;
}

.story-header .cover-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 15px 50px var(--shadow);
}

.story-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
}

.story-meta-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.success-story-detail .story-content {
    max-width: 100%;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    padding: 40px;
    background: var(--soft-cream);
    border-radius: 20px;
    border-left: 5px solid var(--accent-color);
}

.story-content p {
    margin-bottom: 20px;
}

.story-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

/* İçerik editöründen gelen özel sınıflar (nadide-hikaye vb.) */
.story-content .nadide-hikaye-container {
    max-width: 100%;
    box-sizing: border-box;
}

.story-content .nadide-story-grid,
.story-content .nadide-services-grid {
    box-sizing: border-box;
}

.back-link {
    max-width: 100%;
    margin: 40px auto 0;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 20px var(--shadow);
        padding: 20px 0;
        gap: 0;
        width: 100%;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo-img {
        width: 44px;
        height: 44px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 40px 20px 30px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-link {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .story-section {
        padding: 50px 0;
    }
    
    .story-section h2 {
        font-size: 32px;
    }
    
    .story-content {
        font-size: 16px;
        padding: 25px 12px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .events-list h1 {
        font-size: 36px;
    }
    
    .event-header h1 {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .event-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .story-header h1 {
        font-size: 32px;
    }
    
    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    .success-story-detail .story-content {
        padding: 20px 12px;
    }
    
    .story-section .story-content {
        padding: 25px 12px;
    }
    
    .event-description {
        padding: 25px 12px;
    }
    
    .social-share {
        padding: 20px 12px;
    }
    
    /* İçerik kartları mobilde tek sütun */
    .story-content .nadide-story-grid,
    .story-content .nadide-services-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* İçerik padding mobilde azalt */
    .story-content .nadide-hikaye-container {
        padding: 25px 12px !important;
    }
    
    /* Hakkımızda bölümü - padding 40px 60px olan wrapper */
    .story-section .story-content > div {
        padding: 25px 12px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .success-story-detail .story-content {
        padding: 15px 10px;
    }
    
    .story-section .story-content {
        padding: 20px 10px;
    }
    
    .event-description {
        padding: 20px 10px;
    }
    
    .social-share {
        padding: 15px 10px;
    }
    
    /* İçerik kartları mobilde tek sütun */
    .story-content .nadide-story-grid,
    .story-content .nadide-services-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* İçerik padding mobilde azalt */
    .story-content .nadide-hikaye-container {
        padding: 20px 10px !important;
    }
    
    /* Hakkımızda bölümü */
    .story-section .story-content > div {
        padding: 20px 10px !important;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content {
        padding: 30px 15px 20px;
    }
    
    .slide-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .slide-link {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .story-section {
        padding: 40px 0;
    }
    
    .story-section h2 {
        font-size: 28px;
    }
    
    .story-content {
        padding: 20px;
        font-size: 15px;
    }
    
    .events-list h1,
    .page-header h1 {
        font-size: 28px;
    }
    
    .event-header h1,
    .story-header h1 {
        font-size: 26px;
    }
    
    .event-card,
    .story-card {
        border-radius: 15px;
    }
    
    .event-image,
    .story-image {
        height: 220px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 240px;
    }
}

/* ========== INSTALL BANNER (Mobil ana ekrana ekle) ========== */
.install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideUpBanner 0.4s ease;
}
@keyframes slideUpBanner {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.install-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
.install-banner-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}
.install-banner-text {
    flex: 1;
    min-width: 0;
}
.install-banner-content strong {
    display: block;
    font-size: 0.95em;
    margin-bottom: 2px;
}
.install-banner-desc {
    margin: 0;
    font-size: 0.8em;
    opacity: 0.95;
}
.install-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.install-banner-btn {
    background: white;
    color: var(--primary-color, #8b6f47);
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.install-banner-btn:active {
    transform: scale(0.98);
}
.install-banner-fallback {
    max-width: 1200px;
    margin: 10px auto 0;
    font-size: 0.8em;
    opacity: 0.9;
}
.install-banner-fallback p {
    margin: 0;
}
.install-banner-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Admin Paneli - sadece mobilde görünsün */
.nav-admin {
    border-top: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 769px) {
    .nav-admin {
        display: none !important;
    }
}
