/* Ana Stil Dosyası */

/* Değişkenler */
:root {
    --gold: #C5A572;
    --gold-light: #D4B88C;
    --gold-dark: #A88B5E;
    --silver: #C0C0C0;
    --dark-blue: #0E1C2F;
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #666;
    --white: #fff;
    --black: #000;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --text-dark: #333;
    --text-light: #666;
}

/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    height: 81px;
    width: 100%;
}

.header .navbar {
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .navbar-brand {
    padding: 0;
    margin: 0;
    margin-right: 2rem; /* Logo ile navbar arasına boşluk */
}

.header .navbar-brand img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
}

.header .navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem; /* Menü öğeleri arasına boşluk */
}

.header .nav-item {
    position: relative;
}

.header .nav-link {
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem; /* İkon ile metin arasına boşluk */
}

.header .nav-link:hover {
    color: var(--gold);
}

.header .nav-link i {
    font-size: 1.1rem;
}

/* Ana İçerik Alanı */
.main-content {
    flex: 1;
    width: 100%;
    position: relative;
    z-index: 1;
    padding-top: 81px; /* Header yüksekliği kadar padding */
}

/* Bölüm Stilleri */
.section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.section-title {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .section {
        padding: 3rem 0;
    }
    
    .main-content {
        padding: 1.5rem 0;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 2rem 0;
    }
    
    .main-content {
        padding: 1rem 0;
    }
}

/* Hero Bölümleri */
.hero-section,
.about-hero-section,
.hr-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    margin-top: -81px; /* Header yüksekliğini dengele */
}

.hero-section::before,
.about-hero-section::before,
.hr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(14, 28, 47, 0.85), rgba(14, 28, 47, 0.85));
    z-index: 1;
}

.hero-content,
.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title,
.about-hero-title,
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle,
.about-hero-subtitle,
.hero-content h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.3s;
}

.hero-description,
.about-hero-description,
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.6s;
    color: #fff;
    opacity: 0.9;
}

/* İletişim Sayfası Hero Bölümü */
.about-hero-section {
    background: linear-gradient(rgba(14, 28, 47, 0.85), rgba(14, 28, 47, 0.85)), url("../../images/hero/contact-hero.jpg");
    background-size: cover;
    background-position: center;
}

/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .separator {
    margin: 0 8px;
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
}

/* İş İlanları */
.jobs-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.job-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.job-header h3 {
    margin: 0 0 15px 0;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-meta span {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-size: 0.9rem;
}

.job-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.job-content {
    padding: 25px;
}

.job-content h4 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.job-description p,
.job-requirements ul,
.job-benefits ul {
    color: var(--text-color);
    line-height: 1.6;
}

.job-requirements ul,
.job-benefits ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li,
.job-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.job-requirements li::before,
.job-benefits li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.job-footer {
    padding: 20px;
    background: var(--light-color);
    text-align: right;
    border-top: 1px solid #eee;
}

/* Özellikler Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

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

.feature-item h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    color: #999;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links i {
    margin-right: 5px;
    color: var(--primary-color);
}

.footer-bottom {
    background: var(--black);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section,
    .about-hero-section,
    .hr-hero {
        padding: 40px 0;
        min-height: 25vh;
    }
    
    .hero-title,
    .about-hero-title,
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle,
    .about-hero-subtitle,
    .hero-content h4 {
    font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-section,
    .about-hero-section,
    .hr-hero {
        padding: 30px 0;
        min-height: 20vh;
    }

    .hero-title,
    .about-hero-title,
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle,
    .about-hero-subtitle,
    .hero-content h4 {
        font-size: 1rem;
    }

    .job-meta {
    flex-direction: column;
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
}
}

/* Sosyal Medya Bölümü */
.social-media-section {
        padding: 60px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.social-media-wrapper {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-section-title {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.social-section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.social-section-desc {
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    z-index: 1;
}

.social-link i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link span {
    display: none !important;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2, #0D5AB9);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0D8BD9);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0A66C2, #004182);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-link:hover i {
    transform: scale(1.2);
}

@media (max-width: 767px) {
    .social-media-section {
        padding: 40px 0;
    }
    
    .social-section-title {
        font-size: 1.8rem;
    }
    
    .social-section-desc {
        font-size: 1rem;
    margin-bottom: 30px;
}

    .social-links {
    gap: 20px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link i {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    .social-section-title {
        font-size: 1.6rem;
    }

    .social-section-desc {
    font-size: 0.9rem;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-link i {
        font-size: 1.2rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-main-wrapper {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section-title {
    font-size: 2.5rem;
    color: #0E1C2F;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: #C5A572;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.contact-section-desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-flex-area {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cards-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    background: #C5A572;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card .icon i {
    color: #fff;
    font-size: 24px;
}

.contact-card h3 {
    color: #0E1C2F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-card a {
    color: #C5A572;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #0E1C2F;
}

.contact-card a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.contact-card a:hover i {
    transform: translateX(5px);
}

.contact-form-side {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    color: #0E1C2F;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #0E1C2F;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #C5A572;
    outline: none;
}

.btn-primary {
    background: #C5A572;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #0E1C2F;
}

.working-hours {
    white-space: pre-line;
}

@media (max-width: 991px) {
    .contact-flex-area {
        flex-direction: column;
    }
    
    .contact-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .contact-main-wrapper {
        padding: 60px 0;
    }
    
    .contact-section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-side {
        padding: 30px;
    }
} 