/* Local Fonts */
@import url('/css/fonts/montserrat.css');

/* Base styles */
:root {
    /* Colors */
    --primary-color: #0089F7;
    --text-color: #000000;
    --background-color: #f8f9fa;
    --footer-color: #FF6720;
    --white-color: #ffffff;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-spacing: 3rem;
}

/* Navigation */
.navbar {
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-color) !important;
    text-transform: capitalize;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--footer-color) !important;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.header-logo {
    max-height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .header-logo {
        max-height: 30px;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .language-switcher {
        margin-top: 15px;
        margin-bottom: 15px;
        justify-content: center;
        width: 100%;
    }
    
    .language-switcher .btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.85rem;
        min-width: 40px;
    }
    
    .language-switcher .btn-group {
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        border-radius: 4px;
    }
}

/* Hero Section */
#hero {
    margin-top: 25px; /* Header yüksekliği kadar boşluk */
}

.hero-carousel {
    min-height: 200px;
    max-height: 700px;
    overflow: hidden;
}

.hero-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobil cihazlar için hero carousel ve video optimizasyonu */
@media (max-width: 768px) {
    /* Hero carousel */
    .hero-carousel {
        min-height: 180px;
        max-height: 300px;
    }
    
    #hero {
        margin-top: 15px;
        margin-bottom: 15px !important;
    }
    
    .carousel-item img {
        height: auto;
        max-height: 300px;
        object-position: center;
    }
    
    /* Video section */
    .video-section .row > div {
        margin-bottom: 20px;
    }
    
    .video-section .row > div:last-child {
        margin-bottom: 0;
    }
    
    .video-section .ratio {
        max-width: 450px;
        margin: 0 auto;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .video-section {
        padding: 30px 0;
    }
}

/* Sections */
section {
    font-family: var(--font-primary);
    background-color: var(--background-color);
}

/* Video Section Styles */
.video-section {
    padding: 50px 0;
}

.video-section .video-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

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

.video-container {
    gap: 20px;
}


body {
    background-color: var(--background-color);
}

/* Footer */
.site-footer {
    background-color: var(--footer-color);
    color: #ffffff;
}

.footer-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}
    
/* Spacing */
:root {
    --section-padding: 100px;
    --content-margin: 40px;
}

/* Layout */
.content_wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.clearfix::after {
    content: "";
}

/* Sections */
section:not(:first-child) {
    margin-top: var(--section-spacing);
}

section#hero {
    margin-top: calc(var(--section-spacing) / 4) !important;
}



/* About Section */
.about-image {
    width: 100%;
    height: auto;
}

.about-section {
    background-color: var(--footer-color);
    color: white;
    padding: 5rem 0;
}

.about-section .about-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.about-section .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-section .about-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
}

.about-section .about-content {
    line-height: 1.8;
}

.about-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.about-section ul li {
    position: relative;
    margin-bottom: 1rem;
}

.about-section ul li:before {
    content: '✹';
    position: absolute;
    left: -1.5rem;
}

/* LinkedIn Section */
.linkedin-section {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.linkedin-row {
    margin: 0 -10px;
}
/* 
.linkedin-post {
    padding: 15px;
    height: 500px;
}

.linkedin-post iframe {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
} */

/* Contact Section */
.contact-section {
    background-color: rgba(255, 103, 32, 0.05);
}

.contact-section .btn-primary {
    background-color: #FF6720;
    border-color: #FF6720;
}

.contact-section .btn-primary:hover {
    background-color: #e65c1c;
    border-color: #e65c1c;
}

.contact-form .form-control {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 137, 247, 0.25);
}

.contact-form textarea.form-control {
    min-height: 120px;
}

.btn-primary {
    background-color: var(--footer-color) !important;
    border-color: var(--footer-color) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #e55c1c !important;
    border-color: #e55c1c !important;
}

.contact-form .btn-primary {
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background-color: var(--footer-color);
    color: white;
}

.site-footer img {
    max-height: 80px;
}
.clearfix {
    clear: both;
    display: table;
}

/* Sections */
.section {
    position: relative;
    padding: var(--section-padding) 0;
}

.section_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid */
.wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.column {
    flex: 1;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.4;
}

h2 {
    font-size: 2.5em;
    color: var(--text-color);
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Utilities */
.no_line {
    border: none;
    margin: 0;
    padding: 0;
}

/* Images */
.scale-with-grid {
    max-width: 100%;
    height: auto;
}

.image_wrapper {
    position: relative;
    display: block;
}

/* Announcements Section */
.announcements-section {
    margin-bottom: 100px;
    background-color: var(--background-color);
}

.announcements-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

/* Media Queries */
@media only screen and (max-width: 959px) {
    .wrap {
        margin: 0 -10px;
    }
    
    .column {
        padding: 0 10px;
    }
}

@media only screen and (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .section_wrapper {
        padding: 0 15px;
    }
    
    h2 {
        font-size: 2em;
    }
    
    .hide-mobile {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}
