/* Dijital Sporum - Ana Stil Dosyası */

/* Temel Sıfırlama ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sütlü Kahve Tonları */
    --primary-coffee: #C4A57B;
    --primary-coffee-dark: #A0826D;
    --primary-coffee-light: #D4B896;
    --secondary-coffee: #F5EBE0;
    --bg-light: #FAF6F1;
    --bg-white: #ffffff;
    
    /* Metin Renkleri */
    --text-dark: #3E2723;
    --text-gray: #6D4C41;
    --text-light: #A1887F;
    
    /* Gölge */
    --shadow-sm: 0 1px 2px 0 rgba(62, 39, 35, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(62, 39, 35, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(62, 39, 35, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(62, 39, 35, 0.1);
    
    /* Geçiş */
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #FAF6F1 0%, #F5EBE0 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader - Top Sektirme Animasyonu */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5EBE0 0%, #D7C4A8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.balls-container {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.ball {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: relative;
    animation: bounce 1.2s ease-in-out infinite;
}

/* Futbol Topu */
.football {
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #e0e0e0 100%);
    box-shadow: 
        inset -5px -5px 10px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3);
    animation-delay: 0s;
}

.football::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 24px;
    background: #1a1a1a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

/* Basketbol Topu */
.basketball {
    background: radial-gradient(circle at 30% 30%, #ff8c42 0%, #d15e1f 100%);
    box-shadow: 
        inset -5px -5px 15px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.3);
    animation-delay: 0.3s;
}

.basketball::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.basketball::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #1a1a1a;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Voleybol Topu */
.volleyball {
    background: radial-gradient(circle at 30% 30%, #fff5e1 0%, #ffe4a3 100%);
    box-shadow: 
        inset -5px -5px 10px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.3);
    animation-delay: 0.6s;
}

.volleyball::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 80%;
    background: #daa520;
    top: 10%;
    left: 25%;
    border-radius: 50%;
}

.volleyball::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 80%;
    background: #daa520;
    top: 10%;
    right: 25%;
    border-radius: 50%;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-100px) scale(0.9);
    }
    50% {
        transform: translateY(-120px) scale(0.88) rotate(180deg);
    }
    75% {
        transform: translateY(-100px) scale(0.9);
    }
}

/* Header - Üst Menü */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-coffee-dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    color: var(--primary-coffee);
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-coffee);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-coffee);
}

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

.btn-demo {
    background: linear-gradient(135deg, var(--primary-coffee) 0%, var(--primary-coffee-dark) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-block;
}

.btn-demo:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Hamburger Menü */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-coffee);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Bölümü */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-coffee-dark) 0%, var(--primary-coffee) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-coffee) 0%, var(--primary-coffee-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-coffee-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-coffee);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-coffee);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
}

.panel-mockup {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    background: linear-gradient(135deg, var(--secondary-coffee) 0%, var(--bg-white) 100%);
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
}

.panel-mockup:hover {
    transform: translateY(-10px);
}

/* Bölüm Genel Stili */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Kimler Kullanabilir Bölümü */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sport-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.sport-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.sport-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary-coffee) 0%, var(--primary-coffee-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.sport-card:hover .sport-icon {
    transform: rotate(360deg) scale(1.1);
}

.sport-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

/* Özellikler Bölümü */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-coffee) 0%, var(--primary-coffee-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

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

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Şampiyonlar Bölümü */
.champions-section {
    background: linear-gradient(135deg, var(--secondary-coffee) 0%, var(--bg-white) 100%);
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.client-logo {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-position {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Fiyat Önizleme */
.pricing-preview {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 3rem auto;
}

/* Fiyatlar Sayfası */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border: 3px solid var(--primary-coffee);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-coffee) 0%, var(--primary-coffee-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-coffee-dark);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-button {
    width: 100%;
}

/* Özellik Listesi */
.features-list {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-top: 4rem;
}

.features-list h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.features-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.features-list li:hover {
    transform: translateX(10px);
    background: var(--secondary-coffee);
}

.features-list li::before {
    content: '✓';
    background: var(--primary-coffee);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* İletişim Sayfası */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--secondary-coffee);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-coffee);
    box-shadow: 0 0 0 3px rgba(196, 165, 123, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.success-message {
    background: var(--secondary-coffee);
    color: var(--primary-coffee-dark);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: none;
    text-align: center;
    font-weight: 600;
}

/* WhatsApp Butonu */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.2);
}

.whatsapp-float::before {
    content: '💬';
    font-size: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-coffee-light);
}

.footer-section p,
.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-coffee-light);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Tasarım */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .section {
        padding: 3rem 1rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* SEO Keywords Section */
.seo-keywords-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.seo-keywords-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-keywords-section h2 {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.keywords-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.keyword-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.keyword-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.keyword-box h3 {
    color: var(--primary-coffee-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.keyword-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}
