:root {
    --primary-color: #001f60;
    --text-dark: #373737;
    --text-muted: #5e5e5e;
}

body {
    font-family: 'Roboto Slab', serif;
    color: var(--text-dark);
    padding-top: 4.5rem;
}



/* Navbar */
.navbar-brand {
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2b2b2b !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Info Cards Section */
.info-cards-section {
    margin-top: -100px;
    z-index: 10;
    padding-bottom: 50px;
}

.card-custom {
    border-radius: 0;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-custom .card-title {
    font-size: 32px;
}

/* Content Sections */
.content-section img {
    border-radius: 0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.play-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Venue Cards */
.venue-card {
    display: block;
    width: 100%;
    height: 230px;
    border: 2px solid #d7d7d7;
    border-radius: 0 !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

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

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

.venue-overlay {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    display: flex; /* Flexbox for perfect centering */
    align-items: center;
    justify-content: center;
    padding: 1rem !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 1;
}

.venue-card h3 {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

/* Staff Section */
.staff-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.staff-img-container {
    width: 100%;
    aspect-ratio: 1 / 1.25; /* Portrait aspect ratio similar to design */
    overflow: hidden;
    border-radius: 4px;
}

.staff-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.staff-card:hover img {
    filter: grayscale(0%);
}

.staff-title {
    font-weight: 400;
    font-size: 14px;
    color: #5e5e5e !important;
}

.staff-name {
    font-size: 16px;
    color: var(--text-dark);
}

/* Buttons */
.btn-light {
    background-color: #f8f9fa;
    border-color: #ddd;
}

.bg-brand-main {
    background-color: #2a4439;
}
.bg-brand-secondary {
    background-color: rgba(0,31,96,.10);
}

.sponsor-item {
    display: block;
    width: 80%;
    height: 200px;
    overflow: hidden;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
.sponsor-item:hover {
    box-shadow: var(--bs-box-shadow) !important;
}
.carousel-caption-custom {
    bottom: 25% !important;
    z-index: 5;
}

.breadcrumb-custom {
    margin: 15px 0;
}

@media (max-width: 992px) {
    .navbar-brand-custom {
        max-width: 75vw !important; /* İstediğiniz genişlik */
        overflow: hidden !important;
        white-space: nowrap !important;
        text-overflow: ellipsis !important; /* ... ekler */
    }
}