/* --- Değişkenler --- */
:root {
    --color-orange: #e67e22;    /* Sunrise Orange */
    --color-orange-light: #f39c12;
    --color-stone: #f5e6d3;     /* Cappadocia Stone */
    --color-brown: #5d4037;     /* Earth Brown */
    --color-text: #4e342e;
    --color-white: #ffffff;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    
    --radius: 10px;
    --shadow: 0 10px 20px rgba(93, 64, 55, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-stone);
    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); }

/* --- Sunrise Bar --- */
.sunrise-bar { background: linear-gradient(to right, #e67e22, #d35400); color: #fff; padding: 8px 0; text-align: center; font-size: 0.9rem; }
.bar-flex { display: flex; justify-content: center; gap: 15px; align-items: center; }
.sunrise-bar a { text-decoration: underline; font-weight: bold; }

/* --- Header --- */
.dream-header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.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: 1.8rem; font-weight: 700; color: var(--color-brown); display: flex; align-items: center; gap: 5px; }
.balloon-icon { font-size: 1.5rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0px); } }

.magic-nav ul { display: flex; gap: 30px; align-items: center; }
.magic-nav a { font-weight: 600; color: var(--color-brown); font-size: 1rem; }
.magic-nav a:hover, .magic-nav a.active { color: var(--color-orange); }

.btn-orange { background-color: var(--color-orange); color: var(--color-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3); }
.btn-orange:hover { background-color: var(--color-orange-light); transform: translateY(-2px); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.cloud { width: 30px; height: 4px; background-color: var(--color-brown); border-radius: 5px; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.4s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; color: var(--color-orange); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.2rem; border-bottom: 1px solid #eee; padding-bottom: 10px; color: var(--color-brown); }

/* --- Hero --- */
.hero-dream { position: relative; height: 650px; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.gradient-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(93, 64, 55, 0.3), rgba(245, 230, 211, 0.2)); z-index: -1; }

.hero-text { z-index: 1; color: var(--color-white); max-width: 800px; padding: 20px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.subtitle { font-family: var(--font-heading); letter-spacing: 3px; font-size: 1.1rem; display: block; margin-bottom: 15px; }
.hero h1 { font-family: var(--font-heading); font-size: 4rem; line-height: 1.1; margin-bottom: 25px; }
.hero p { font-size: 1.3rem; margin-bottom: 40px; font-weight: 300; }

.hero-actions { display: flex; gap: 20px; justify-content: center; }
.btn { padding: 15px 35px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; border: none; font-size: 1rem; }
.btn-primary { background-color: var(--color-orange); color: var(--color-white); }
.btn-primary:hover { background-color: var(--color-orange-light); }
.btn-soft { background-color: var(--color-white); color: var(--color-brown); }
.btn-soft:hover { background-color: var(--color-stone); }

/* --- Tour Grid --- */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--color-brown); margin-bottom: 10px; }
.stone-divider { color: var(--color-orange); font-size: 1.5rem; letter-spacing: -3px; }

.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.tour-card { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.tour-card:hover { transform: translateY(-10px); }
.card-img { position: relative; height: 250px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; }
.price-tag { position: absolute; bottom: 15px; right: 15px; background: rgba(255,255,255,0.9); color: var(--color-brown); padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.9rem; }

.card-info { padding: 25px; text-align: center; }
.card-info h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--color-brown); margin-bottom: 10px; }
.card-info p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.link-story { color: var(--color-orange); font-weight: bold; border-bottom: 1px solid var(--color-orange); }

/* --- Visual Break --- */
.visual-break {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 50px;
}
.visual-break::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(93, 64, 55, 0.4); }
.break-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 20px; border: 2px solid rgba(255,255,255,0.5); }
.break-content h3 { font-family: var(--font-heading); font-size: 2.5rem; font-style: italic; }

/* --- Tour Details (About) --- */
.page-title { text-align: center; margin-bottom: 60px; }
.page-title h1 { font-family: var(--font-heading); font-size: 3rem; color: var(--color-brown); }

.tour-details { display: flex; flex-direction: column; gap: 80px; }
.tour-row { display: flex; align-items: center; gap: 50px; }
.tour-row.reverse { flex-direction: row-reverse; }
.tour-img { flex: 1; }
.tour-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.tour-desc { flex: 1; }
.tour-desc h2 { font-family: var(--font-heading); color: var(--color-orange); margin-bottom: 20px; font-size: 2rem; }
.check-list { list-style: none; margin: 20px 0; }
.check-list li { margin-bottom: 10px; padding-left: 25px; position: relative; color: var(--color-text); }
.check-list li::before { content: '✦'; color: var(--color-brown); position: absolute; left: 0; }
.btn-small { background-color: var(--color-brown); color: #fff; padding: 8px 20px; font-size: 0.9rem; }

/* --- Memory Grid (Testimonials) --- */
.memory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.memory-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.memory-card::before { content: '“'; position: absolute; top: 10px; left: 20px; font-family: serif; font-size: 4rem; color: var(--color-stone); z-index: 0; }
.stars { color: #f1c40f; margin-bottom: 15px; position: relative; z-index: 1; }
.memory-card p { font-style: italic; color: #555; margin-bottom: 20px; position: relative; z-index: 1; }
.guest strong { display: block; font-family: var(--font-heading); color: var(--color-brown); }
.guest span { font-size: 0.85rem; color: #999; }

/* --- Booking (Contact) --- */
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.booking-info h2 { font-family: var(--font-heading); color: var(--color-brown); margin-bottom: 20px; }
.contact-details p { margin-bottom: 10px; }
.weather-widget { background: #dceefb; color: #2980b9; padding: 15px; text-align: center; border-radius: var(--radius); margin-top: 30px; font-weight: bold; }

.cave-form .form-group { margin-bottom: 20px; }
.cave-form label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--color-brown); }
.cave-form input, .cave-form select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: var(--radius); font-family: var(--font-body); background: #fafafa; }
.btn-submit { width: 100%; background: var(--color-orange); color: #fff; padding: 15px; border: none; border-radius: var(--radius); font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: #d35400; }

/* --- Legal --- */
.info-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border-radius: var(--radius); }
.info-doc h1 { font-family: var(--font-heading); color: var(--color-brown); text-align: center; }
.info-doc h3 { color: var(--color-orange); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-heading); }

/* --- Footer --- */
.stone-footer { background-color: var(--color-brown); color: #fff; padding: 60px 0; margin-top: auto; text-align: center; }
.f-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.f-links a { color: var(--color-stone); margin: 0 15px; }
.f-links a:hover { color: var(--color-orange); }
.copyright { margin-top: 30px; font-size: 0.8rem; opacity: 0.7; }

@media (max-width: 992px) {
    .magic-nav { display: none; }
    .menu-toggle { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .tour-row, .booking-wrapper, .memory-grid { grid-template-columns: 1fr; flex-direction: column; }
    .tour-row.reverse { flex-direction: column; }
}