:root {
    --color1: #1f1813;
    --color2: #39493a;
    --color3: #e78738;
    --color4: #eccd55;
    --color5: #f6edab;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-lg: 24px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffdf5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Navbar & Search */
.navbar {
    background: rgba(31, 24, 19, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(231, 135, 56, 0.2);
}

.navbar-brand {
    font-family: 'Abril Fatface', serif;
    font-size: 1.8rem;
    color: var(--color4) !important;
}

.nav-link {
    color: #fff !important;
    margin: 0 10px;
    opacity: 0.7;
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--color4) !important;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(236, 205, 85, 0.3);
    overflow: hidden;
}

.search-input {
    background: transparent;
    border: none;
    padding: 8px 15px;
    color: white;
    width: 130px;
    transition: var(--transition);
}

.search-input:focus { width: 200px; outline: none; }

.search-btn {
    background: var(--color4);
    border: none;
    width: 40px;
    color: var(--color1);
}

/* PDF Butonu */
.btn-pdf {
    background: transparent;
    color: var(--color4);
    border: 2px solid var(--color4);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-pdf:hover {
    background: var(--color4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 135, 56, 0.2);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    background: url('img/background.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    color: var(--color4);
}

.hero-lead { color:var(--color4) ; opacity: 0.9; font-size: 1.3rem; margin-bottom: 2rem; }

/* Sections & Cards */
.section-padding { padding: 80px 0; }

.section-header {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    color: var(--color4);
    margin-bottom: 50px;
}

.card-modern {
    background: white;
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(31, 24, 19, 0.05);
    transition: var(--transition);
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(31, 24, 19, 0.12);
}

.card-modern img { width: 100%; height: 200px; object-fit: cover; }

.card-body { padding: 1.8rem; text-align: center; }

.card-body h5 { font-family: 'Abril Fatface', serif; color: var(--color2); }

/* Carousel Düzeltmesi - Okları dışarı alma */
.carousel {
    padding: 0 70px; /* Oklar için boşluk */
    position: relative;
}

.carousel-control-prev, .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev { left: -10px; }
.carousel-control-next { right: -10px; }

.carousel-icon-btn {
    width: 50px;
    height: 50px;
    background: var(--color4);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.carousel-icon-btn:hover { background: var(--color1); transform: scale(1.1); }

/* Form & UI */
.contact-card {
    background: white;
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-control-modern {
    border-radius: 15px;
    padding: 15px;
    border: 2px solid #f0f0f0;
    width: 100%;
}



.btn-primary-modern:hover { background: var(--color1); color: var(--color4); transform: translateY(-3px); }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 55px; height: 55px;
    border-radius: 50%;
    background: var(--color4);
    color: #fff; border: none;
    display: none;
    z-index: 1000;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
    .carousel { padding: 0 20px; }
    .carousel-control-prev { left: 5px; }
    .carousel-control-next { right: 5px; }
}