/* public/styles.css */

/* Genel Ayarlar */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    --text-dark: #212529;
    --text-light: #ffffff;
    --border-color: #dee2e6;
    --font-family-sans-serif: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-family-sans-serif);
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 56px; /* Navbar'ın sabit olması için boşluk */
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-light) !important;
}
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Carousel */
#heroCarousel {
    height: 400px; /* Carousel yüksekliği */
    overflow: hidden;
    position: relative;
}
#heroCarousel .carousel-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}
#heroCarousel .carousel-item img {
    filter: brightness(60%); /* Görseli karart */
    height: 100%;
    object-fit: cover;
}
#heroCarousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-light);
    background-color: rgba(0,0,0,0.4); /* Arka planı hafif karart */
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 80%;
}
#heroCarousel .carousel-caption h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
#heroCarousel .carousel-caption p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 100%, 100%;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
}
.carousel-indicators li {
    background-color: rgba(255,255,255,0.5);
    border: 1px solid var(--text-light);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.carousel-indicators li.active {
    background-color: var(--primary-color);
}


/* Genel Bölüm Stilleri */
section {
    padding: 80px 0;
}
section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}
section .btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Kart Stilleri (Odalar, Kampanyalar, Etkinlikler, Blog) */
.card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.card-body {
    padding: 25px;
}
.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.card-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}
.card-text.text-muted {
    font-size: 0.85rem;
}
.btn-primary, .btn-info {
    border-radius: 50px;
    padding: 8px 20px;
}
.btn-outline-primary, .btn-outline-secondary, .btn-outline-info, .btn-outline-danger {
    border-radius: 50px;
    padding: 8px 20px;
}


/* Hakkımızda Bölümü */
.about-section .img-fluid {
    border-radius: 15px;
}
.about-section h2 {
    color: var(--primary-color);
}
.about-section p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Galeri Bölümü */
.gallery-section img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* İletişim Bölümü */
.contact-info {
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
}
.contact-info h4 {
    color: var(--primary-color);
}
.contact-info ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.contact-info .social-links a {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid;
}
.map-container {
    height: 450px; /* Harita yüksekliği */
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--bg-dark) !important;
    color: var(--text-light) !important;
    padding: 60px 0 30px;
}
.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}
.footer p, .footer ul li, .footer ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.footer ul li a:hover {
    color: var(--accent-color);
}
.footer .social-links a {
    font-size: 1.3rem;
    margin-right: 15px;
}
.footer .social-links a:hover {
    color: var(--accent-color);
}
.footer .border-top {
    border-color: rgba(255,255,255,0.1) !important;
}

/* Popup (Modal) */
.modal-content {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.modal-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
}
.modal-title {
    font-weight: 600;
}
.modal-body {
    padding: 30px;
    line-height: 1.6;
}
.modal-footer {
    border-top: none;
    padding: 15px 30px;
}