@font-face {
    font-family: 'Khodijah Free';
    src: url('../fonts/Khodijah-Free.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #f5f5f5;
    --accent-color: #c9a96e;
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #d6b978;
    text-decoration: none;
}

p {
    margin-bottom: 1.5rem;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    z-index: 1;
    color: var(--text-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-title p {
    color: rgba(51, 51, 51, 0.7);
    margin-top: 15px;
}

.btn-custom {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #d6b978;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 8px 28px;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#preloader .loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 9999;
    transition: all 0.5s ease;
    background-color: var(--bg-dark);
}

.header.sticky {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
    position: relative;
}

.navbar-brand {
    font-family: 'Khodijah Free', 'Georgia', 'Times New Roman', serif !important;
    font-weight: bold !important;
    font-size: 24px;
    letter-spacing: 2px;
    color: #fff !important;
    padding: 0;
    display: inline-block;
    z-index: 1;
}

.custom-font-title {
    font-family: 'Khodijah Free', 'Georgia', serif !important;
    font-weight: bold !important;
}

.custom-green-heading {
    font-family: 'Khodijah Free', 'Georgia', serif !important;
    font-weight: bold !important;
    color: #16613c !important;
}

.custom-gold-heading {
    font-family: 'Khodijah Free', 'Georgia', serif !important;
    font-weight: bold !important;
    color: #d5b590 !important;
}

.navbar-brand::after,
.navbar-brand::before,
.navbar-brand+*:not(.navbar-toggler),
.navbar-brand>button,
.navbar-brand>.btn,
.navbar-brand>.btn-close,
.navbar-brand>span:not(.visually-hidden),
button[data-bs-dismiss],
.close,
.btn-close,
button[aria-label="Close"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    clip: rect(0, 0, 0, 0) !important;
    position: absolute !important;
}

.navbar-brand:after,
.navbar-brand:before {
    content: none !important;
}

.navbar-brand * {
    display: inline-block !important;
}

.navbar-brand span,
.navbar-brand div {
    display: inline-block !important;
}

.nav-link {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 15px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    outline: none !important;
    z-index: 2;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    top: 50%;
    left: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

/* ================================
   HERO SECTION - MODERN DÖNEN SLIDER
   ================================ */

.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slider .carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: #0f4d31;
    padding: 20px;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Dönen resim container */
.rotating-image-container {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ana dönen fotoğraf */
.rotating-slider-image {
    width: 85%;
    height: 85%;
    max-width: 600px;
    max-height: 600px;
    object-fit: cover;
    border-radius: 2%;
    animation: rotate360 15s linear infinite;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

/* 360° dönme animasyonu */
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 800px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    color: #fff !important;
    font-family: 'Khodijah Free', 'Georgia', 'Times New Roman', serif !important;
    font-weight: bold !important;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    padding: 0;
    display: inline-block;
}

.hero-content h2 {
    font-size: 5rem;
    color: #e9ecef;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    color: #adb5bd;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Updated button styles for hero section */
.hero .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 15;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

/* Scroll down */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-decoration: none;
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 15;
}

.scroll-down:hover {
    color: var(--accent-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    position: relative;
}

.gallery-filter {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    display: inline-block;
    margin: 0 5px 10px;
    padding: 8px 18px;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.gallery-grid {
    margin: 0 -10px;
    display: flex;
    flex-wrap: wrap;
}

.gallery-sizer,
.gallery-item {
    width: 33.33%;
    padding: 10px;
}

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.gallery-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.gallery-box:hover img {
    transform: scale(1.05);
}

.photo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(201, 169, 110, 0.9);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-info {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    transition: all 0.3s ease;
}

.gallery-box:hover .gallery-info {
    bottom: 0;
}

.gallery-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.gallery-info p {
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(51, 51, 51, 0.7);
}

.gallery-actions {
    display: flex;
    gap: 10px;
}

.gallery-action {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.gallery-action:hover {
    background-color: #d6b978;
    color: white;
    transform: scale(1.1);
}

.gallery-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.gallery-box:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-gallery:hover {
    background-color: #d6b978;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-gallery i {
    transition: transform 0.3s ease;
}

.btn-gallery:hover i {
    transform: translateX(5px);
}

.no-gallery-items {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    color: rgba(51, 51, 51, 0.7);
}

.no-gallery-items p {
    font-size: 18px;
}

.gallery-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(201, 169, 110, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-box:hover .gallery-link {
    opacity: 1;
    transform: translateY(0);
}

.gallery-images {
    position: relative;
    margin-bottom: 30px;
}

.main-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-image:hover .zoom-icon {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background-color: var(--accent-color);
    color: white;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.photo-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0.05);
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 3px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-thumb.active {
    border-color: var(--accent-color);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-section {
    background-color: var(--primary-color);
}

.about-img {
    position: relative;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding: 30px 20px;
}

.about-content h2 {
    margin-bottom: 20px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.about-content p {
    margin-bottom: 20px;
}

/* ================================
   BLOG SECTION
   ================================ */

.blog-section {
    background-color: var(--bg-light);
}

.blog-card {
    margin-bottom: 30px;
    background-color: white;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--accent-color);
}

.blog-meta {
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.7);
}

.blog-meta span {
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.blog-content p {
    margin-bottom: 20px;
}

/* Etiket Stilleri */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag-item {
    display: inline-block;
    background-color: #f5f5f5;
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    border: 1px solid #e9e9e9;
}

.tag-item:hover,
.tag-item.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-section {
    background-color: var(--primary-color);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.contact-info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 0;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    color: var(--text-color);
    padding: 12px 15px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
    border-color: var(--accent-color);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.contact-form .btn-custom {
    width: 100%;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer h4,
.footer h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer h4::after,
.footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer p {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.post-thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-thumb img:hover {
    transform: scale(1.1);
}

.post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.post-info {
    padding-left: 15px;
}

.post-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.post-info h5 a {
    color: #2c2c2c;
}

.post-info span {
    font-size: 12px;
    color: #888;
}

/* ================================
   FORM ELEMENTS
   ================================ */

.comment-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.comment-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.comment-form-title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 10px;
    color: var(--text-color);
}

.comment-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.form-floating {
    margin-bottom: 5px;
}

.form-floating>.form-control {
    padding: 1.5rem 1rem;
    background-color: var(--bg-light);
    border: 1px solid #e9ecef;
    color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-floating>.form-control:focus {
    background-color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 110, 0.15);
}

.form-floating>label {
    padding: 1.5rem 1rem;
    color: rgba(51, 51, 51, 0.7);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
    color: var(--accent-color);
}

.form-floating>.form-control::placeholder {
    color: transparent;
}

.comment-btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
    border: none;
    background-color: var(--accent-color);
    color: #fff;
}

.comment-btn:hover {
    background-color: #d6b978;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.15);
    border-left: 4px solid #28a745;
    color: var(--text-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.15);
    border-left: 4px solid #dc3545;
    color: var(--text-color);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}

.form-title {
    font-family: var(--font-primary);
    color: var(--text-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.full-width {
    width: 100%;
    margin-bottom: 20px;
}

.input-container {
    display: flex;
    width: 100%;
    height: 56px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.textarea-container {
    height: 150px;
}

.icon-box {
    width: 56px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    flex-shrink: 0;
}

.input-container input,
.input-container textarea {
    flex-grow: 1;
    padding: 15px;
    background-color: white;
    border: none;
    color: var(--text-color);
    font-size: 16px;
    width: 100%;
    height: 100%;
}

.input-container textarea {
    resize: none;
    min-height: 150px;
}

.input-container input::placeholder,
.input-container textarea::placeholder {
    color: #aaa;
}

.input-container input:focus,
.input-container textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.3);
}

.submit-container {
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn i {
    font-size: 18px;
}

.submit-btn:hover {
    background-color: #d6b978;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ================================
   COOKIE NOTICE
   ================================ */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: white;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    padding: 10px 0;
    font-size: 14px;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-custom-light {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-custom-light:hover {
    background-color: #d6b978;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ================================
   PAGE STRUCTURE
   ================================ */

.main-content {
    padding-top: 100px;
    min-height: 80vh;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 7px;
    margin-top: 7px;
    color: var(--text-color);
    font-weight: 700;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    padding: 0;
    margin: 0;
    background-color: transparent;
    list-style: none;
}

.breadcrumb-item {
    font-size: 14px;
    color: rgba(51, 51, 51, 0.7);
}

.breadcrumb-item.active {
    color: var(--text-color);
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #d6b978;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 8px;
    color: rgba(51, 51, 51, 0.5);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-dark);
        z-index: 9990;
        padding: 5rem 2rem;
        overflow-y: auto;
        transition: all 0.4s ease;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 15px 0;
    }

    .nav-link {
        font-size: 20px;
        padding: 10px 0 !important;
        display: inline-block;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        pointer-events: auto !important;
        clip: auto !important;
    }

    .close-menu:hover {
        color: var(--accent-color);
        transform: rotate(90deg);
    }

    .page-header {
        padding-top: 80px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .gallery-sizer,
    .gallery-item {
        width: 50%;
    }

    .blog-img img {
        height: 220px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .navbar-brand {
        font-size: 20px;
    }

    .contact-form-container {
        padding: 25px;
    }
}

/* Large Desktop */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .navbar-brand {
        font-size: 22px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        padding: 15px;
    }

    .rotating-image-container {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .rotating-slider-image {
        width: 80%;
        height: 80%;
        max-width: 350px;
        max-height: 350px;
    }

    .hero-content {
        padding: 20px;
        max-width: calc(100% - 60px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-btn {
        flex-direction: column;
        align-items: center;
    }

    .hero .btn-outline {
        width: 200px;
        text-align: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 25px;
    }

    .carousel-control-next {
        right: 25px;
    }

    .scroll-down {
        bottom: 35px;
    }

    .tags {
        gap: 6px;
    }

    .tag-item {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .gallery-meta {
        flex-direction: column;
    }

    .gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .page-header h1 {
        text-align: center;
        font-size: 40px;
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .page-header {
        padding-top: 60px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .header {
        padding: 15px 0;
    }

    .navbar-brand {
        font-size: 18px;
    }

    .gallery-box img {
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-slider .carousel-item {
        padding: 10px;
    }

    .rotating-image-container {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .rotating-slider-image {
        width: 75%;
        height: 75%;
        max-width: 280px;
        max-height: 280px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 15px;
        max-width: calc(100% - 40px);
    }

    .scroll-down {
        bottom: 25px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .gallery-sizer,
    .gallery-item {
        width: 100%;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .gallery-thumb {
        width: 50px;
        height: 50px;
    }

    .page-header h1 {
        text-align: center;
        font-size: 40px;
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .page-header {
        padding-top: 50px;
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .btn-custom {
        padding: 8px 20px;
        font-size: 13px;
    }

    .breadcrumb {
        margin-top: 5px;
    }

    .header {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .gallery-box img {
        height: 220px;
    }

    .input-container {
        height: 50px;
    }

    .icon-box {
        width: 50px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* Ekstra büyük ekranlar için */
@media (min-width: 1400px) {
    .rotating-slider-image {
        max-width: 700px;
        max-height: 700px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 5px 0;
    }

    .hero {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .navbar-collapse {
        padding: 3rem 2rem;
    }

    .navbar-nav .nav-item {
        margin: 8px 0;
    }

    .nav-link {
        font-size: 16px;
        padding: 5px 0 !important;
    }
}

/* ========================================
   SERİLER SAYFASI — Kategori Navigasyonu
   ======================================== */
.category-navigation {
    background: #0f4d31;
    padding: 30px 0;
    margin-bottom: 0;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.category-btn.active {
    background: white;
    color: #0f4d31;
    border-color: white;
    font-weight: 600;
}

.category-btn .count {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    min-width: 20px;
    text-align: center;
}

.category-btn.active .count {
    background: #0f4d31;
    color: white;
}

/* Gallery Info Header */
.gallery-info-header {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.gallery-info-content {
    text-align: center;
}

.gallery-info-content h2 {
    color: #495057;
    margin-bottom: 8px;
    font-size: 26px;
}

.gallery-info-content p {
    color: #6c757d;
    margin: 0;
    font-size: 15px;
}

/* Gallery item link + hover */
.gallery-main-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.gallery-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Category tag (eser listesinde) */
.category-tag {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    margin-top: 8px;
    display: inline-block;
    opacity: 0.9;
}

/* Sayfalama */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.result-info {
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
    font-size: 14px;
}

@media (max-width: 768px) {
    .category-filters {
        padding: 0 15px;
        gap: 8px;
    }

    .category-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .gallery-info-content h2 {
        font-size: 20px;
    }
}