/* Palette: Forest Green, Paper White, Charcoal */
:root {
    --green: #2E7D32;
    --paper: #F5F5F5;
    --white: #FFFFFF;
    --charcoal: #333333;
    --text: #424242;
    --gold: #C0A062;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* Navigation (Centered Logo Layout) */
.mag-nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 50px; background: var(--white); border-bottom: 1px solid #ddd; position: sticky; top: 0; z-index: 1000; }
.nav-left, .nav-right { flex: 1; display: flex; gap: 30px; }
.nav-right { justify-content: flex-end; }
.nav-center { text-align: center; }

.logo { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; line-height: 1; color: var(--charcoal); letter-spacing: 2px; }
.logo span { font-size: 1.5rem; color: var(--green); }

.mag-nav a:not(.logo) { font-size: 0.85rem; text-transform: uppercase; color: #666; letter-spacing: 1px; font-weight: 400; }
.mag-nav a:not(.logo):hover, .mag-nav a.active { color: var(--green); text-decoration: underline; }

.search-btn { background: none; border: none; font-size: 1.2rem; cursor: pointer; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; display: none; }
.mobile-menu.active { display: flex; }
.close-menu { position: absolute; top: 20px; right: 20px; font-size: 2rem; background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; color: var(--charcoal); }

@media (max-width: 900px) {
    .nav-left, .nav-right { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-mag { height: 80vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-caption { background: rgba(255, 255, 255, 0.9); padding: 60px; max-width: 700px; border: 1px solid var(--gold); }
.issue { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; display: block; }
.hero-caption h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; color: var(--charcoal); margin-bottom: 20px; }
.hero-caption p { font-size: 1.1rem; color: #555; margin-bottom: 40px; font-style: italic; }
.read-more { font-family: var(--font-head); font-weight: 700; border-bottom: 2px solid var(--green); padding-bottom: 5px; }

/* Section Elements */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--charcoal); margin-bottom: 10px; }
.separator { font-size: 2rem; color: var(--gold); margin-top: 10px; }
.separator.left { text-align: left; }
.text-center { text-align: center; }

/* Grid */
.magazine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.dest-card { position: relative; overflow: hidden; cursor: pointer; }
.dest-card.big { grid-column: span 2; height: 500px; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.dest-card:hover img { transform: scale(1.05); }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); padding: 30px; }
.card-overlay .category { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px; }
.card-overlay h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 10px; }
.card-overlay a { color: var(--white); font-size: 0.9rem; font-weight: 700; }

/* Quote Banner */
.quote-banner { background: var(--green); color: var(--white); padding: 80px 0; text-align: center; font-family: var(--font-head); margin-top: 50px; }
.quote-banner p { font-size: 2rem; max-width: 800px; margin: 0 auto 20px; line-height: 1.4; }
.quote-banner cite { font-style: normal; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; }

/* Story */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.overline { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: #888; }
.story-text h1 { font-family: var(--font-head); font-size: 3.5rem; color: var(--charcoal); }
.story-text blockquote { border-left: 3px solid var(--gold); padding-left: 20px; margin-top: 30px; font-family: var(--font-head); font-size: 1.2rem; color: var(--green); }
.story-images { position: relative; height: 500px; }
.img-1 { position: absolute; top: 0; left: 0; width: 70%; z-index: 1; border: 5px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.img-2 { position: absolute; bottom: 0; right: 0; width: 60%; z-index: 2; border: 5px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Journal */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.journal-entry { background: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.entry-content { padding: 30px; }
.date { font-size: 0.7rem; letter-spacing: 1px; color: #999; display: block; margin-bottom: 10px; }
.entry-content h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; color: var(--charcoal); }
.entry-content p { font-size: 0.95rem; color: #666; margin-bottom: 20px; font-style: italic; }
.entry-content cite { font-size: 0.8rem; font-weight: 700; color: var(--green); }

/* Booking */
.booking-wrapper { max-width: 700px; margin: 0 auto; background: var(--white); padding: 60px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.elegant-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.elegant-form label { display: block; font-size: 0.75rem; letter-spacing: 1px; color: #888; margin-bottom: 5px; }
.elegant-form input, .elegant-form select, .elegant-form textarea { width: 100%; border: none; border-bottom: 1px solid #ddd; padding: 10px 0; font-family: var(--font-body); font-size: 1rem; background: transparent; outline: none; }
.elegant-form input:focus { border-bottom-color: var(--green); }
.submit-btn { width: 100%; background: var(--charcoal); color: var(--white); padding: 15px; font-family: var(--font-head); letter-spacing: 2px; border: none; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background: var(--green); }
.contact-direct { margin-top: 40px; border-top: 1px solid #eee; padding-top: 20px; }
.contact-direct a { font-weight: 700; color: var(--green); font-size: 1.2rem; }

/* Legal */
.legal-paper { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid #eee; }
.legal-paper h1 { font-family: var(--font-head); color: var(--charcoal); }

/* Footer */
.mag-footer { background: var(--white); padding: 80px 0 30px; border-top: 1px solid #ddd; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 50px; }
.f-col h4 { font-family: var(--font-head); margin-bottom: 10px; }
.f-col.center { display: flex; gap: 20px; }
.f-col.center a { font-size: 0.9rem; text-transform: uppercase; color: var(--green); }
.f-col.right a { display: block; margin-bottom: 5px; color: #666; font-size: 0.9rem; text-align: right; }
.copyright { text-align: center; font-size: 0.8rem; color: #aaa; border-top: 1px solid #eee; padding-top: 30px; }

/* Cookie */
.cookie-mag { position: fixed; bottom: 30px; left: 30px; background: var(--charcoal); color: var(--white); padding: 20px 40px; z-index: 3000; display: none; }
.cookie-mag.active { display: flex; align-items: center; gap: 20px; }
.cookie-mag button { background: var(--white); color: var(--charcoal); border: none; padding: 5px 15px; cursor: pointer; font-family: var(--font-head); }

@media (max-width: 900px) {
    .magazine-grid, .story-layout, .journal-grid, .form-grid, .footer-content, .dest-card.big { grid-template-columns: 1fr; grid-column: span 1; }
    .hero-caption h1 { font-size: 3rem; }
    .footer-content { flex-direction: column; text-align: center; gap: 30px; }
    .f-col.center, .f-col.right a { justify-content: center; text-align: center; }
    .story-images { height: 300px; }
}