/**
 * Ana Stil Dosyası
 * 
 * Geliştirici: Vedat Ardil - www.vedatardil.com.tr
 */

/* ===========================
   Genel Ayarlar
   =========================== */
:root {
    --primary-color: #c9a27a;
    --secondary-color: #8b6f47;
    --dark-color: #2c2c2c;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #dee2e6;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Bootstrap Özelleştirme
   =========================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    font-family: 'Playfair Display', serif;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Section Title
   =========================== */
.section-title {
    margin-bottom: 3rem;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem 0;
}

/* ===========================
   Service Cards
   =========================== */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* ===========================
   Blog Cards
   =========================== */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-meta {
    font-size: 0.875rem;
}

/* ===========================
   Blog Detay
   =========================== */
.blog-detail h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail ul,
.blog-detail ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-detail li {
    margin-bottom: 0.75rem;
}

.blog-detail p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-color);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--dark-color);
}

.footer .text-muted,
.footer p,
.footer li,
.footer a.text-muted {
    color: rgba(255, 255, 255, 0.78) !important;
}

.footer a.text-muted:hover,
.footer a.text-white:hover {
    color: #ffffff !important;
}

.footer-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.social-links a:hover {
    transform: translateY(-3px);
    display: inline-block;
}

/* ===========================
   Features
   =========================== */
.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.feature-box {
    transition: all 0.3s ease;
}

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

/* ===========================
   Mission Cards
   =========================== */
.mission-card {
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===========================
   Contact Info
   =========================== */
.info-card {
    transition: all 0.3s ease;
}

.detail-visual-card,
.before-after-card {
    background: linear-gradient(180deg, rgba(201, 162, 122, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(139, 111, 71, 0.12);
}

.before-after-card img,
.detail-visual-card img,
.location-card-image,
.service-hero-preview {
    width: 100%;
    height: auto;
    display: block;
}

.location-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.location-card-image,
.service-hero-preview {
    background: linear-gradient(180deg, rgba(201, 162, 122, 0.18) 0%, rgba(255, 255, 255, 1) 100%);
}

@media (max-width: 991.98px) {
    .hero-section {
        background-attachment: scroll;
    }
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 991px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* ===========================
   Animasyonlar
   =========================== */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 0.5rem;
}

