/* ===== ANA SAYFA CSS - TEMİZLENMİŞ VERSİYON ===== */

/* Genel Sayfa Düzeni */
* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 70px;
    padding-bottom: 80px;
}

/* Ana İçerik Alanı */
.main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-height: calc(100vh - 150px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Banner Bölümü */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
}

.banner-1, .banner-2, .banner-3 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 100%;
}

.banner-1 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner1.jpg');
}

.banner-2 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner2.jpg');
}

.banner-3 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner3.jpg');
}

.banner-oly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.banner-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    min-height: 44px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.banner-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.banner-content .btn i {
    font-size: 20px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.banner-content .btn:hover i {
    transform: scale(1.1);
}

.banner-content .btn span {
    font-size: 16px;
    font-weight: 600;
}

/* Banner Slider - Basit CSS */
.banner-slider {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
}

.banner-slider .slick-list {
    width: 100%;
    height: 100%;
}

.banner-slider .slick-track {
    width: 100%;
    height: 100%;
}

.banner-slider .slick-slide {
    width: 100%;
    height: 40vh;
    min-height: 300px;
}

.banner-slider .slick-slide > div {
    height: 100%;
}

.banner-slider .slick-slide section {
    height: 100%;
    width: 100%;
}

/* Banner Sections */
.banner-1, .banner-2, .banner-3 {
    width: 100%;
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-oly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.banner-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Slider Navigation */
.banner-slider .slick-prev,
.banner-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
}

.banner-slider .slick-prev {
    left: 15px;
}

.banner-slider .slick-next {
    right: 15px;
}

/* Slider Dots */
.banner-slider .slick-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    list-style: none;
    margin: 0;
    padding: 0;
}

.banner-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    font-size: 0;
}

.banner-slider .slick-dots li.slick-active button {
    background: #ff6b35;
}

/* Slider Preloader */
.slider-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.slider-preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.slider-preloader .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Quick Links Bölümü */
.quick-links-section {
    padding: 30px 0;
    background: #fff;
    margin-top: -20px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.quick-link-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.quick-link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.link-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* DJ Programs Bölümü */
.dj-programs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.dj-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.dj-program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.dj-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.dj-program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dj-program-card:hover .dj-program-image {
    transform: scale(1.1);
}

.dj-program-content {
    padding: 25px;
}

.dj-program-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.dj-program-time {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.dj-program-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.dj-program-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dj-program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slider {
        height: 35vh;
        min-height: 250px;
    }
    
    .banner-slider .slick-slide {
        height: 35vh;
        min-height: 250px;
    }
    
    .banner-1, .banner-2, .banner-3 {
        height: 35vh;
        min-height: 250px;
    }
    
    .banner-content h1 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .quick-links-section {
        padding: 20px 0;
        margin-top: -10px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 15px;
    }
    
    .quick-link-card {
        padding: 15px;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .link-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .link-content p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .dj-programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .quick-link-card {
        padding: 15px;
    }
    
    .link-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .link-content h3 {
        font-size: 0.9rem;
    }
    
    .link-content p {
        font-size: 0.75rem;
    }
    
    .dj-program-card {
        padding: 20px;
    }
} 