/* --- Değişkenler --- */
:root {
    --color-green: #2E8B57;     /* Sea Green / Pine */
    --color-green-dark: #1a5233;
    --color-turq: #40E0D0;      /* Turquoise */
    --color-sand: #F4A460;      /* Sandy Brown */
    --color-bg: #F0F8FF;        /* Alice Blue (Very light) */
    --color-white: #ffffff;
    --color-text: #333333;
    --font-heading: 'Cabin', sans-serif;
    --font-body: 'Raleway', sans-serif;
    --radius: 16px;
    --shadow: 0 8px 20px rgba(46, 139, 87, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* --- Top Bar --- */
.nature-bar { background-color: var(--color-green-dark); color: var(--color-white); padding: 5px 0; font-size: 0.9rem; }
.bar-flex { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: 0 auto; }
.nature-bar a { text-decoration: underline; color: var(--color-turq); }

/* --- Header --- */
.forest-header { background-color: var(--color-white); padding: 20px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--color-green); display: flex; align-items: center; gap: 5px; }
.green-text { color: var(--color-green-dark); }
.leaf-icon { font-size: 1.5rem; }

.nature-nav ul { display: flex; gap: 25px; align-items: center; }
.nature-nav a { font-weight: 700; font-size: 1rem; color: #555; }
.nature-nav a:hover, .nature-nav a.active { color: var(--color-green); }

.btn-pine { background-color: var(--color-green); color: var(--color-white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; }
.btn-pine:hover { background-color: var(--color-green-dark); }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: row; gap: 4px; }
.dot { width: 6px; height: 6px; background-color: var(--color-green); border-radius: 50%; }

/* --- Mobile Menu --- */
.mobile-overlay {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100%;
    background-color: var(--color-green-dark); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 25px;
    transition: 0.4s ease;
}
.mobile-overlay.active { right: 0; }
.close-btn { align-self: flex-end; font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer; }
.mobile-overlay a { font-family: var(--font-heading); font-size: 1.4rem; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; }

/* --- Hero --- */
.hero { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; margin-bottom: 50px; border-radius: 0 0 30px 30px; overflow: hidden; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -1;
    filter: brightness(0.8);
}
.hero-content { z-index: 1; color: var(--color-white); max-width: 700px; }
.badge-nature { background-color: var(--color-green); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; display: inline-block; margin-bottom: 15px; }
.hero h1 { font-family: var(--font-heading); font-size: 4rem; line-height: 1; margin-bottom: 15px; }
.turq-text { color: var(--color-turq); text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.hero p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 300; }

.search-box { background: rgba(255,255,255,0.9); padding: 10px; border-radius: 50px; display: flex; max-width: 500px; margin: 0 auto; }
.search-box input { flex: 1; border: none; background: transparent; padding: 10px 20px; font-size: 1rem; outline: none; }
.btn-search { background: var(--color-green); color: #fff; border: none; padding: 10px 30px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-search:hover { background: var(--color-green-dark); }

/* --- Bays Grid --- */
.section-padding { padding: 60px 0; }
.section-header, .page-head { text-align: center; margin-bottom: 50px; }
.section-header h2, .page-head h1 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-green-dark); margin-bottom: 10px; }
.leaf-line { width: 50px; height: 4px; background-color: var(--color-turq); margin: 0 auto; border-radius: 2px; }

.bay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.bay-card { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.bay-card:hover { transform: translateY(-5px); }
.card-img { position: relative; height: 200px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-tag { position: absolute; bottom: 10px; left: 10px; background: rgba(0,0,0,0.6); color: #fff; padding: 5px 10px; font-size: 0.8rem; border-radius: 10px; font-weight: bold; }

.card-info { padding: 25px; }
.card-info h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-green-dark); margin-bottom: 10px; }
.card-info p { font-size: 0.95rem; color: #666; margin-bottom: 20px; }
.link-pine { color: var(--color-green); font-weight: bold; font-family: var(--font-heading); }

/* --- Banner --- */
.forest-banner { background-color: var(--color-green); color: var(--color-white); padding: 50px 0; margin-top: 50px; border-radius: var(--radius); width: 95%; margin: 50px auto; }
.banner-flex { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 20px; }
.b-item .icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.b-item h4 { font-size: 1.5rem; font-family: var(--font-heading); margin-bottom: 5px; }

/* --- About & Split --- */
.split-nature { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-col h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--color-green); margin-bottom: 20px; }
.pine-list { margin-top: 20px; list-style: none; }
.pine-list li { margin-bottom: 10px; color: #555; }
.organic-frame img { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; box-shadow: 10px 10px 0 var(--color-turq); }

/* --- Reviews --- */
.camp-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.review-bubble { background: var(--color-white); padding: 30px; border-radius: var(--radius); position: relative; box-shadow: var(--shadow); }
.user-img { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 15px; }
.bg-green { background: var(--color-green); }
.bg-turq { background: var(--color-turq); }
.bg-sand { background: var(--color-sand); }
.review-bubble p { font-style: italic; color: #666; margin-bottom: 15px; font-size: 0.95rem; }
.location { display: block; font-size: 0.8rem; color: var(--color-turq); font-weight: bold; margin-bottom: 5px; }
.review-bubble strong { font-family: var(--font-heading); color: var(--color-green-dark); }

/* --- Contact & Forms --- */
.contact-green { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-map-info h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-green); margin-bottom: 20px; }
.c-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.c-row span { font-size: 1.2rem; }

.eco-form .form-group { margin-bottom: 20px; }
.eco-form label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--color-green-dark); }
.eco-form input, .eco-form select, .eco-form textarea { width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-family: var(--font-body); }
.eco-form input:focus { border-color: var(--color-turq); outline: none; }
.btn-turq { background: var(--color-turq); color: #fff; width: 100%; padding: 15px; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-turq:hover { background: var(--color-green); }
.full-width { width: 100%; }

/* --- Legal --- */
.eco-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 5px solid var(--color-green); }
.eco-doc h1 { font-family: var(--font-heading); color: var(--color-green-dark); }
.pine-line { height: 2px; background: var(--color-green); width: 100px; margin: 20px 0; }
.eco-doc h3 { color: var(--color-green); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); }

/* --- Footer --- */
.main-footer { background-color: var(--color-green-dark); padding: 50px 0; margin-top: auto; color: var(--color-white); text-align: center; }
.footer-logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
.footer-social a { color: var(--color-turq); margin: 0 10px; font-weight: bold; }
.copyright { margin-top: 20px; font-size: 0.85rem; opacity: 0.8; }

@media (max-width: 992px) {
    .nature-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { font-size: 3rem; }
    .split-nature, .contact-green { grid-template-columns: 1fr; }
    .banner-flex { flex-direction: column; }
}