/*
Theme Name: Bungalov Resort
Theme URI: https://example.com
Author: Developer
Description: 5 dil destekli bungalov tatil köyü WordPress teması
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bungalov
Requires at least: 5.0
Tested up to: 6.5
*/

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2D6A4F;
    --primary-dark: #1B4332;
    --primary-light: #52B788;
    --accent: #D4A853;
    --accent-light: #E8C97A;
    --text: #333333;
    --text-light: #666666;
    --bg: #F9F7F3;
    --bg-white: #FFFFFF;
    --bg-dark: #1a1a2e;
    --border: #E8E4DE;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.site-logo .site-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.site-logo .site-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

.main-navigation ul li a {
    padding: 10px 18px;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
    background: var(--primary);
    color: white;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
}

.language-switcher a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.language-switcher a:hover,
.language-switcher a.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 67, 50, 0.7) 0%,
        rgba(45, 106, 79, 0.5) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 800px;
}

/* Modern İki Satırlı Hero Başlık */
.hero-title-two-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.hero-title-two-lines .line-1 {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
    color: rgba(255,255,255,0.9);
}

.hero-title-two-lines .line-2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title-two-lines .line-1 { font-size: 1.1rem; }
    .hero-title-two-lines .line-2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero-title-two-lines .line-1 { font-size: 0.95rem; letter-spacing: 2px; }
    .hero-title-two-lines .line-2 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .hero-title-two-lines { gap: 5px; margin-bottom: 20px; }
    .hero-title-two-lines .line-2 { font-size: 1.6rem; }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 168, 83, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

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

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(212, 168, 83, 0.4);
}

.about-image .experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-image .experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* ==========================================
   BUNGALOWS SECTION
   ========================================== */
.bungalows-section {
    padding: 100px 0;
    background: var(--bg);
}

.bungalows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bungalow-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bungalow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.bungalow-card .card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.bungalow-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.bungalow-card .card-image .price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.bungalow-card .card-image .price-tag small {
    font-weight: 400;
    font-size: 0.75rem;
}

.bungalow-card .card-image .card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bungalow-card .card-content {
    padding: 25px;
}

.bungalow-card .card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.bungalow-card .card-content .description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.bungalow-card .card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.bungalow-card .card-features .feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--bg);
    padding: 6px 12px;
    border-radius: 20px;
}

.bungalow-card .card-features .feature .icon {
    color: var(--primary);
}

.bungalow-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.bungalow-card .card-footer .guests {
    font-size: 0.9rem;
    color: var(--text-light);
}

.bungalow-card .card-footer .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-about .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.footer-about .footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-contact ul li .icon {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 20px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-radius: 0 0 var(--radius) var(--radius);
    }

    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-navigation ul li a {
        padding: 12px 20px;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .language-switcher {
        order: 3;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .bungalows-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   WP SPECIFIC
   ========================================== */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

img.wp-post-image,
img.attachment-large,
img.attachment-medium,
img.attachment-thumbnail {
    border-radius: var(--radius);
}

.wp-caption {
    background: var(--bg-white);
    padding: 10px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    padding-top: 8px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

/* ==========================================
   SINGLE BUNGALOW MODERN LAYOUT
   ========================================== */
.bungalow-single {
    margin-top: 80px;
}

.bungalow-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.bungalow-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bungalow-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.bungalow-hero .hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; color: rgba(255,255,255,0.6); }

.bungalow-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.hero-meta .price {
    background: var(--accent);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
}

.hero-meta .price small { font-weight: 400; font-size: 0.9rem; }

/* Grid Layout */
.bungalow-details-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 60px 20px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 { font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 20px; }
.content-section h3 { font-size: 1.4rem; color: var(--primary-dark); margin-bottom: 15px; }
.content-section p { margin-bottom: 15px; color: var(--text-light); }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-weight: 500;
}

.feature-item .icon { font-size: 1.3rem; }

/* Gallery */
.gallery-grid .gallery-item img { border-radius: 8px; }

/* Sticky Sidebar Booking Card */
.bungalow-sidebar .sticky {
    position: sticky;
    top: 100px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 25px;
    border: 1px solid var(--border);
}

.card-header h3 { margin-bottom: 15px; font-size: 1.3rem; }

.price-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.price-highlight small { font-size: 1rem; font-weight: 400; color: var(--text-light); }

.quick-info {
    list-style: none;
    margin: 20px 0;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.quick-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.quick-info .icon { font-size: 1.1rem; }

.full-width {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.lang-switcher-box {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.lang-switcher-box a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.lang-switcher-box a:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* Responsive */
@media (max-width: 992px) {
    .bungalow-details-grid { grid-template-columns: 1fr; }
    .bungalow-sidebar .sticky { position: static; margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .bungalow-hero h1 { font-size: 2rem; }
    .bungalow-hero { height: 50vh; }
    .features-grid { grid-template-columns: 1fr; }
}






/* Bungalov Detay Sayfası Layout Düzeltmeleri */
.bungalow-single {
    width: 100%;
    margin-top: 80px;
}

.bungalow-details-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    box-sizing: border-box;
}

.bungalow-main,
.bungalow-sidebar {
    min-width: 0;
    width: 100%;
}

.bungalow-main .content-section {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* Mobilde tam genişlik */
@media (max-width: 992px) {
    .bungalow-details-grid {
        grid-template-columns: 1fr;
    }
    .bungalow-sidebar {
        order: -1; /* Sidebar mobilde üste taşınsın */
    }
    .booking-card {
        position: static !important;
    }
}


/* ==========================================
   MODERN BUNGALOW ARCHIVE PAGE
   ========================================== */

/* Archive Hero */
.archive-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    overflow: hidden;
}

.archive-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.archive-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.archive-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.9) 0%, rgba(45, 106, 79, 0.7) 100%);
}

.archive-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.archive-hero .subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.archive-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.archive-hero .hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 25px;
}

