@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans 3';
    src: url('../fonts/SourceSans3-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}
/* ==================
   BASE & RESET
================== */
:root {
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
	--primary-color: #D90429;
    --primary-hover-color: #EF233C;
    --dark-color: #2B2D42;
    --gray-color: #8D99AE;
    --light-color: #EDF2F4;
    --white-color: #FFFFFF;
    --text-color: #333;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}
body {
    font-family: var(--font-body);
    color: var(--dark-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-hover-color);
}

input:focus,
input:active,
textarea:focus,
textarea:active,
select:focus,
select:active {
    box-shadow: none !important;
    outline: none !important;
}

.btn, .form-control, .form-select, .modal-content, .card, .dropdown-menu {
    border-radius: 0 !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover-color);
    border-color: var(--primary-hover-color);
}

#yt-widget .yt-wrapper_align_right{display:none !important;}
/* ==================
   ÖZEL BUTONLAR
================== */
.btn-custom-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-custom-primary:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-custom-outline:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
}

/* ==================
   TOP BAR
================== */
#top-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

#top-bar .countdown-container {
    background-color: var(--white-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: baseline;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
}

#top-bar .countdown-container strong {
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1rem;
}

#top-bar #countdown-timer {
    font-size: 0.95rem;
}

#top-bar .cd-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0 0.25rem;
}

#top-bar .social-icons a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

#top-bar .social-icons a:hover {
    opacity: 0.8;
}

/* ==================
   BANNER
================== */
#banner-area {
    background-color: var(--white-color);
}
#banner-area img {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}
/* ==================
   HEADER & NAVBAR
================== */
.main-header {
	border-top:2px solid #ddd;
	border-bottom:2px solid #D90429;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.main-header .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

.main-header .nav-link {
    font-family: var(--font-heading);
    font-weight: 700;
	text-transform:uppercase;
    padding: .7rem 1.5rem;
}
.main-header .nav-link:focus,
.main-header .nav-link:active {
    box-shadow: none !important;
    outline: none !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
}

/* ==================
   ANASAYFA BÖLÜMLERİ
================== */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.main-slider {
    width: 100%;
    height: auto;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
}
.main-slider .swiper-slide {
    background-color: var(--light-color); 
}
.main-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: var(--white-color);
    background-color: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    background-color: rgba(0,0,0,0.6);
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
    font-size: 1.25rem; /* Okların boyutunu küçülttük */
    font-weight: 700;
}

.main-slider .swiper-pagination-progressbar {
    background: rgba(255, 255, 255, 0.5);
	min-height:10px;
}

.main-slider .swiper-pagination-progressbar-fill {
    background: var(--primary-color);
}
.side-block img {
    height: 155px;
    width: 100%;
    object-fit: cover;
}
.side-block img, .horizontal-block img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-block:hover img, .horizontal-block:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.mb-custom-gap {
    margin-bottom: 10px;
}

.animated-promo-box {
    background-color: var(--white-color);
    color: var(--white-color);
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 155px;
    text-decoration: none;
    animation: pulse-animation 2s infinite;
}

.animated-promo-box:hover {
    animation-play-state: paused;
}

.animated-promo-box .promo-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.animated-promo-box .promo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.animated-promo-box .promo-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(43, 45, 66, 0.7);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 10px 15px rgba(43, 45, 66, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(43, 45, 66, 0);
    }
}

.horizontal-block {
    position: relative;
    display: block;
    overflow: hidden;
}

.horizontal-block .overlay-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white-color);
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.horizontal-block .overlay-caption h4 {
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white-color);
}

.horizontal-block:hover .overlay-caption {
    background-color: rgba(217, 4, 41, 0.9);
}

.horizontal-block:hover img {
    transform: scale(1.03);
}

.why-attend-section {
    background-image: linear-gradient(rgba(43, 45, 66, 0.85), rgba(43, 45, 66, 0.85)), url('../img/feature-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
}

.why-attend-list {
    list-style: none;
    padding-left: 0;
}

.why-attend-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.why-attend-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.logo-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.logo-carousel-container::before,
.logo-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}

.logo-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%);
}


.logo-carousel-track {
    display: flex;
    align-items: center;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    padding: 0 40px;
    flex-shrink: 0;
}

.logo-item img {
    max-height: 100px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}



/* ==================
   FOOTER
================== */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 5rem 0 2rem 0; 
}
.main-footer h6 {
    color: var(--white-color);
    font-family: var(--font-heading);
}
.main-footer a {
    color: var(--gray-color);
    transition: color 0.3s ease;
}
.main-footer a:hover {
    color: var(--white-color);
}
.main-footer .footer-bottom {
    font-size: 0.9rem;
}
.main-footer .footer-bottom p {
    color: var(--gray-color);
}
.main-footer .footer-bottom .list-inline-item {
    margin-right: 1.5rem;
}
.main-footer form input[type="email"] {
    background-color: transparent;
    border: 1px solid var(--gray-color);
    color: var(--white-color);
}
.main-footer form input[type="email"]:focus {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    box-shadow: none;
    color: var(--white-color);
}
.main-footer form input[type="email"]::placeholder {
    color: var(--gray-color);
    opacity: 1;
}
.main-footer form .btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
}

