/* Genel Stiller */
:root {
    --primary-color: #01010f;
    --secondary-color: #ff6b00;
    --text-color: #ffffff;
    --background-color: #01010f;
    --card-background: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
    --bg-color: #ffffff;
    --nav-bg: #01010f;
    --nav-text: #ffffff;
    --footer-bg: #01010f;
    --footer-text: #ffffff;
    --accent-color: #ff6b00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up { transform: translateY(20px); }
.reveal-down { transform: translateY(-20px); }
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.revealed.reveal-up,
.revealed.reveal-down,
.revealed.reveal-left,
.revealed.reveal-right { transform: translate(0,0); }

/* Erişilebilirlik için ekran okuyucuya özel metin */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Üst Bilgi Çubuğu */
.top-bar {
    background-color: rgba(1, 1, 15, 0.9);
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
}

.social-links a {
    color: var(--text-color);
    margin-left: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Ana Menü */
.main-nav {
    background-color: rgba(1, 1, 15, 0.95);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.hizli-iletisim {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
}

.hizli-iletisim:hover {
    background-color: #ff8533;
    transform: scale(1.1);
}

/* Hero Bölümü */
.hero {
    min-height: calc(100vh - 140px);
    display: flex;
    padding: 0 50px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 .outline {
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px var(--secondary-color);
    text-shadow: none;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: none;
}

.cta-button, .secondary-button {
    display: none;
}

.kayit-ol {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.kayit-ol:hover {
    background-color: #ff8533;
}

/* Slider */
.hero-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: var(--secondary-color);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Responsive Menü */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Mobil menü açıldığında */
.main-nav.open .nav-links {
    display: flex !important;
}

@media (max-width: 768px) {
    .main-nav {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(1, 1, 15, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 10px 20px 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links a {
        padding: 14px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .hizli-iletisim {
        margin-top: 10px;
        text-align: center;
    }
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 50px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links, .hizli-iletisim {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button, .secondary-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Hareketli Pankartlar */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--primary-color);
    padding: 20px 0;
}

.marquee-top, .marquee-bottom {
    width: 100%;
    overflow: hidden;
    position: relative;
    transform: skew(-15deg);
}

.marquee-top {
    background: #e6e6e6;
    margin-bottom: 10px;
}

.marquee-bottom {
    background: var(--secondary-color);
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
    gap: 50px;
}

.marquee-bottom .marquee-content {
    animation-direction: reverse;
}

.marquee-content span {
    white-space: nowrap;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.marquee-top .marquee-content span {
    color: var(--primary-color);
}

.marquee-bottom .marquee-content span {
    color: var(--text-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive ayarlar için mevcut media query'lere ekle */
@media (max-width: 768px) {
    .marquee-content span {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* Hakkımızda Bölümü */
.about-section {
    padding: 100px 50px;
    background-color: var(--primary-color);
}

.about-content {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

.section-header {
    margin-bottom: 30px;
}

.section-header .subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.section-header .highlight {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    height: 500px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* FAQ Bölümü */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.accordion-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.accordion-button .number {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
    min-width: 40px;
}

.accordion-button .title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
}

.accordion-button .icon {
    font-size: 1.5rem;
    min-width: 24px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.02);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px;
}

.accordion-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
    }

    .about-images {
        grid-template-columns: 1fr;
        height: 400px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header .highlight {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header .highlight {
        font-size: 1.5rem;
    }

    .accordion-button .title {
        font-size: 1rem;
    }

    .about-images {
        height: 300px;
    }
}

/* Hizmetlerimiz Bölümü */
.services-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    text-align: left;
    margin-bottom: 50px;
    padding-left: 50px;
}

.services-slider {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.services-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.service-card {
    min-width: calc(33.333% - 20px);
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.service-content p {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.slider-nav button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background-color: var(--secondary-color);
}

.slider-nav button i {
    font-size: 24px;
}

.prev-service {
    left: 20px;
}

.next-service {
    right: 20px;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .service-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        padding-left: 20px;
    }

    .services-slider {
        padding: 0 20px;
    }

    .service-card {
        min-width: calc(100% - 0px);
    }

    .service-image {
        height: 400px;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }
}

/* Hizmet Detayları Bölümü */
.service-details {
    padding: 100px 50px;
    background-color: var(--primary-color);
}

.service-info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-info-card {
    position: relative;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Her kartın arka plan resmi */
.service-info-card:nth-child(1) {
    background-image: url('images-arena/arenagym-bilgi.jpg');
}

.service-info-card:nth-child(2) {
    background-image: url('images-arena/bodybuilding-bilgi.jpg');
}

.service-info-card:nth-child(3) {
    background-image: url('images-arena/fitness-bilgi.jpg');
}

.service-info-card:nth-child(4) {
    background-image: url('images-arena/crossfit-bilgi.jpg');
}

.service-info-card:nth-child(5) {
    background-image: url('images-arena/personal-trainer.jpg');
}

.service-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.service-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-info-card:hover::before {
    opacity: 0;
}

.service-info-card:hover::after {
    opacity: 0.85;
}

.service-info-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    font-weight: bold;
}

.service-info-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .service-info-container {
        grid-template-columns: 1fr;
    }

    .service-info-card {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .service-details {
        padding: 50px 20px;
    }

    .service-info-card {
        padding: 30px;
        min-height: 200px;
    }

    .service-info-card h3 {
        font-size: 1.8rem;
    }

    .service-info-card p {
        font-size: 1rem;
    }
}

/* Footer Bölümü */
.footer {
    background: linear-gradient(180deg, #01010f 0%, rgba(255, 107, 0, 0.4) 100%);
    padding: 80px 50px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: uppercase;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-details span {
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.footer-menu, .social-menu {
    list-style: none;
}

.footer-menu li, .social-menu li {
    margin-bottom: 12px;
}

.footer-menu a, .social-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-menu a:hover, .social-menu a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.logo-section {
    grid-column: span 1;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-dot {
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.footer-phone a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--transition);
}

.footer-phone a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: rgba(255, 107, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-section {
        grid-column: span 2;
        text-align: center;
    }

    .footer-description {
        max-width: 600px;
        margin: 0 auto 25px;
    }

    .footer-phone {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .logo-section {
        grid-column: span 1;
    }

    .contact-details p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .contact-details span {
        margin: 0;
    }
}

/* İstatistik Sayaçları */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(255, 107, 0, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.stat-number .plus {
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: bold;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 20px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button i {
    font-size: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button i {
        font-size: 28px;
    }
}

/* Dark Mode Button Styles */
.theme-button {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-button:hover {
    transform: scale(1.1);
}

/* Spor Hocalarımız Bölümü */
.trainers-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-color);
}

.text-center {
    text-align: center;
    width: 100%;
}

.trainers-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 0 20px;
}

.trainer-card {
    flex: 0 1 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.trainer-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    border-radius: 10px;
}

.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
}

.trainer-name {
    color: var(--text-color);
    font-size: 32px;
    margin: 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

.trainer-card:hover .trainer-name {
    color: var(--secondary-color);
}

.trainer-surname {
    color: var(--text-color);
    font-size: 24px;
    margin: 5px 0 0;
}

@media (max-width: 768px) {
    .trainer-card {
        flex: 0 1 100%;
        max-width: 300px;
    }

    .trainer-image {
        height: 350px;
    }

    .trainer-name {
        font-size: 28px;
    }

    .trainer-surname {
        font-size: 20px;
    }
}

/* Hakkımızda Sayfası */
.about-content-section {
    padding: 100px 50px;
    background-color: var(--primary-color);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-logo-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.logo-with-arrows {
    width: 100%;
    margin-bottom: 30px;
}

.logo-with-arrows img {
    width: 100%;
    height: auto;
}

.trainer-photo {
    width: 100%;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.trainer-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.trainer-photo img:hover {
    transform: scale(1.05);
}

.about-trainer-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-content {
    text-align: left;
    padding-left: 0;
    margin-left: 0;
    max-width: 800px;
}

.about-text-content .subtitle {
    color: #FF6B00;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.about-text-content h1 {
    color: #FFFFFF;
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: bold;
}

.about-text-content h2 {
    color: #FFFFFF;
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
}

.about-text-content h3 {
    color: #FF6B00;
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-text-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: left;
}

.about-text-content ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.about-text-content ul li {
    margin-bottom: 15px;
    text-align: left;
}

.about-text-content ul li:before {
    content: "•";
    color: #FF6B00;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2px;
}

.about-text-content ul li strong {
    color: #FF6B00;
    font-weight: 600;
    margin-right: 0.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* İletişim Akordiyon Stilleri */
.iletisim-bolumu {
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 10px;
}

.iletisim-baslik {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.iletisim-akordiyon {
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.akordiyon-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.akordiyon-baslik {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.akordiyon-baslik:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.akordiyon-baslik h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.akordiyon-ikon {
    font-size: 1.2rem;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akordiyon-ikon i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.akordiyon-item.aktif .akordiyon-ikon i {
    transform: rotate(45deg);
}

.akordiyon-icerik {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.02);
}

.akordiyon-item.aktif .akordiyon-icerik {
    max-height: 500px;
    padding: 20px;
}

.akordiyon-icerik p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* About Left Section Styles */
.about-left {
    flex: 1;
    padding: 30px;
}

.about-logo-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.logo-with-arrows {
    width: 100%;
    margin-bottom: 30px;
}

.logo-with-arrows img {
    width: 100%;
    height: auto;
}

.logo-small {
    width: 150px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.logo-small img {
    width: 100%;
    height: auto;
}

.trainer-photo {
    width: 100%;
    margin-top: 30px;
}

.trainer-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.about-text-content {
    flex: 2;
    padding: 30px;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-left, .about-text-content {
        flex: 1 100%;
    }

    .trainer-photo {
        margin-top: 20px;
    }
}

/* Hakkımızda Sayfası */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    margin-top: -1px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.breadcrumb {
    font-size: 1.2rem;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Salonlar Bölümü */
.salons-section {
    padding: 120px 0;
    background-color: var(--primary-color);
    position: relative;
    width: 100%;
}

/* Salon Galeri Sayfası */
.salon-gallery-section {
    background-color: var(--primary-color);
    padding: 100px 30px;
}

.salon-gallery {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 8px; /* örnekteki gibi belirgin ayırıcı çizgiler */
    background-color: var(--primary-color);
}

.salon-gallery .salon-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    grid-column: span 4;
    aspect-ratio: 4 / 3;
    margin: 0; /* figure default margin reset */
}

.salon-gallery .salon-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block; /* remove inline gap */
}

.salon-gallery .salon-item:hover img { transform: none; }

.salon-gallery .salon-item.wide {
    grid-column: span 8;
    aspect-ratio: 16 / 9;
}

.salon-gallery .salon-item.tall {
    grid-column: span 4;
    aspect-ratio: 3 / 4;
}

@media (max-width: 992px) {
    .salon-gallery .salon-item { grid-column: span 6; }
    .salon-gallery .salon-item.wide { grid-column: span 12; }
}

@media (max-width: 600px) {
    .salon-gallery-section { padding: 60px 20px; }
    .salon-gallery { grid-template-columns: repeat(6, 1fr); }
    .salon-gallery .salon-item { grid-column: span 6; aspect-ratio: 4/3; }
    .salon-gallery .salon-item.wide, .salon-gallery .salon-item.tall { grid-column: span 6; aspect-ratio: 4/3; }
}

.salons-title {
    text-align: center;
    color: #FFFFFF;
    font-size: 42px;
    margin-bottom: 100px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.salons-container {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px;
    gap: 80px;
    position: relative;
}

.salon-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    position: relative;
}

.salon-item:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B00;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    z-index: 2;
}

.salon-year {
    font-size: 72px;
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 25px;
    font-family: 'Orbitron', sans-serif;
}

.salon-info h3 {
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.salon-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1600px) {
    .salons-container {
        max-width: 1200px;
        padding: 0 50px;
        gap: 60px;
    }
    
    .salon-year {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .salons-container {
        flex-direction: column;
        gap: 60px;
        padding: 0 30px;
    }

    .salon-item:not(:last-child)::after {
        content: 'v';
        right: 50%;
        top: auto;
        bottom: -50px;
        transform: translateX(50%);
    }

    .salon-year {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .salons-section {
        padding: 80px 0;
    }

    .salons-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .salon-year {
        font-size: 48px;
    }

    .salon-info h3 {
        font-size: 20px;
    }

    .salon-info p {
        font-size: 14px;
    }

    .salon-item:not(:last-child)::after {
        font-size: 36px;
        bottom: -40px;
    }
}

.about-description {
    padding: 80px 0;
    background-color: var(--primary-color);
    position: relative;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.description-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.description-container p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-description {
        padding: 50px 0;
    }

    .description-container {
        padding: 0 20px;
    }

    .description-container p {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
    }
}

/* Instagram Galeri Bölümü */
.instagram-gallery {
    padding: 80px 0;
    background-color: var(--primary-color);
    overflow: hidden;
}

/* İletişim Sayfası */
.contact-center {
    min-height: 80vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 80px 20px;
}

.map-wrapper {
    width: min(100%, 1000px);
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.12);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-card {
    width: min(100%, 1000px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    color: var(--text-color);
}

.contact-card h2 {
    margin-bottom: 8px;
}

.contact-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-item i {
    color: var(--secondary-color);
}

.contact-item:hover {
    transform: translateY(-2px);
    background: rgba(255,107,0,0.08);
}

@media (max-width: 900px) {
    .contact-items {
        grid-template-columns: 1fr;
    }
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: scrollGallery 60s linear infinite;
}

.gallery-grid:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: white;
    font-size: 2em;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px));
    }
}

@media (max-width: 1200px) {
    .gallery-item {
        flex: 0 0 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 300px;
        height: 300px;
    }

    .overlay i {
        font-size: 36px;
    }
} 