/* Genel Stiller */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --accent-color: #3b82f6;
    --light-color: #f8fafc;
    --dark-color: #1e293b;
    --gray-color: #94a3b8;
    --light-gray: #e2e8f0;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Header yüksekliği kadar boşluk bırak */
    overflow-x: hidden;
}

/* Sayfa yüklenirken oluşan titremeyi önle */
html, body {
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color: #fff; /* Arka plan rengini sabit tut */
    opacity: 1 !important; /* Opaklığı zorla */
    visibility: visible !important; /* Görünürlüğü zorla */
    transition: none !important; /* Geçişleri devre dışı bırak */
}

/* Sayfa yüklenirken görünen içerik */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

body.loaded::before {
    opacity: 0;
    visibility: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #e69009;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

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

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-weight: 700;
    color: var(--dark-color);
    padding: 10px 0;
    position: relative;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
    background-color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 800;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Free Trial Banner */
.free-trial-banner {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
}

.free-trial-banner .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.free-trial-banner .btn-outline {
    margin: 0;
    white-space: nowrap;
    border: 2px solid white !important;
    color: white !important;
    background: transparent !important;
}

.free-trial-banner .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.free-trial-banner .btn {
    color: white;
    border-color: white;
    padding: 5px 15px;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
}

.free-trial-banner .btn i {
    margin-right: 5px;
}

.free-trial-banner .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white !important; /* Thicker border */
    margin-left: 15px;
    padding: 10px 25px; /* Slightly larger padding */
    font-size: 1em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 600; /* Bolder text */
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5); /* Subtle outer glow */
}

/* Hero Slider */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 800px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.2;
    color: white;
}

.hero p {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    color: white;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .slider-nav {
        bottom: 20px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/mini-voleybol-takimi.jpeg');
    background-color: rgba(0, 0, 0, 0.5);
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    opacity: 1;
    visibility: visible;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.features {
    margin: 2rem 0;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.features i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Age Groups Section */
.age-groups {
    padding: 6rem 0;
    background-color: var(--light-color);
}

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

.age-group-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.age-group-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.age-group-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.age-group-card h3 {
    margin-bottom: 0.5rem;
}

.age-group-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Registration Section */
.registration {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
}

.registration h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.registration p {
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn, .phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #25d366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.phone-btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.phone-btn:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 20px;
    align-items: stretch;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Map Section */
.map {
    width: 100%;
    position: relative;
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.map:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.03) 0%, rgba(30, 64, 175, 0.03) 100%);
    z-index: 1;
}

.map .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 2rem;
}

.map-embed {
    width: 100%;
    height: 400px !important;
    min-height: 250px !important;
    border-radius: 12px;
    overflow: visible !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: block !important;
}

.map-embed iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 250px !important;
    border: none;
    display: block;
    background: #f8fafc;
}

@media (max-width: 600px) {
  .map-embed {
    height: 250px !important;
    min-height: 200px !important;
  }
  .map-embed iframe {
    min-height: 200px !important;
    height: 250px !important;
  }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.footer-links h4, 
.footer-contact h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h4:after,
.footer-contact h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Antrenör Kartları */
.coach-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    word-wrap: break-word;
    hyphens: auto;
}

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

.coach-image {
    width: 100%;
    height: 350px; /* Daha dengeli bir yükseklik */
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.coach-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.coach-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coach-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.coach-bio {
    margin-bottom: 1rem;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.6;
}

.coach-bio p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 1.2rem 0 0.5rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 0.3rem;
}

