:root {
    --burgundy: #800020;
    --gold: #C5A059;
    --cream: #F5F5DC;
    --white: #ffffff;
    --text-dark: #2c2424;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.trail-header { padding: 25px 0; background: var(--white); border-bottom: 3px solid var(--burgundy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--burgundy); letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.gold { color: var(--gold); }
.ornament { font-size: 2rem; color: var(--gold); }

.classic-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.classic-nav a { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.classic-nav a:hover, .classic-nav a.active { color: var(--burgundy); border-bottom: 1px solid var(--burgundy); }

.btn-reservation { border: 1px solid var(--burgundy); padding: 10px 25px; color: var(--burgundy) !important; transition: 0.3s; }
.btn-reservation:hover { background: var(--burgundy); color: var(--white) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 3px; background: var(--burgundy); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.4s; border-left: 5px solid var(--burgundy); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; background: none; border: none; font-size: 1.5rem; color: var(--burgundy); cursor: pointer; margin-bottom: 20px; }
.menu-links a { font-family: var(--font-heading); font-size: 1.2rem; margin: 15px 0; color: var(--text-dark); border-bottom: 1px solid #eee; padding-bottom: 5px; display: block; }

/* Hero */
.hero-classic { height: 80vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: rgba(44, 36, 36, 0.4); display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: var(--white); max-width: 800px; padding: 40px; background: rgba(0,0,0,0.5); border: 1px solid var(--gold); }
.since { font-family: var(--font-heading); letter-spacing: 3px; font-size: 0.9rem; color: var(--gold); display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; font-family: var(--font-body); font-style: italic; }

.booking-bar { background: var(--white); padding: 20px; display: inline-block; border-radius: 4px; }
#bookForm { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; align-items: flex-end; }
.input-group { text-align: left; }
.input-group label { display: block; font-family: var(--font-heading); font-size: 0.8rem; color: var(--burgundy); margin-bottom: 5px; }
.input-group input { padding: 10px; border: 1px solid #ccc; font-family: var(--font-heading); width: 150px; }
.btn-check { padding: 12px 30px; background: var(--burgundy); color: var(--white); border: none; font-family: var(--font-heading); cursor: pointer; transition: 0.3s; }
.btn-check:hover { background: var(--gold); }

/* Rooms */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.5rem; color: var(--burgundy); }
.ornament-divider { color: var(--gold); font-size: 1.2rem; margin-top: 10px; letter-spacing: 5px; }

.room-list { display: flex; flex-direction: column; gap: 50px; }
.room-card { display: flex; background: var(--white); border: 1px solid #ddd; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.room-card.reverse { flex-direction: row-reverse; }
.room-img { flex: 1.2; }
.room-img img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.room-desc { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.room-desc h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--burgundy); margin-bottom: 15px; }
.price { font-family: var(--font-heading); font-weight: bold; color: var(--gold); font-size: 1.2rem; margin: 15px 0; }
.details-link { font-family: var(--font-heading); text-decoration: underline; font-size: 0.9rem; color: var(--text-dark); }

/* About & History */
.page-header { background: var(--burgundy); padding: 60px 0; text-align: center; color: var(--white); border-bottom: 5px solid var(--gold); }
.page-header h1 { font-family: var(--font-heading); font-size: 3rem; }

.history-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-side h2 { font-family: var(--font-heading); color: var(--burgundy); font-size: 2rem; }
.separator-line { width: 80px; height: 2px; background: var(--gold); margin: 20px 0; }
.amenities-list { list-style: none; margin-top: 30px; }
.amenities-list li { margin-bottom: 10px; font-family: var(--font-heading); font-size: 1.1rem; }
.img-side img { width: 100%; border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Contact Form */
.contact-card { display: flex; background: var(--white); border: 1px solid #ddd; max-width: 900px; margin: 0 auto; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.info-panel { flex: 1; background: var(--burgundy); color: var(--white); padding: 50px; }
.info-panel h2 { font-family: var(--font-heading); border-bottom: 1px solid var(--gold); padding-bottom: 10px; margin-bottom: 20px; }
.address-box { margin-top: 30px; font-style: italic; }
.address-box p { margin-bottom: 10px; }

.vintage-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 0.85rem; color: var(--text-dark); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; background: var(--cream); font-family: var(--font-body); }
.form-row { display: flex; gap: 20px; }
.btn-submit { width: 100%; padding: 12px; background: var(--burgundy); color: var(--white); border: none; font-family: var(--font-heading); cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--gold); }

/* Testimonials & Legal */
.guestbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.guestbook-entry { background: var(--white); padding: 30px; border: 1px solid var(--gold); text-align: center; }
.guestbook-entry p { font-style: italic; margin-bottom: 20px; color: #555; }
.author { font-family: var(--font-heading); color: var(--burgundy); font-weight: bold; }

.policy-paper { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border: 1px solid #ddd; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
.policy-paper h1 { text-align: center; color: var(--burgundy); font-family: var(--font-heading); }
.policy-paper .ornament-divider { text-align: center; margin-bottom: 40px; }
.policy-paper h3 { color: var(--text-dark); margin-top: 30px; border-bottom: 1px solid var(--gold); display: inline-block; padding-bottom: 5px; font-family: var(--font-heading); }

/* Footer */
.classic-footer { background: var(--text-dark); color: var(--cream); padding: 60px 0 20px; margin-top: 80px; border-top: 5px solid var(--gold); }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; border-bottom: 1px solid #444; }
.brand-area h4 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); margin-bottom: 5px; }
.footer-links a { color: #ccc; margin-left: 20px; font-family: var(--font-heading); }
.footer-links a:hover { color: var(--white); }
.copyright { text-align: center; margin-top: 20px; font-size: 0.8rem; color: #777; }

/* Cookie Banner */
.cookie-modal { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--white); border: 2px solid var(--burgundy); padding: 20px 40px; z-index: 9999; display: none; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.cookie-modal.active { display: block; animation: fadeUp 0.6s; }
.cookie-modal p { margin-bottom: 15px; font-family: var(--font-heading); }
.btn-accept { background: var(--burgundy); color: var(--white); border: none; padding: 8px 25px; cursor: pointer; font-family: var(--font-heading); }

@keyframes fadeUp { from { opacity: 0; transform: translate(-50%, 50px); } to { opacity: 1; transform: translate(-50%, 0); } }

@media (max-width: 900px) {
    .classic-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .room-card, .room-card.reverse, .history-content, .contact-card, .guestbook-grid, .form-row { flex-direction: column; grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}