/* ==================
   MODAL ÖZELLEŞTİRME
================== */
.modal-content {
    border: none;
    border-top: 5px solid var(--primary-color);
}

.modal-header {
    border-bottom: 1px solid var(--light-color);
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
}

.modal-footer {
    background-color: #f7f7f7;
    border-top: 1px solid var(--light-color);
}

.modal .btn-close {
    background-image: none;
    font-size: 1.5rem;
    color: var(--gray-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.modal .btn-close:hover {
    color: var(--dark-color);
    transform: rotate(90deg);
}


/* ==================
   İÇ SAYFA STİLLERİ
================== */

.page-header {
    background-color: var(--dark-color);
    padding: 3rem 0;
    color: var(--white-color);
}
.page-header h1 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.breadcrumb {
    background-color: transparent;
    padding-left: 0;
}
.breadcrumb-item a {
    color: var(--gray-color);
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
    color: var(--white-color);
}
.breadcrumb-item.active {
    color: var(--white-color);
}

.sidebar {
    background-color: var(--light-color);
    padding: 1.5rem;
}
.sidebar .sidebar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}
.sidebar .quick-links li a {
    color: var(--dark-color);
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}
.sidebar .quick-links li:last-child a {
    border-bottom: none;
}
.sidebar .quick-links li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.stats-section {
    background-color: var(--light-color);
}
.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}
.stat-box .stat-text {
    font-size: 1rem;
    color: var(--gray-color);
}

.signature-block p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.signature-block strong {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
}

.signature-block em {
    color: var(--gray-color);
    font-style: italic;
}

.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-list li::before {
    content: '\f058';
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.1rem;
}

.certificate-image {
    border: 1px solid #e0e0e0;
    padding: 8px;
    background-color: #f9f9f9;
    width: 100%;
    height: auto;
}

.profile-box {
    background-color: var(--white-color);
    border: 1px solid #eef0f2;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.profile-box .profile-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.profile-box .profile-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0;
}

.form-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

form .form-section-title:first-of-type {
    margin-top: 0;
}

.bursa-gallery .gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.bursa-gallery .gallery-item img {
    transition: transform 0.4s ease;
}

.bursa-gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.bursa-gallery .gallery-item::after {
    content: '\f00e';
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white-color);
    font-size: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 0;
}

.bursa-gallery .gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.masonry-grid.row {
    margin-left: -5px;
    margin-right: -5px;
}

.masonry-grid .grid-item {
    padding: 5px;
    margin-bottom: 0 !important;
}

.media-links ul {
    list-style: none;
    padding-left: 0;
}

.media-links li a {
    display: block;
    padding: 0.6rem 1rem;
    background-color: var(--light-color);
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
    word-break: break-all;
    font-size: 0.9rem;
}

.media-links li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding-left: 1.5rem;
}

.media-links li a::before {
    content: '\f0c1';
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    margin-right: 0.75rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.media-links li a:hover::before {
    color: var(--white-color);
}

.asset-box {
    border: 1px solid #eef0f2;
    padding: 2rem;
    text-align: center;
    background-color: #fcfcfc;
}

.asset-box img {
    max-width: 100%;
    max-height: 150px;
    height: auto;
    margin-bottom: 2rem;
}

.asset-box .download-buttons a {
    margin: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    margin-right: 10px;
    margin-top: 3px;
}

.contact-info li a {
    color: var(--dark-color);
}
.contact-info li a:hover {
    color: var(--primary-color);
}

.contact-card {
    border: 1px solid #eef0f2;
    height: 100%;
    text-align: center;
    padding: 1.5rem;
}
.contact-card img {
    max-width: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--light-color);
}
.contact-card .card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.contact-card .card-text {
    color: var(--gray-color);
    margin-bottom: 1rem;
}
.contact-card hr {
    margin: 1rem 0;
}
.contact-card ul {
    text-align: left;
    font-size: 0.9rem;
}
.contact-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.contact-card ul li i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 8px;
}
.contact-card ul li a {
    color: var(--dark-color);
}
.contact-card ul li a:hover {
    color: var(--primary-color);
}


/* Harita Bölümü */
.map-section iframe {
    line-height: 0;
    display: block;
}

.text-justify {
    text-align: justify;
}

.multi-column-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 2rem;
}

@media (max-width: 768px) {
    .multi-column-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

.content-section .form-section-title {
    margin-top: 0;
}

.venue-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.venue-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* ==================
   AÇILIŞ SAATLERİ SAYFASI
================== */
.schedule-box {
    background-color: var(--white-color);
    border: 1px solid #eef0f2;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.schedule-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.schedule-box .schedule-day {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.schedule-box .schedule-time {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-box .schedule-time i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.schedule-box .schedule-status {
    background-color: #d1e7dd;
    color: #0f5132;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-weight: 700;
}

.stand-type-header {
    background-color: #495057;
    color: var(--white-color);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    padding: 0.75rem;
    margin-top: 2rem !important;
}

.stand-info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-top: 1rem;
}

.stand-info-box strong {
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    #top-bar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    #top-bar .countdown-container {
        width: 100%;
        order: 1;
        text-align: center;
        padding: 0.5rem 0 0.5rem 1rem;
    }

    #top-bar .social-icons {
        order: 2;
    }

    #ytWidget {
        order: 3;
    }
}