/* Ana Sayfa İçin CSS Dosyası */

/********* EĞİTMEN KARTLARI *********/
.trainer-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
    height: 100%;
}

.trainer-card:hover {
    transform: translateY(-10px);
}

.trainer-img {
    position: relative;
    overflow: hidden;
    height: 250px; /* Daha da küçültülmüş yükseklik */
    width: 250px; /* Kare alan */
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Yuvarlak çerçeve */
    margin: 20px auto 15px; /* Üst marjin eklendi */
    border: 5px solid #ffc107; /* Altın/sarı renkli çerçeve */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Gölge */
}

.trainer-img img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover; /* Görseli kaplamak için */
    border-radius: 50%; /* Yuvarlak fotoğraf */
    display: block;
    margin: 0 auto;
}

.trainer-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-social {
    opacity: 1;
    transform: translateY(0);
}

.trainer-social a {
    color: #fff;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.trainer-social a:hover {
    background-color: var(--primary);
}

.trainer-info {
    padding: 20px;
}

.trainer-info h4 {
    margin-bottom: 5px;
    font-weight: 700;
    color: #333;
}

.trainer-specialty {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.trainer-bio {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/********* HERO SECTION *********/
.hero-section {
    height: 100vh;
    color: #fff;
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-transform: uppercase;
    background: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/foto5.jfif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.hero-overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.85));
}

/* Gereksiz hero-background sınıfı kaldırıldı */

/* Alperen Altan rozeti */
.alperen-badge {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    font-weight: 600;
    font-size: 0.65rem;
    padding: 4px 12px;
    border-radius: 15px;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

/* Mavi vurgu */
.highlight-blue {
    color: #007bff;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.hero-title {
    font-size: 3rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
    letter-spacing: 0.5px !important;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.3px !important;
    line-height: 1.3 !important;
}

.hero-text {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2rem !important;
    max-width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.5 !important;
}

.hero-buttons .btn {
    padding: 5px 15px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    letter-spacing: 0.3px !important;
}

.hero-buttons .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
    font-weight: 700;
}

.hero-buttons .btn-light {
    background-color: #fff;
    color: #000;
}

/* Özellik ikonları */
.feature-icon {
    font-size: 1.8rem;
    color: #ffc107;
    display: block;
    margin-bottom: 0.7rem;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.features-row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Mobil cihazlar için özellik ikonları ve metinlerini küçültme */
@media (max-width: 767.98px) {
    .feature-icon {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-text {
        font-size: 0.7rem;
        margin-top: 0.2rem;
    }
    
    .features-row .d-flex {
        gap: 3rem !important;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/foto5.jfif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Arka planı sabitleme */
    z-index: -1;
    animation: scale-bg 15s infinite alternate ease-in-out;
}

@keyframes scale-bg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #ffc107;
    position: relative;
    display: inline-block;
}

/********* ABOUT SECTION *********/
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

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

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ffc107 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.feature-item {
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.feature-text h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-text p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

/********* TRAINERS SECTION *********/
.trainers-section {
    padding: 100px 0;
}

.trainer-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: all 0.3s ease;
}

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

.trainer-img {
    position: relative;
    overflow: hidden;
}

.trainer-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.trainer-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-social {
    bottom: 0;
}

.trainer-social a {
    width: 36px;
    height: 36px;
    background-color: #fff;
    color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.trainer-social a:hover {
    background-color: #ffc107;
    color: #fff;
    transform: translateY(-3px);
}

.trainer-info {
    padding: 20px;
}

.trainer-info h4 {
    margin-bottom: 5px;
    font-weight: 600;
}

.trainer-specialty {
    color: #ffc107;
    margin-bottom: 10px;
    font-weight: 500;
}

.trainer-bio {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/********* SERVICES SECTION *********/
.services-section {
    padding: 100px 0;
}

.service-card {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-info h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.service-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/********* PRICING SECTION *********/
.pricing-card {
    background-color: #f5f5f5; /* Hafif gri arka plan */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.pricing-featured {
    background-color: #f0f0f0; /* Öne çıkan kart için biraz daha koyu gri */
    border: 2px solid #ffc107;
}

.pricing-header {
    padding-bottom: 20px;
}

.pricing-header h3 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
}

.featured-label {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #ffc107;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 1;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: top;
    position: relative;
    top: -5px;
}

/********* CTA SECTION *********/
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/foto5.jfif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
    }
    
    .about-section, .trainers-section, .services-section {
        padding: 70px 0;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .trainer-img img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        right: 0;
        bottom: 0;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
}
