/* Global Styles */
html, body {
    height: 100%; /* Sayfanın tam yüksekliğini ayarla */
    margin: 0; /* Varsayılan margin'i kaldır */
}

body {
    display: flex;
    flex-direction: column; /* İçerikleri dikey hizala */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: url('resimler/IMG_2413.PNG') no-repeat center center fixed;
    background-size: cover;
}
body::before {
    content: ''; /* Pseudo-element için gerekli */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Yarı saydam siyah overlay */
    z-index: -1; /* Arka planda kalmasını sağlar */
}

#performances {
    min-height: calc(100vh - 50px); /* Footer yüksekliği hesaba katılır */
    padding: 0;
    display: flex; /* İçerikleri hizalamak için flex kullan */
    flex-direction: column; /* İçerikleri dikey hizalar */
    justify-content: center; /* Dikey ortalama */
    align-items: center; /* Yatay ortalama */
    background: rgba(0, 0, 0, 0.75); /* Arka plan rengi ve saydamlık */
    color: white; /* Yazı rengi */
    text-align: center; /* Metin ortalama */
    padding: 0; /* Varsayılan boşluğu kaldır */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Hafif gölge */
}

main {
    flex: 1; /* Ana içerik alanını büyüt, footer'ı alta it */
}
.navbar {
    background: rgba(0, 0, 0, 0.85); /* Enhanced shading */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4); /* Added shadow */
}

.navbar-brand {
    font-size: 1.7rem;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #ffffff;
    margin: 0 15px;
    transition: color 0.3s, transform 0.2s;
}

.navbar-nav .nav-link:hover {
    color: #f0ad4e;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6); /* Transparent overlay */
}

.hero h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #f0ad4e;
    border: none;
    padding: 12px 40px;
    font-size: 1.2rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #ec971f;
    transform: scale(1.05);
}

/* Sections */
section {
    background: rgba(0, 0, 0, 0.75); /* Transparent overlay for content readability */
    color: white;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

form .form-control {
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #f0ad4e;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4); /* Consistent with navbar */
}
/* Modern Scrollbar Styles */

/* For Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2); /* Track background */
    border-radius: 10px; /* Rounded corners for track */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(240, 173, 78, 0.8); /* Initial thumb color */
    border-radius: 10px; /* Rounded corners for thumb */
    border: 3px solid rgba(0, 0, 0, 0.2); /* Adds padding-like effect */
    transition: background-color 0.3s; /* Smooth transition */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ff9800; /* Orange color on hover */
}

/* For Firefox */
* {
    scrollbar-width: thin; /* Makes the scrollbar thinner */
    scrollbar-color: rgba(0, 0, 0, 0.9) rgba(0, 0, 0, 0.2); /* Initial colors */
}

*:hover {
    scrollbar-color: rgba(0, 0, 0, 0.9) rgba(0, 0, 0, 0.2); /* Orange thumb on hover */
}

/* Scrollbar visibility improvement on hover */
body:hover ::-webkit-scrollbar {
    opacity: 1;
    transition: opacity 0.3s;
}

body ::-webkit-scrollbar {
    opacity: 0;
    transition: opacity 0.3s;
}
/* Tour List Table Styling */
.table {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.table th, .table td {
    vertical-align: middle; /* Aligns content in the middle */
}

.table-dark {
    background-color: rgba(0, 0, 0, 0.7); /* Consistent styling */
}

.table a.btn-primary {
    background-color: rgba(0, 0, 0, 0.7);; /* Matches button color scheme */
    border: none;
    padding: 5px 15px;
    font-size: 0.9rem;
    transition: background-color 0.3s, transform 0.2s;
}

.table a.btn-primary:hover {
    background-color: #ec971f;
    transform: scale(1.05);
}
/* Staggered Video Layout Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Limits the width of the video container */
    height: 450px; /* Sets a fixed height for the video container */
    margin: 0 auto; /* Centers the container */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item {
    position: absolute;
    width: 45%;
    height: 60%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, z-index 0.3s;
    cursor: pointer; /* Shows that the video is interactive */
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none; /* Removes iframe border */
}

.video-back {
    width: 40%;
    height: 55%;
    opacity: 0.8;
}

.video-left {
    left: 0;
    transform: translate(-30%, -10%);
    z-index: 1;
}

.video-right {
    right: 0;
    transform: translate(30%, -10%);
    z-index: 1;
}

.video-front {
    width: 50%;
    height: 70%;
    z-index: 2;
    transform: translate(0, 10%);
}

/* Hover Effect for Bringing Video Forward */
.video-item:hover {
    transform: scale(1.1); /* Slight scaling on hover */
    z-index: 3; /* Brings the video to the front */
    opacity: 1; /* Increases visibility */
}
.language-icon {
    position: fixed;
    bottom: 20px;
    right: 80px;
    background-color: black;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

/* Language menu styling */
.language-menu {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 80px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 1001;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.language-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.language-menu li {
    border-bottom: 1px solid #eee;
}

.language-menu li:last-child {
    border-bottom: none;
}

.language-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
}

.language-menu li a:hover {
    background-color: #f0f0f0;
}

/* Hover effect for language icon */
.language-icon:hover {
    background-color: #ec971f;
    transform: scale(1.1); 
}



