﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Space Grotesk', 'Noto Sans', sans-serif;
    background-color: #fcf8f8; 
}


.hero-section {
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
        /* HTML'deki .rounded-4 sınıfıyla aynı değeri veriyoruz */
        border-radius: var(--bs-border-radius-xl, 1rem);
    }

    .hero-section > * {
        position: relative;
        z-index: 2;
    }

.text-dark-brown {
    color: #1b0e0e;
}

.text-muted-brown {
    color: #974e4e;
}

.btn-custom-red {
    background-color: #e82626;
    color: #fcf8f8;
    border: none;
}

    .btn-custom-red:hover {
        background-color: #c41a1a;
        color: #fcf8f8;
    }

.fw-black {
    font-weight: 900;
}

.aspect-video-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    border-radius: var(--bs-border-radius-xl, 1rem); /* Köşeleri yuvarlatmak için eklendi */
    overflow: hidden; /* Güvenlik için eklendi */
}


/* --- Timeline Component Styles --- */

.timeline-container {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 1.5rem; /* Görsel ve içerik arasındaki boşluk */
    position: relative;
}

.timeline-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px; /* Dot genişliği kadar */
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fcf8f8; /* Arka plan rengi */
    border: 2px solid #e82626; /* Kırmızı accent rengi */
    flex-shrink: 0;
    z-index: 1;
}

.timeline-line {
    width: 2px;
    background-color: #e7d0d0; /* Soluk çizgi rengi */
    flex-grow: 1; /* Alttaki elemana kadar uzamasını sağlar */
}

.timeline-content {
    padding-bottom: 3rem; /* Her bir madde altındaki boşluk */
}

/* --- Contact Page Styles --- */

/* İletişim bilgilerinin yanındaki ikonlar için stil */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa; /* Bootstrap'in 'light' rengi */
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--bs-danger); /* Bootstrap kırmızı değişkeni */
    font-size: 1.2rem;
}

/* Harita iframe'inin responsive (mobil uyumlu) olmasını sağlar */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
}

    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }


/* --- Bootstrap Accordion (FAQ) Stili --- */
/* Akordiyon stilini sitenin genel havasına uydurmak için */
.accordion-button {
    font-weight: bold;
    color: #1b0e0e; /* text-dark-brown */
}

    .accordion-button:not(.collapsed) {
        background-color: #fdf6f6; /* Kırmızıya yakın çok açık bir ton */
        color: #e82626; /* btn-custom-red */
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(232, 38, 38, 0.25);
    }

.accordion-item {
    border: 1px solid #e7d0d0;
}