/* ================================================
   SESLENDIRME.TV - ANASAYFA STİLLERİ
   ================================================ */

/* Google Font - Muli */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Rotate Words */
.rotate-words {
    display: inline-block;
    position: relative;
    min-width: 450px;
    height: 1.2em;
    overflow: hidden;
    vertical-align: bottom;
}

.rotate-words .word {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    transition: all 0.5s ease;
    white-space: nowrap;
}

.rotate-words .word.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.rotate-words .word.exit {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin: 0 0 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 0 0 5px;
    opacity: 0.9;
}

.hero-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}

.hero-desc {
    font-size: 1.1rem;
    margin: 0 0 30px;
    opacity: 0.8;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

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

/* Two Boxes Section */
.two-boxes-section {
    padding: 80px 0;
    background: #fff;
}

.two-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.info-box {
    text-align: center;
    padding: 40px;
}

.info-box-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-box-icon.purple {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.info-box-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.info-box h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: #1a1a2e;
}

.info-box p {
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px;
}

.info-box-link {
    color: #667eea;
    font-weight: 500;
}

/* Steps Section */
.steps-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.step-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.step-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: #667eea;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-card h4 {
    position: absolute;
    bottom: 15px;
    left: 55px;
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.step-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-overlay .step-number {
    position: static;
    font-size: 22px;
    font-weight: 800;
    color: #667eea;
}

.step-overlay h4 {
    position: static;
    color: #1a1a2e;
    text-shadow: none;
    font-size: 12px;
    font-weight: 600;
}

.steps-demo {
    background: #fff;
}

.steps-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #667eea;
}

/* Two Color Banner */
.two-color-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.banner-left, .banner-right {
    padding: 25px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.banner-left {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.banner-right {
    background: linear-gradient(135deg, #10b981, #059669);
}

.banner-left:hover, .banner-right:hover {
    opacity: 0.9;
}

/* Atölye Info Section */
.atolye-info-section {
    padding: 60px 0;
    text-align: center;
}

.atolye-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.atolye-list li {
    padding: 10px 0;
    color: #667eea;
    font-size: 1.05rem;
}

/* Three Icons Section */
.three-icons-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.icon-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #667eea;
}

.icon-box h4 {
    margin: 0;
    color: #1a1a2e;
}

/* Ustalar Section */
.ustalar-section {
    padding: 60px 0;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.ustalar-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.ustalar-info-box h4 {
    color: #667eea;
    margin: 0 0 10px;
}

.ustalar-info-box p {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.ustalar-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card h3 {
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.blog-card h3 a {
    color: #1a1a2e;
}

.blog-date {
    font-size: 0.85rem;
    color: #999;
}

.blog-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 10px 0;
}

.blog-link {
    color: #667eea;
    font-weight: 500;
}

.blog-more {
    text-align: center;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://media.seslendirme.tv/photos/cta-bg.jpg') center/cover;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 20px;
    color: #1a1a2e;
}

.cta-content h2 {
    font-size: 2rem;
    margin: 0 0 15px;
}

.cta-content h2 span {
    color: #667eea;
}

.cta-content p {
    color: #666;
    margin: 0 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .two-boxes-grid {
        grid-template-columns: 1fr;
    }
    
    .two-color-banner {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .icons-grid {
        grid-template-columns: 1fr;
    }
    
    .ustalar-info-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-buttons, .ustalar-buttons {
        flex-direction: column;
        align-items: center;
    }
}