.career-list {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.career-list li {
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.career-list li:before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.coach-contact {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.coach-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    margin: 0;
}

.coach-contact i {
    color: var(--secondary-color);
}

.footer-contact p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .free-trial-banner {
        padding: 15px 10px;
    }
    
    .free-trial-banner .banner-content {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }
    
    .free-trial-banner .btn-outline {
        width: 80%;
        max-width: 250px;
        margin: 10px auto;
        padding: 8px 18px;
        font-size: 0.9em;
        border: 3px solid white !important; /* Thicker border for mobile */
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 80vh;
        background-attachment: scroll !important;
        background-position: center center !important;
        background-size: cover !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-top: 0;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .mobile-menu {
        display: block;
    }
    
    header {
        padding: 15px 0;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 2rem;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding-top: 120px;
        height: auto;
        padding-bottom: 5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .whatsapp-btn, 
    .phone-btn {
        justify-content: center;
    }
}

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

.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* Takımlar Sayfası */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
}

/* Takım Kategorileri */
.team-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.category {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.category span {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.category small {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.category.active, .category:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.category.active i, .category:hover i,
.category.active small, .category:hover small {
    color: white;
}

/* Takım Detayları */
.team-details {
    display: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    animation: fadeIn 0.5s ease;
}

.team-details.active {
    display: block;
}

.team-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.team-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-badge i {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-badge h2 {
    margin: 0;
    font-size: 1.8rem;
    color: white;
}

.team-badge h2 span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.team-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    min-width: 100px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 0.8rem 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e5e7eb;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

.address {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.map-link:hover {
    color: var(--accent-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #444;
}

.feature-list li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* Takım Galerisi */
.team-gallery {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-image {
    height: 300px;
    overflow: hidden;
}

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

.main-image:hover img {
    transform: scale(1.05);
}

.gallery-thumbs {
    display: flex;
    padding: 1rem;
    background: #f9fafb;
    gap: 0.8rem;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb:hover, .thumb.active {
    border-color: var(--primary-color);
}

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

/* Takım CTA */
.team-cta {
    padding: 1.5rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.team-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-cta .btn i {
    font-size: 0.9rem;
}

/* Team Hero Banner */
.team-hero {
    background-color: rgba(0,0,0,0.5);
    color: white;
    min-height: 480px !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.team-hero h1 {
    color: #fff !important;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

.team-hero p {
    color: #fff !important;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .team-hero {
        min-height: 350px !important;
        background-position: center 70% !important;
    }
    
    .team-hero h1 {
        font-size: 2.2rem;
        margin-top: 20px;
    }
    
    .team-hero p {
        font-size: 1.1rem;
    }
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-text:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Takım Kadrosu */
.team-roster {
    padding: 5rem 0;
    background: white;
}

.players-filter {
    display: flex;
    gap: 0.8rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.player-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.player-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.player-card:hover .player-image img {
    transform: scale(1.05);
}

.player-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.player-info {
    padding: 1.5rem;
}

.player-info h3 {
    margin: 0 0 0.3rem 0;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.player-position {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.player-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.player-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.player-stats i {
    color: var(--secondary-color);
}

.player-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.team-tag {
    background: #e0f2fe;
    color: var(--primary-color);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.experience {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Başarılar */
.achievements {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.achievement-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.achievement-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.achievement-content p {
    color: var(--gray-color);
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.achievement-date {
    display: inline-block;
    background: #f0f4f8;
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .team-gallery {
        order: -1;
    }
    
    .main-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .team-header {
        flex-direction: column;
        text-align: center;
    }
    
    .team-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .team-stats {
        justify-content: center;
    }
    
    .category {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .category {
        width: 100%;
    }
    
    .team-cta {
        flex-direction: column;
    }
    
    .team-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .main-image img {
        height: 250px;
    }
}

/* WhatsApp Button Styling */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float span {
    font-size: 12px;
    margin-top: 2px;
    display: block;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 30px;
        right: 20px;
    }
    
    .whatsapp-float span {
        display: none; /* Hide text on mobile */
    }
}

/* Form Styles */
.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f4f8;
    font-size: 1.5rem;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    background-color: white;
}

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

.required {
    color: #ef4444;
    font-weight: bold;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

/* Contact Info Card */
.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f4f8;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(30, 58, 138, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin: 0 0 0.3rem 0;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.contact-text p,
.contact-text a {
    margin: 0.3rem 0;
    color: #4b5563;
    line-height: 1.5;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h2 {
    font-size: 2.25rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    font-size: 0.8rem;
    color: #999;
    position: relative;
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

.gallery-caption {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-caption h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.gallery-caption p {
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 180px;
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

/* Platform-specific colors */
.social-links a[aria-label="Instagram"] { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links a[aria-label="Facebook"] { background-color: #1877F2; }
.social-links a[aria-label="Twitter"] { background-color: #1DA1F2; }
.social-links a[aria-label="YouTube"] { background-color: #FF0000; }
.social-links a[aria-label="LinkedIn"] { background-color: #0A66C2; }

/* Map Container */
.map-container {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: visible !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: block !important;
}

.map-container iframe {
    width: 100% !important;
    height: 400px !important;
    min-height: 250px !important;
    border: none;
    display: block;
    background: #f8fafc;
}

@media (max-width: 600px) {
  .map-container iframe {
    min-height: 200px !important;
    height: 250px !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Alt Navigasyon Menüsü */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
    display: none; /* Varsayılan olarak gizli */
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.bottom-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: #4b5563;
}

.bottom-nav .nav-item.active {
    color: var(--primary-color);
    background-color: rgba(30, 64, 175, 0.1);
}

.bottom-nav .nav-item.active i {
    color: var(--primary-color);
}

.bottom-nav .nav-item:hover {
    color: var(--primary-color);
}

.bottom-nav .nav-item:hover i {
    color: var(--primary-color);
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    .bottom-nav {
        display: block;
    }
    
    /* Footer'ın alt navigasyon menüsünün altında kalmasını sağla */
    footer {
        margin-bottom: 70px !important;
    }
}

/* Kategori butonları için aktif durum */
.category.active, .category-nav.active {
    background-color: var(--primary-color);
    color: white;
}

.category.active i, .category-nav.active i {
    color: white;
}

/* Mobile adjustments for hero sections */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/mini-voleybol-takimi.jpeg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        -webkit-background-size: cover;
        -moz-background-size: cover;
    }
    
    /* Fix for hero-header sections */
    .hero-header {
        background-attachment: scroll !important;
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
        opacity: 1;
        visibility: visible;
        transition: none;
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
