/* İzmir Çocuk Tiyatrosu Frontend Styles */

:root {
    --primary: #1e88e5;
    --secondary: #0d47a1;
    --accent: #64b5f6;
    --dark: #0a1929;
    --light: #f5f9ff;
    --text: #333333;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(14, 53, 119, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

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

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

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: #37bab0;
    border-color: #37bab0;
    color: var(--white);
}

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

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

.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    display: none;
}

.section-title h2,
.section-title h3 {
    font-size: 2.5rem;
    color: rgb(13, 71, 161);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Header Styles - Updated */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important; /* Maksimum z-index ve !important ile zorunlu uygulama */
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, #1e88e5, #0d47a1);
    border-image-slice: 1;
}

/* Header göster/gizle efekti */
.header-hide {
    transform: translateY(-100%);
}

.header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(14, 53, 119, 0.1);
}

/* Sayfa bazlı özel header stilleri - mavi geçişli alt çizgi */
.header-home, 
.header-plays, 
.header-about, 
.header-contact, 
.header-gallery, 
.header-workshop {
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, #1e88e5, #0d47a1);
    border-image-slice: 1;
}

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

/* Logo Style */
.logo-container {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.logo img {
    height: 65px;
    width: auto;
    margin: 5px 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 60px;
}

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

/* Navigation Menu */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    align-items: center;
    gap: 5px; /* Menü öğeleri arasındaki boşluğu azalttım */
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 5px 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.nav-item {
    position: relative;
    margin: 0;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 6px 10px;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #FF5722, #FF9800);
    box-shadow: 0 4px 8px rgba(255, 87, 34, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    background: none;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 50px;
    opacity: 0;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 0;
    opacity: 0;
}

/* Her menü öğesi için farklı hover renkleri */
.nav-item:nth-child(1) .nav-link:hover,
.nav-item:nth-child(1) .nav-link.active {
    background: linear-gradient(45deg, #1e88e5, #0d47a1);
    box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}

.nav-item:nth-child(2) .nav-link:hover,
.nav-item:nth-child(2) .nav-link.active {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.nav-item:nth-child(3) .nav-link:hover,
.nav-item:nth-child(3) .nav-link.active {
    background: linear-gradient(45deg, #2196F3, #03A9F4);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.nav-item:nth-child(4) .nav-link:hover,
.nav-item:nth-child(4) .nav-link.active {
    background: linear-gradient(45deg, #9C27B0, #E040FB);
    box-shadow: 0 4px 8px rgba(156, 39, 176, 0.3);
}

.nav-item:nth-child(5) .nav-link:hover,
.nav-item:nth-child(5) .nav-link.active {
    background: linear-gradient(45deg, #FF9800, #FFC107);
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
}

.nav-item:nth-child(6) .nav-link:hover,
.nav-item:nth-child(6) .nav-link.active {
    background: linear-gradient(45deg, #F44336, #FF5722);
    box-shadow: 0 4px 8px rgba(244, 67, 54, 0.3);
}

/* Bilet Al Button */
.btn-ticket {
    background: linear-gradient(45deg, #1e88e5, #0d47a1) !important;
    color: white !important;
    border-radius: 20px !important;
    padding: 8px 15px !important;
    margin-top: 5px !important;
    text-align: center !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3) !important;
    transform: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.btn-ticket:hover {
    background: linear-gradient(45deg, #0d47a1, #1e88e5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(30, 136, 229, 0.4) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: auto;
}

.social-buttons {
    display: flex;
    gap: 10px;
    margin-right: 0;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.1), rgba(13, 71, 161, 0.2));
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 10px rgba(14, 53, 119, 0.25);
}

.social-button i {
    font-size: 16px;
}

.social-button:nth-child(1) {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(225, 48, 108, 0.2));
    color: #E1306C;
}

.social-button:nth-child(1):hover {
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: white;
}

.social-button:nth-child(2) {
    background: linear-gradient(135deg, rgba(59, 89, 152, 0.1), rgba(59, 89, 152, 0.2));
    color: #3b5998;
}

.social-button:nth-child(2):hover {
    background: linear-gradient(135deg, #3b5998, #2d4373);
    color: white;
}

.social-button:nth-child(3) {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.2));
    color: #25d366;
}

.social-button:nth-child(3):hover {
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    background: none;
    border: none;
    padding: 2px;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin: 0;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .header-content {
        justify-content: space-between;
    }
    
    .main-nav {
        flex: 0;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-header-actions {
        display: flex;
        margin-right: 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .mobile-social-container {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #1e88e5, #0d47a1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 15px 40px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow-y: auto;
        z-index: 998;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
        border-radius: 0 15px 15px 0;
    }
    
    .nav-item {
        margin: 0 0 5px;
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.05s * var(--i, 0));
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.05rem;
        padding: 8px 12px;
        width: 100%;
        display: block;
        text-align: left;
        position: relative;
        font-weight: 600;
        font-family: 'Nunito', sans-serif;
        letter-spacing: 0.5px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        margin-bottom: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover, .nav-link.active {
        color: white !important;
        opacity: 1 !important;
        transform: translateX(3px) !important;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08) !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Çocuksu Bilet butonu - mobil */
    .btn-ticket {
        background: linear-gradient(45deg, #1e88e5, #0d47a1) !important;
        color: white !important;
        border-radius: 30px !important;
        padding: 10px 15px !important;
        margin-top: 10px !important;
        text-align: center !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3) !important;
        transform: none !important;
        border: none !important;
        width: 100% !important;
        font-size: 1rem !important;
    }
    
    .btn-ticket:hover {
        background: linear-gradient(45deg, #0d47a1, #1e88e5) !important;
        transform: translateY(0) !important;
        box-shadow: 0 6px 15px rgba(30, 136, 229, 0.4) !important;
    }
    
    .btn-ticket::after {
        display: none !important;
    }
    
    /* Sosyal medya butonları mobil menüde */
    .mobile-social-container {
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-social-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .mobile-social-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-social-button:hover {
        transform: translateY(-3px) rotate(5deg);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-social-button:nth-child(1) {
        background-color: #E1306C;
    }
    
    .mobile-social-button:nth-child(2) {
        background-color: #3b5998;
    }
    
    .mobile-social-button:nth-child(3) {
        background-color: #25d366;
    }
}

/* Mobil header butonları (hamburger icon solunda) - Daha minimal tasarım */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 4px;
    margin-right: 5px;
    margin-left: -10px;
}

.mobile-ticket-button {
    background: linear-gradient(45deg, #1e88e5, #0d47a1);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.65rem;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 70px;
    white-space: nowrap;
}

.mobile-ticket-button i {
    font-size: 0.7rem;
}

.mobile-ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.4);
    background: linear-gradient(45deg, #0d47a1, #1e88e5);
}

.mobile-social-inline {
    display: flex;
    gap: 4px;
}

.mobile-social-inline-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.7rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-social-inline-button:nth-child(1) {
    background: #E1306C;
}

.mobile-social-inline-button:nth-child(2) {
    background: #3b5998;
}

.mobile-social-inline-button:nth-child(3) {
    background: #25d366;
}

.mobile-social-inline-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hamburger menüsünün stili güncelleniyor - Çocuksu ve eğlenceli */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 10px;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(30, 136, 229, 0.1);
}

.mobile-toggle:hover {
    background-color: rgba(30, 136, 229, 0.15);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-toggle span:nth-child(1) {
    background-color: #FF5252;
}

.mobile-toggle span:nth-child(2) {
    background-color: #1E88E5;
}

.mobile-toggle span:nth-child(3) {
    background-color: #4CAF50;
}

.mobile-toggle.active {
    position: relative;
    z-index: 1002;
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-toggle.active span {
    background-color: #FF5252;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #FF5252;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #FF5252;
}

/* Mobil menü stili güncelleniyor - Çocuksu ve eğlenceli tasarım */
@media (max-width: 992px) {
    .header-content {
        justify-content: space-between;
    }
    
    .main-nav {
        flex: 0;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-header-actions {
        display: flex;
        margin-right: 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-social-container {
        display: block;
    }
    
    /* Mobil logo büyütme */
    .logo img {
        height: 75px !important;
        width: auto;
        transition: all 0.3s ease;
    }
    
    .header.scrolled .logo img {
        height: 70px !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #1e88e5, #0d47a1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 15px 40px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow-y: auto;
        z-index: 998;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
        border-radius: 0 15px 15px 0;
    }
    
    /* Hamburger menü açıldığında logo için özel alan - ortalanmış ve tıklanabilir */
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
        background-image: url('../images/logo/logo.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 999;
        cursor: pointer;
        filter: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0 0 5px;
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.05s * var(--i, 0));
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.05rem;
        padding: 8px 12px;
        width: 100%;
        display: block;
        text-align: left;
        position: relative;
        font-weight: 600;
        font-family: 'Nunito', sans-serif;
        letter-spacing: 0.5px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        margin-bottom: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover, .nav-link.active {
        color: white !important;
        opacity: 1 !important;
        transform: translateX(3px) !important;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08) !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Çocuksu Bilet butonu - mobil */
    .btn-ticket {
        background: linear-gradient(45deg, #1e88e5, #0d47a1) !important;
        color: white !important;
        border-radius: 30px !important;
        padding: 10px 15px !important;
        margin-top: 10px !important;
        text-align: center !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3) !important;
        transform: none !important;
        border: none !important;
        width: 100% !important;
        font-size: 1rem !important;
    }
    
    .btn-ticket:hover {
        background: linear-gradient(45deg, #0d47a1, #1e88e5) !important;
        transform: translateY(0) !important;
        box-shadow: 0 6px 15px rgba(30, 136, 229, 0.4) !important;
    }
    
    .btn-ticket::after {
        display: none !important;
    }
    
    /* Sosyal medya butonları mobil menüde */
    .mobile-social-container {
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-social-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .mobile-social-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-social-button:hover {
        transform: translateY(-3px) rotate(5deg);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-social-button:nth-child(1) {
        background-color: #E1306C;
    }
    
    .mobile-social-button:nth-child(2) {
        background-color: #3b5998;
    }
    
    .mobile-social-button:nth-child(3) {
        background-color: #25d366;
    }
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(14, 53, 119, 0.7), rgba(14, 53, 119, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    margin-top: 105px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(35, 41, 70, 0.8), rgba(35, 41, 70, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.hero-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 53, 119, 0.3);
}

/* Featured Performances */
.performances {
    background-color: white;
}

.performance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
    margin: 0 auto;
}

.performance-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: #fff;
    transform: translateY(0);
}

.performance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
}

.performance-card .card-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.performance-card:hover .performance-image {
    transform: scale(1.07);
}

.performance-card .card-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10%, rgba(0, 0, 0, 0) 70%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: all 0.4s ease;
    opacity: 0;
}

.performance-card:hover .card-overlay {
    bottom: 0;
    opacity: 1;
}

.performance-card .card-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
    width: 100%;
    display: block !important;
    overflow: visible !important;
    height: auto !important;
    padding: 0 !important;
}

.performance-card:hover .card-content {
    transform: translateY(0);
}

.performance-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    display: block !important;
    overflow: visible !important;
    white-space: normal !important;
    text-overflow: clip !important;
}

.performance-card .btn-overlay-details {
    color: white;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin-top: 5px;
}

.performance-card .btn-overlay-details i {
    margin-left: 5px;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.performance-card .btn-overlay-details:hover {
    opacity: 1;
    color: #42A5F5;
}

.performance-card .btn-overlay-details:hover i {
    transform: translateX(4px);
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content p {
    margin-bottom: 15px;
    color: #444;
}

/* Organizations Section */
.organizations {
    background-color: var(--dark);
    color: var(--light);
}

.organizations .section-title h2 {
    color: var(--light);
}

.organizations .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.organization-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.organization-feature {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.organization-feature:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.organization-feature i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.organization-feature h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.organization-feature p {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    margin-bottom: 30px;
    color: #444;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-details h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo-container {
    margin-bottom: 15px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 10px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-link a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        padding: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0 0 20px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 10000 !important;
        position: relative !important;
        width: 26px !important;
        height: 20px !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-button {
        width: 100%;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Hero Slider Styles - Basitleştirilmiş */
.hero-slider {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}

/* Bootstrap 5 Carousel Basics */
.carousel {
    position: relative;
    margin-top: 100px;
}

/* Mobil cihazlarda header ile slider arasındaki boşluğu kaldır */
@media (max-width: 768px) {
    .carousel {
        margin-top: 0;
    }
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.carousel-item {
    position: relative;
    display: none;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform 1.5s ease, opacity 1.5s ease;
    height: 800px;
    opacity: 0;
    will-change: transform, opacity;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
    opacity: 1;
}

/* Yatay geçiş efektini kullanalım */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
    opacity: 0;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
    opacity: 0;
}

.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end {
    transform: translateX(0);
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.08) contrast(1.12) saturate(1.15);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Carousel caption düzeni - Renkli geçiş ve z-index artırıldı */
.carousel-caption {
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.7) 20%, 
        rgba(0, 0, 0, 0.5) 40%, 
        rgba(0, 0, 0, 0.3) 60%, 
        rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    text-align: left;
    z-index: 3;
}

/* Fotoğraf daha canlı görünmesi için overlay */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
                rgba(0,0,0,0) 30%, 
                rgba(0,0,0,0.1) 60%, 
                rgba(0,0,0,0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Carousel için responsive düzenlemeler */
@media (max-width: 992px) {
    .carousel-item {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 600px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 500px;
    }
}

/* Carousel Captions */
.carousel-content {
    background-color: transparent;
    padding: 25px;
    max-width: 550px;
    margin-left: 20px;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.3s;
}

.carousel-item.active .carousel-content {
    transform: translateY(0);
}

.carousel-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

.carousel-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Nunito', sans-serif;
}

.carousel-content .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-content .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.carousel-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-content .btn:hover:before {
    left: 100%;
}

/* Responsive slider tasarımı */
@media (max-width: 992px) {
    .carousel-content {
        max-width: 450px;
        padding: 25px;
    }
    
    .carousel-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .carousel-content {
        max-width: 400px;
        padding: 20px;
        margin-left: 10px;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-description {
        font-size: 1rem;
    }
    
    .carousel-content .btn {
        padding: 10px 25px;
    }
}

@media (max-width: 576px) {
    .carousel-content {
        max-width: 300px;
        padding: 15px;
        margin-left: 5px;
    }
    
    .carousel-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .carousel-title:after {
        width: 60px;
        bottom: -8px;
    }

    .carousel-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .carousel-content .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Default Hero (If no sliders) */
.default-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    height: 500px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.default-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Carousel Button Styles */
.carousel-content .btn {
    align-self: flex-start;
    padding: 15px 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, #1e88e5, #0d47a1);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.3);
}

.carousel-content .btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(45deg, #0d47a1, #0a367d);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.carousel-content .btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 25px rgba(30, 136, 229, 0.4);
    color: white;
}

.carousel-content .btn:hover:before {
    width: 100%;
}

.carousel-content .btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 15px rgba(30, 136, 229, 0.3);
}

/* Slider Transition */
.carousel-item {
    transition: transform 0.8s ease-in-out;
    backface-visibility: hidden;
}

/* Carousel indicators - görsel iyileştirme */
.carousel-indicators {
    margin-bottom: 20px;
    z-index: 20;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-indicators .active {
    background-color: #FFD700;
    opacity: 1;
    transform: scale(1.2);
}

/* Carousel Controls - Updated */
.carousel-control-prev,
.carousel-control-next {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .carousel-control-prev {
        right: 80px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .carousel-control-prev {
        right: 65px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 450px;
    }
    
    .carousel-title {
        font-size: 1.8rem;
    }
    
    .carousel-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-item-next.carousel-item-start,
.carousel-item-prev.carousel-item-end {
    transform: translateX(0);
}

/* Carousel için responsive düzenlemeler */
@media (max-width: 992px) {
    .carousel-item {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 300px;
    }
}

.carousel-content .btn-primary {
    background: linear-gradient(45deg, var(--primary), #0d47a1);
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}

.carousel-content .btn-primary:hover {
    background: linear-gradient(45deg, #0d47a1, var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Footer Sosyal Medya İkonları */
.social-media-footer {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-media-footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-media-footer .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.social-media-footer .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #fff;
}

.social-media-footer .facebook {
    background: #3b5998;
}

.social-media-footer .facebook:hover {
    background: #2d4373;
    color: #fff;
}

.social-media-footer .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-media-footer .instagram:hover {
    background: linear-gradient(45deg, #d7831f 0%, #c85a32 25%, #c21e3a 50%, #b01f5c 75%, #a01679 100%);
    color: #fff;
}

.social-media-footer .whatsapp {
    background: #25d366;
}

.social-media-footer .whatsapp:hover {
    background: #1da851;
    color: #fff;
}

/* Referanslar Bölümü Stilleri */
.references-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-top: 30px;
}

.references-section .section-title {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.references-slider {
    padding: 20px 0;
}

.reference-item {
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.reference-item img {
    max-height: 80px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .reference-item {
        padding: 10px;
    }
    
    .reference-item img {
        max-height: 60px;
    }
}

/* Testimonial Cards - Minimal Design */
.testimonial-card {
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-card::before,
.testimonial-card::after {
    content: '';
    position: absolute;
}

.testimonial-card::before {
    height: 3px;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #1e88e5, #64b5f6);
}

.testimonial-card::after {
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #1e88e5, #0d47a1);
}

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

.testimonial-card-inner {
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-left: 3px;
}

.testimonial-quote {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
    opacity: 0.3;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 10px;
    font-style: italic;
    color: #333;
    line-height: 1.4;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-author {
    border-top: 1px solid #f5f5f5;
    padding-top: 8px;
    margin-top: 5px;
}

.testimonial-author h5 {
    margin-bottom: 0;
    font-weight: 500;
    color: #999;
    font-size: 0.85rem;
}

.testimonial-author p {
    color: #bbb;
    font-size: 0.8rem;
    margin-top: 2px;
}

.empty-testimonials {
    text-align: center;
    padding: 30px 0;
}

.empty-testimonials i {
    font-size: 2rem;
    color: #eee;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
    background-color: #fafafa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card-inner {
        padding: 12px;
        margin-left: 3px;
    }
    
    .testimonial-quote {
        font-size: 12px;
    }
}

/* Header responsive ayarları */
@media (max-width: 1100px) {
    .nav-link {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        gap: 8px;
    }
}

@media (max-width: 992px) {
    .header-content {
        justify-content: space-between;
    }
    
    .main-nav {
        flex: 0;
    }
    
    .header-actions {
        display: none;
    }
}

/* Mobil menü sosyal butonları */
.mobile-social-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    display: none;
}

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

.mobile-social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.15rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-social-button:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.mobile-social-button:nth-child(1) {
    background-color: #E1306C;
}

.mobile-social-button:nth-child(2) {
    background-color: #3b5998;
}

.mobile-social-button:nth-child(3) {
    background-color: #25d366;
}

@media (max-width: 992px) {
    .mobile-social-container {
        display: block;
    }
    
    .nav-menu {
        padding-bottom: 30px;
    }
}

/* Mobil header butonları (hamburger icon solunda) - Daha minimal tasarım */
.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}

.mobile-ticket-button {
    background: linear-gradient(45deg, #1e88e5, #0d47a1);
    color: white;
    padding: 7px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 70px;
    white-space: nowrap;
}

.mobile-ticket-button i {
    font-size: 0.9rem;
}

.mobile-ticket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.4);
    background: linear-gradient(45deg, #0d47a1, #1e88e5);
}

.mobile-social-inline {
    display: flex;
    gap: 8px;
}

.mobile-social-inline-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-social-inline-button:nth-child(1) {
    background: #E1306C;
}

.mobile-social-inline-button:nth-child(2) {
    background: #3b5998;
}

.mobile-social-inline-button:nth-child(3) {
    background: #25d366;
}

.mobile-social-inline-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hamburger menüsünün stili güncelleniyor - Çocuksu ve eğlenceli */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 10px;
    padding: 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(30, 136, 229, 0.1);
}

.mobile-toggle:hover {
    background-color: rgba(30, 136, 229, 0.15);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.mobile-toggle span:nth-child(1) {
    background-color: #FF5252;
}

.mobile-toggle span:nth-child(2) {
    background-color: #1E88E5;
}

.mobile-toggle span:nth-child(3) {
    background-color: #4CAF50;
}

.mobile-toggle.active {
    position: relative;
    z-index: 1002;
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-toggle.active span {
    background-color: #FF5252;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #FF5252;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #FF5252;
}

/* Mobil menü stili güncelleniyor - Çocuksu ve eğlenceli tasarım */
@media (max-width: 992px) {
    .header-content {
        justify-content: space-between;
    }
    
    .main-nav {
        flex: 0;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-header-actions {
        display: flex;
        margin-right: 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-social-container {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #1e88e5, #0d47a1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 15px 40px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow-y: auto;
        z-index: 998;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
        border-radius: 0 15px 15px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0 0 5px;
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.05s * var(--i, 0));
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.05rem;
        padding: 8px 12px;
        width: 100%;
        display: block;
        text-align: left;
        position: relative;
        font-weight: 600;
        font-family: 'Nunito', sans-serif;
        letter-spacing: 0.5px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        margin-bottom: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover, .nav-link.active {
        color: white !important;
        opacity: 1 !important;
        transform: translateX(3px) !important;
        background: rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08) !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Çocuksu Bilet butonu - mobil */
    .btn-ticket {
        background: linear-gradient(45deg, #1e88e5, #0d47a1) !important;
        color: white !important;
        border-radius: 30px !important;
        padding: 10px 15px !important;
        margin-top: 10px !important;
        text-align: center !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3) !important;
        transform: none !important;
        border: none !important;
        width: 100% !important;
        font-size: 1rem !important;
    }
    
    .btn-ticket:hover {
        background: linear-gradient(45deg, #0d47a1, #1e88e5) !important;
        transform: translateY(0) !important;
        box-shadow: 0 6px 15px rgba(30, 136, 229, 0.4) !important;
    }
    
    .btn-ticket::after {
        display: none !important;
    }
    
    /* Sosyal medya butonları mobil menüde */
    .mobile-social-container {
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-social-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .mobile-social-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-social-button:hover {
        transform: translateY(-3px) rotate(5deg);
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-social-button:nth-child(1) {
        background-color: #E1306C;
    }
    
    .mobile-social-button:nth-child(2) {
        background-color: #3b5998;
    }
    
    .mobile-social-button:nth-child(3) {
        background-color: #25d366;
    }
}

/* Etkinlik Takvimi özel stil */
.etkinlik-takvimi-baslik {
    font-size: 1.5rem;
    font-weight: 200;
    color: #1e88e5;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

/* Tüm Etkinlikleri Gör butonu minimal stil */
.event-more-link {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #1e88e5;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
}

.event-more-link i {
    margin-left: 5px;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.event-more-link:hover {
    color: #0d47a1;
}

.event-more-link:hover i {
    transform: translateX(3px);
}

.event-slider {
    position: relative;
}

/* Diğer Oyunlar Sidebar */
.other-plays-sidebar {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-heading {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center;
}

.other-plays-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.other-play-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.other-play-image {
    width: 90px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    position: relative;
    background-color: #f0f0f0;
}

.other-play-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.other-play-card:hover .other-play-image img {
    transform: scale(1.1);
}

.other-play-details {
    padding: 12px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.other-play-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.other-play-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.other-play-meta i {
    margin-right: 4px;
}

.other-play-duration i {
    color: #74b9ff;
}

.other-play-age i {
    color: #ff7675;
}

.other-play-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3498db;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.other-play-link i {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.other-play-link:hover {
    color: #2980b9;
}

.other-play-link:hover i {
    transform: translateX(3px);
}

.see-all-button {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #f0f2f5;
    color: #2c3e50;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.see-all-button:hover {
    background-color: #e0e2e5;
    color: #2c3e50;
}

.see-all-button i {
    margin-right: 5px;
    color: #3498db;
}

/* Yolculuğumuz Timeline Styles */
.journey {
    padding: 80px 0;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.journey .section-title {
    color: #333;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.journey .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.journey .section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1e88e5;
    margin: 10px 0 0;
}

.journey-timeline {
    position: relative;
    overflow-x: auto;
    padding: 30px 0;
    margin: 30px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.timeline-container {
    display: flex;
    min-width: 100%;
    position: relative;
    padding: 60px 0;
    justify-content: space-between;
}

.timeline-container:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #1e88e5 0px,
        #1e88e5 15px,
        transparent 15px,
        transparent 30px
    );
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    flex: 0 0 18%;
    min-width: 200px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    text-align: center;
    transition: all 0.4s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin: 0 auto 20px;
    background: #fff;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-radius: 8px;
    border-top: 4px solid #1e88e5;
}

.timeline-item:nth-child(odd) .timeline-image {
    transform: translateY(-30px);
}

.timeline-item:nth-child(even) .timeline-image {
    transform: translateY(30px);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.timeline-item:hover .timeline-image {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.08);
}

.timeline-content {
    position: relative;
    padding: 0 5px;
}

.timeline-content h4 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    color: #333;
}

.timeline-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Her timeline item için farklı border renkleri */
.timeline-item:nth-child(1) .timeline-image {
    border-top-color: #1e88e5;
}

.timeline-item:nth-child(2) .timeline-image {
    border-top-color: #43a047;
}

.timeline-item:nth-child(3) .timeline-image {
    border-top-color: #fb8c00;
}

.timeline-item:nth-child(4) .timeline-image {
    border-top-color: #e53935;
}

/* Sonsuzluk sembolü için özel stil */
.infinity-item .timeline-image {
    background: linear-gradient(to bottom right, #f5f5f5, #e0e0e0);
    border-top-color: #616161;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infinity-symbol {
    font-size: 3.5rem;
    color: #616161;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.infinity-item:hover .infinity-symbol {
    transform: scale(1.1);
    opacity: 1;
}

.infinity-item .timeline-content h4 {
    color: #616161;
}

/* Keşfet butonu */
.journey-btn {
    background: #1e88e5;
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
}

.journey-btn:hover {
    background: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

/* Responsive styles for timeline */
@media (max-width: 991px) {
    .timeline-container {
        padding: 40px 0;
    }
    
    .timeline-item {
        min-width: 180px;
        flex: 0 0 22%;
    }
    
    .timeline-image {
        height: 150px;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    .infinity-symbol {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .journey-timeline {
        padding: 20px 0;
    }
    
    .timeline-container {
        padding: 30px 0;
    }
    
    .timeline-item {
        min-width: 160px;
        flex: 0 0 40%;
        margin-bottom: 30px;
    }
    
    .timeline-image {
        height: 140px;
    }
    
    .timeline-item:nth-child(odd) .timeline-image {
        transform: translateY(-20px);
    }
    
    .timeline-item:nth-child(even) .timeline-image {
        transform: translateY(20px);
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .infinity-symbol {
        font-size: 2.5rem;
    }
    
    .journey .section-title {
        font-size: 2rem;
    }
    
    .journey-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timeline-container:before {
        display: none;
    }
    
    .timeline-item {
        min-width: 80%;
        flex: 0 0 80%;
        margin-bottom: 40px;
    }
    
    .timeline-item:nth-child(odd) .timeline-image,
    .timeline-item:nth-child(even) .timeline-image {
        transform: translateY(0);
    }
    
    .timeline-image {
        height: 180px;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .infinity-symbol {
        font-size: 3rem;
    }
    
    .journey .section-title {
        font-size: 1.8rem;
    }
}

/* Serüvenimiz - Yeni Macera Tasarımı */
.journey-adventure {
    padding: 80px 0;
    background-color: #fcfcfc;
    position: relative;
    overflow: hidden;
}

.journey-adventure::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(30, 136, 229, 0.08);
    z-index: 0;
}

.journey-adventure::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: rgba(30, 136, 229, 0.04);
    z-index: 0;
}

.adventure-path {
    position: relative;
    margin: 50px 0;
    z-index: 1;
}

.path-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #1e88e5 0px,
        #1e88e5 15px,
        transparent 15px,
        transparent 30px
    );
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.6;
}

.path-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #1e88e5;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.2);
}

.path-dot:nth-child(1) { left: 0%; }
.path-dot:nth-child(2) { left: 25%; }
.path-dot:nth-child(3) { left: 50%; }
.path-dot:nth-child(4) { left: 75%; }
.path-dot:nth-child(5) { left: 100%; }

.adventure-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.adventure-card {
    flex: 0 0 calc(20% - 20px);
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.adventure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 136, 229, 0.15);
}

.adventure-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1e88e5, #42a5f5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: -30px auto 15px;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

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

.adventure-card:nth-child(2) .adventure-icon {
    background: linear-gradient(45deg, #43a047, #66bb6a);
}

.adventure-card:nth-child(3) .adventure-icon {
    background: linear-gradient(45deg, #fb8c00, #ffb74d);
}

.adventure-card:nth-child(4) .adventure-icon {
    background: linear-gradient(45deg, #e53935, #ef5350);
}

.adventure-card:nth-child(5) .adventure-icon {
    background: linear-gradient(45deg, #5e35b1, #7e57c2);
}

.adventure-content {
    padding: 0 20px 20px;
    text-align: center;
}

.adventure-year {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    display: inline-block;
}

.adventure-year:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #1e88e5;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.adventure-card:nth-child(2) .adventure-year:after {
    background: #43a047;
}

.adventure-card:nth-child(3) .adventure-year:after {
    background: #fb8c00;
}

.adventure-card:nth-child(4) .adventure-year:after {
    background: #e53935;
}

.adventure-card:nth-child(5) .adventure-year:after {
    background: #5e35b1;
}

.adventure-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 0 10px;
    color: #333;
}

.adventure-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
}

.adventure-btn {
    background: linear-gradient(45deg, #1e88e5, #42a5f5);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.adventure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
    color: white;
}

.adventure-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42a5f5, #1e88e5);
    transition: all 0.4s ease;
    z-index: -1;
}

.adventure-btn:hover:before {
    left: 0;
}

/* Responsive styles */
@media (max-width: 1199px) {
    .adventure-card {
        flex: 0 0 calc(33.333% - 20px);
        margin-bottom: 50px;
    }
    
    .path-line {
        display: none;
    }
    
    .path-dot {
        display: none;
    }
}

@media (max-width: 991px) {
    .adventure-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .adventure-card {
        flex: 0 0 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .adventure-icon {
        margin-top: 0;
        width: 50px;
        height: 50px;
        font-size: 20px;
        position: absolute;
        top: 15px;
        left: 15px;
        margin: 0;
    }
    
    .adventure-content {
        padding: 20px;
        text-align: left;
        padding-left: 80px;
    }
    
    .adventure-year {
        font-size: 1.5rem;
    }
    
    .adventure-year:after {
        left: 0;
        transform: none;
    }
    
    .adventure-content h4 {
        font-size: 1.1rem;
    }
}

/* Serüvenimiz - Yeni Deniz Yolculuğu Tasarımı */
.journey-voyage {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f8ff 0%, #e6f2ff 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.voyage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a4b78;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.voyage-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e88e5, #64b5f6);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.voyage-subtitle {
    color: #546e7a;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.voyage-map {
    position: relative;
    margin: 80px 0 40px;
    min-height: 350px;
}

.voyage-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.voyage-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.voyage-line {
    fill: none;
    stroke: #64b5f6;
    stroke-width: 3;
    stroke-dasharray: 10, 5;
    stroke-linecap: round;
    animation: dash 60s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

.voyage-ship {
    position: absolute;
    top: 100px;
    left: 0;
    font-size: 28px;
    color: #1565c0;
    z-index: 3;
    animation: sailShip 30s linear infinite;
    transform-origin: center;
}

.voyage-ship i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform: rotate(5deg);
    animation: rockShip 3s ease-in-out infinite;
}

@keyframes sailShip {
    0% {
        left: 0%;
        transform: translateY(0);
    }
    25% {
        left: 25%;
        transform: translateY(-30px);
    }
    50% {
        left: 50%;
        transform: translateY(10px);
    }
    75% {
        left: 75%;
        transform: translateY(-20px);
    }
    100% {
        left: 100%;
        transform: translateY(0);
    }
}

@keyframes rockShip {
    0%, 100% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-2deg);
    }
}

.voyage-stations {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.voyage-station {
    flex: 0 0 18%;
    position: relative;
    transition: all 0.4s ease;
}

.voyage-station:hover {
    transform: translateY(-10px);
}

.station-point {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.station-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.voyage-station:hover .station-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.voyage-station[data-year="2012"] .station-icon {
    color: #1e88e5;
}

.voyage-station[data-year="2016"] .station-icon {
    color: #43a047;
}

.voyage-station[data-year="2020"] .station-icon {
    color: #fb8c00;
}

.voyage-station[data-year="2024"] .station-icon {
    color: #e53935;
}

.voyage-station[data-year="∞"] .station-icon {
    color: #5e35b1;
}

.station-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.voyage-station:hover .station-content {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.station-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.station-year {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.voyage-station[data-year="2012"] .station-year {
    color: #1e88e5;
}

.voyage-station[data-year="2016"] .station-year {
    color: #43a047;
}

.voyage-station[data-year="2020"] .station-year {
    color: #fb8c00;
}

.voyage-station[data-year="2024"] .station-year {
    color: #e53935;
}

.voyage-station[data-year="∞"] .station-year {
    color: #5e35b1;
}

.station-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #37474f;
    margin-bottom: 10px;
}

.station-content p {
    font-size: 0.9rem;
    color: #607d8b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Bulutlar */
.voyage-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: floatCloud 20s linear infinite;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.cloud-1::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 45px;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 15%;
    right: 15%;
    animation: floatCloud 25s linear infinite reverse;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.cloud-2::after {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 35px;
}

.cloud-3 {
    width: 120px;
    height: 45px;
    bottom: 30%;
    left: 20%;
    animation: floatCloud 30s linear infinite;
}

.cloud-3::before {
    width: 55px;
    height: 55px;
    top: -25px;
    left: 20px;
}

.cloud-3::after {
    width: 65px;
    height: 65px;
    top: -30px;
    left: 55px;
}

.cloud-4 {
    width: 90px;
    height: 35px;
    bottom: 20%;
    right: 25%;
    animation: floatCloud 22s linear infinite reverse;
}

.cloud-4::before {
    width: 45px;
    height: 45px;
    top: -20px;
    left: 15px;
}

.cloud-4::after {
    width: 55px;
    height: 55px;
    top: -25px;
    left: 40px;
}

@keyframes floatCloud {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Kuşlar */
.voyage-birds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bird {
    position: absolute;
    background: transparent;
    z-index: 0;
}

.bird::before,
.bird::after {
    content: '';
    position: absolute;
    background: #546e7a;
    border-radius: 50% 50% 0 0;
    opacity: 0.5;
}

.bird-1 {
    top: 15%;
    left: 30%;
    animation: flyBird 15s linear infinite;
}

.bird-1::before {
    width: 15px;
    height: 8px;
    left: 0;
    animation: flapWing 0.5s ease-in-out infinite alternate;
}

.bird-1::after {
    width: 15px;
    height: 8px;
    left: 15px;
    animation: flapWing 0.5s ease-in-out infinite alternate-reverse;
}

.bird-2 {
    top: 25%;
    right: 35%;
    animation: flyBird 18s linear infinite 2s;
}

.bird-2::before {
    width: 12px;
    height: 6px;
    left: 0;
    animation: flapWing 0.4s ease-in-out infinite alternate;
}

.bird-2::after {
    width: 12px;
    height: 6px;
    left: 12px;
    animation: flapWing 0.4s ease-in-out infinite alternate-reverse;
}

.bird-3 {
    top: 20%;
    left: 60%;
    animation: flyBird 20s linear infinite 5s;
}

.bird-3::before {
    width: 10px;
    height: 5px;
    left: 0;
    animation: flapWing 0.3s ease-in-out infinite alternate;
}

.bird-3::after {
    width: 10px;
    height: 5px;
    left: 10px;
    animation: flapWing 0.3s ease-in-out infinite alternate-reverse;
}

@keyframes flyBird {
    0% {
        transform: translate(0, 0) scale(0.8);
    }
    25% {
        transform: translate(100px, -20px) scale(1);
    }
    50% {
        transform: translate(200px, 0) scale(0.9);
    }
    75% {
        transform: translate(100px, 20px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(0.8);
    }
}

@keyframes flapWing {
    0% {
        transform: rotateX(0);
    }
    100% {
        transform: rotateX(180deg);
    }
}

.voyage-btn {
    background: linear-gradient(45deg, #1565c0, #42a5f5);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.voyage-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
    color: white;
}

.voyage-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #42a5f5, #1565c0);
    transition: all 0.4s ease;
    z-index: -1;
}

.voyage-btn:hover::before {
    left: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .voyage-stations {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .voyage-station {
        flex: 0 0 30%;
    }
    
    .voyage-map {
        margin-bottom: 80px;
    }
    
    .voyage-path {
        display: none;
    }
}

@media (max-width: 991px) {
    .voyage-station {
        flex: 0 0 45%;
    }
    
    .voyage-title {
        font-size: 2.2rem;
    }
    
    .voyage-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .voyage-station {
        flex: 0 0 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .voyage-title {
        font-size: 2rem;
    }
    
    .station-content {
        padding: 15px;
    }
    
    .station-year {
        font-size: 1.6rem;
    }
    
    .station-content h4 {
        font-size: 1.1rem;
    }
    
    .station-content p {
        font-size: 0.85rem;
    }
    
    .voyage-clouds, .voyage-birds {
        display: none;
    }
}

@media (max-width: 575px) {
    .voyage-title {
        font-size: 1.8rem;
    }
    
    .voyage-subtitle {
        font-size: 0.9rem;
    }
    
    .station-point {
        width: 40px;
        height: 40px;
    }
    
    .station-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .voyage-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.voyage-station.station-active {
    transform: translateY(-15px);
}

.voyage-station.station-active .station-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.voyage-station.station-active .station-content {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .voyage-station {
        flex: 0 0 45%;
    }
    
    .voyage-title {
        font-size: 2.2rem;
    }
    
    .voyage-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .voyage-station {
        flex: 0 0 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .voyage-title {
        font-size: 2rem;
    }
    
    .station-content {
        padding: 15px;
    }
    
    .station-year {
        font-size: 1.6rem;
    }
    
    .station-content h4 {
        font-size: 1.1rem;
    }
    
    .station-content p {
        font-size: 0.85rem;
    }
    
    .voyage-clouds, .voyage-birds {
        display: none;
    }
}

@media (max-width: 575px) {
    .voyage-title {
        font-size: 1.8rem;
    }
    
    .voyage-subtitle {
        font-size: 0.9rem;
    }
    
    .station-point {
        width: 40px;
        height: 40px;
    }
    
    .station-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .voyage-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* ===== VR EXPERIENCES SECTION ===== */
.additional-experiences-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: none;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.additional-experiences-section::before {
    display: none !important;
}

.experience-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.experience-header .section-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: none;
}

.experience-header .section-description {
    color: #64748b;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.experience-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.2rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-align: center;
    min-width: 0;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.experience-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.experience-card:hover::before {
    left: 100%;
}

.experience-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(59,130,246,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.experience-card:hover .experience-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.experience-card h5 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 3;
}

.experience-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    z-index: 3;
}

/* Animation for cards appearing */
.experience-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }
.experience-card:nth-child(4) { animation-delay: 0.4s; }

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

/* Responsive Design for VR Experiences */
@media (max-width: 992px) {
    .additional-experiences-section {
        padding: 1.5rem 0;
    }
    
    .experience-header .section-title {
        font-size: 2rem;
    }
    
    .experience-card {
        padding: 1rem 0.7rem;
        margin-bottom: 1.2rem;
    }
    
    .experience-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .additional-experiences-section {
        padding: 1rem 0;
    }
    
    .experience-header .section-title {
        font-size: 1.8rem;
    }
    
    .experience-header .section-description {
        font-size: 1.1rem;
    }
    
    .experience-card {
        padding: 0.8rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .experience-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .experience-card h5 {
        font-size: 0.98rem;
    }
    
    .experience-card p {
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .experience-header .section-title {
        font-size: 1.6rem;
    }
    
    .experience-card {
        padding: 0.7rem 0.3rem;
    }
    
    .experience-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
} 