.archive-hero .results-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.archive-hero .results-count .count {
    font-size: 1.3rem;
    color: var(--accent);
}

/* Filter Bar */
.filter-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input[type="number"] {
    padding: 10px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range input {
    width: 100px;
}

.btn-filter {
    padding: 10px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter:hover {
    background: var(--primary-dark);
}

.clear-filters {
    margin-left: auto;
    padding: 10px 20px;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.clear-filters:hover {
    color: var(--primary);
}



.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    background: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* Bungalow Grid */
.bungalow-listing {
    padding: 60px 0;
    background: var(--bg);
}

.bungalow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

/* Modern Card */
.bungalow-card-modern {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.bungalow-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Card Badges */
.card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-type {
    background: var(--primary);
    color: white;
}

.badge-popular {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 2;
}

.favorite-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

/* Card Image */
.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bungalow-card-modern:hover .card-image {
    transform: scale(1.1);
}

.card-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
}

.card-overlay-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 15px;
    background: rgba(0,0,0,0.7);
    padding: 8px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.card-overlay-info .info-item {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.image-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Card Content */
.card-content {
    padding: 25px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating .stars {
    color: var(--accent);
    font-size: 0.9rem;
}

.rating .rating-value {
    font-weight: 700;
    color: var(--text);
}

.rating .reviews {
    color: var(--text-light);
    font-size: 0.85rem;
}

.price-box {
    text-align: right;
}

.price-box .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
}

.price-box .period {
    font-size: 0.85rem;
    color: var(--text-light);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-title a {
    color: var(--primary-dark);
    transition: var(--transition);
}

.card-title a:hover {
    color: var(--primary);
}

.card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: var(--bg);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Card Details */
.card-details {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.detail-item .icon {
    font-size: 1.1rem;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 10px;
}

.card-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.btn-view {
    background: var(--primary);
    color: white;
}

.btn-view:hover {
    background: var(--primary-dark);
}

.btn-book {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-book:hover {
    background: var(--primary);
    color: white;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
}

.no-results-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination Modern */
.pagination-modern {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination-modern .page-numbers {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.pagination-modern .page-numbers:hover,
.pagination-modern .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

 

/* Responsive */
@media (max-width: 992px) {
    .filters-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group,
    .price-range {
        width: 100%;
    }
    
  
}

@media (max-width: 768px) {
    .archive-hero h1 {
        font-size: 2rem;
    }
    

    
    .card-header {
        flex-direction: column;
    }
    
    .price-box {
        text-align: left;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}


/* ==========================================
   BUNGALOW LİSTE MODU (SABİT)
   ========================================== */
.bungalow-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bungalow-card-list {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bungalow-card-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Görsel Alanı */
.list-image-wrapper {
    position: relative;
    width: 40%;
    min-height: 320px;
    overflow: hidden;
    flex-shrink: 0;
}

.list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bungalow-card-list:hover .list-image { transform: scale(1.05); }

.list-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
}

.list-image-wrapper .badge-type { position: absolute; top: 20px; left: 20px; z-index: 2; }

.image-count {
    position: absolute;
    bottom: 20px; right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
}

/* İçerik Alanı */
.list-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
}

.list-title-wrap { flex: 1; }
.list-title-wrap .card-title { font-size: 1.6rem; margin-bottom: 8px; line-height: 1.2; }
.list-title-wrap .card-title a { color: var(--primary-dark); transition: var(--transition); }
.list-title-wrap .card-title a:hover { color: var(--primary); }

.price-box { text-align: right; white-space: nowrap; }
.price-box .amount { font-size: 1.8rem; font-weight: 800; color: var(--primary-dark); display: block; line-height: 1; }
.price-box .period { font-size: 0.9rem; color: var(--text-light); }

.list-content .card-excerpt {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.list-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.list-details .detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.list-details .detail-item .icon { font-size: 1.2rem; }

.card-tags { margin-bottom: 20px; }
.tag {
    background: var(--bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.list-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.list-actions .btn { padding: 14px 28px; font-weight: 600; }

/* Responsive */
@media (max-width: 992px) {
    .list-image-wrapper { width: 100%; min-height: 250px; }
    .list-content { padding: 25px; }
    .list-header { flex-direction: column; gap: 10px; }
    .price-box { text-align: left; }
}

@media (max-width: 768px) {
    .list-actions { flex-direction: column; }
    .list-actions .btn { width: 100%; text-align: center; justify-content: center; }
    .archive-hero h1 { font-size: 2rem; }
}