:root {
    --pine-green: #2F4F4F;
    --wood-brown: #5D4037;
    --snow-white: #FFFAFA;
    --gold: #C5A059;
    --text-grey: #444;
    
    --serif: 'Libre Baskerville', serif;
    --sans: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--snow-white);
    color: var(--text-grey);
    font-family: var(--sans);
    line-height: 1.7;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navigation */
.alpine-nav { padding: 20px 0; position: fixed; top: 0; width: 100%; background: rgba(255, 250, 250, 0.95); z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 2px; color: var(--pine-green); font-weight: 700; display: flex; align-items: center; gap: 10px; }
.gold { color: var(--gold); }
.mountain-icon { font-size: 1.8rem; }

.menu-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.menu-links a { text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; color: var(--text-grey); font-weight: bold; }
.menu-links a:hover, .menu-links a.active { color: var(--gold); }

.btn-reserve { border: 1px solid var(--gold); padding: 10px 25px; color: var(--gold) !important; border-radius: 2px; }
.btn-reserve:hover { background: var(--gold); color: var(--snow-white) !important; }

/* Mobile Menu */
.mobile-burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.mobile-burger span { width: 30px; height: 2px; background: var(--pine-green); }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--pine-green); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.mobile-overlay.open { transform: translateY(0); }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; color: var(--gold); font-size: 2rem; cursor: pointer; }
.mobile-overlay a { font-family: var(--serif); font-size: 2.5rem; color: var(--snow-white); margin: 15px 0; }

/* Hero */
.hero-mountains { height: 85vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: var(--snow-white); z-index: 10; max-width: 800px; padding: 20px; }
.script-subtitle { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold); display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--serif); font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 40px; }

.booking-widget { background: rgba(47, 79, 79, 0.9); padding: 20px; border-radius: 4px; display: inline-block; }
#resortForm { display: flex; gap: 20px; align-items: flex-end; flex-wrap: wrap; justify-content: center; }
.input-wrap { text-align: left; }
.input-wrap label { display: block; font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.input-wrap input, .input-wrap select { background: transparent; border: none; border-bottom: 1px solid var(--snow-white); color: var(--snow-white); padding: 5px 0; width: 150px; font-family: var(--sans); }
.btn-search { background: var(--gold); color: var(--snow-white); border: none; padding: 12px 30px; cursor: pointer; font-family: var(--serif); letter-spacing: 1px; transition: 0.3s; }
.btn-search:hover { background: var(--snow-white); color: var(--pine-green); }

/* Features */
.intro-text { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.intro-text h2 { font-family: var(--serif); font-size: 2.5rem; color: var(--pine-green); margin-bottom: 10px; }
.deer-icon { font-size: 2rem; color: var(--wood-brown); margin: 10px 0; }

.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card { text-align: center; }
.img-zoom { overflow: hidden; margin-bottom: 20px; border-radius: 2px; }
.img-zoom img { width: 100%; display: block; transition: 0.5s; }
.card:hover img { transform: scale(1.05); }
.card h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 10px; color: var(--pine-green); }
.link-gold { font-size: 0.8rem; text-transform: uppercase; color: var(--gold); letter-spacing: 1px; font-weight: bold; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* About & Contact */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-side h1 { font-family: var(--serif); font-size: 3rem; color: var(--pine-green); line-height: 1.1; }
.wood-line { width: 60px; height: 3px; background: var(--wood-brown); margin: 20px 0; }
.wood-line.center { margin: 20px auto; }
.spa-list { list-style: none; margin-top: 30px; font-family: var(--serif); font-style: italic; color: var(--wood-brown); }
.spa-list li { margin-bottom: 10px; }
.image-side img { width: 100%; border-radius: 2px; box-shadow: 20px 20px 0 var(--pine-green); }

.booking-container { max-width: 700px; margin: 0 auto; background: var(--snow-white); border: 1px solid #eee; padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.booking-header { text-align: center; margin-bottom: 40px; }
.booking-header h2 { font-family: var(--serif); font-size: 2.5rem; color: var(--pine-green); }
.contact-data { margin-top: 20px; color: var(--gold); font-weight: bold; }

.elegant-form .form-row { display: flex; gap: 30px; margin-bottom: 20px; }
.col { flex: 1; }
.full { width: 100%; }
.elegant-form label { display: block; font-size: 0.8rem; margin-bottom: 5px; color: var(--text-grey); }
.elegant-form input, .elegant-form select, .elegant-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: #fafafa; font-family: var(--sans); }
.elegant-form input:focus { border-color: var(--gold); outline: none; }
.btn-submit { width: 100%; background: var(--pine-green); color: var(--snow-white); border: none; padding: 15px; font-family: var(--serif); letter-spacing: 1px; cursor: pointer; margin-top: 20px; }
.btn-submit:hover { background: var(--gold); }

/* Reviews & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-item { padding: 30px; background: #f9f9f9; text-align: center; border-radius: 2px; }
.review-item.dark-bg { background: var(--pine-green); color: var(--snow-white); }
.review-item.dark-bg .stars { color: var(--gold); }
.stars { color: var(--wood-brown); margin-bottom: 15px; font-size: 1.2rem; }
.review-item p { font-style: italic; font-family: var(--serif); margin-bottom: 20px; }
.author { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: bold; }

.legal-text { max-width: 800px; margin: 0 auto; text-align: center; }
.legal-text h1 { font-family: var(--serif); font-size: 3rem; color: var(--pine-green); }
.legal-text h3 { margin-top: 40px; font-family: var(--serif); color: var(--wood-brown); }
.legal-text p { text-align: left; }

/* Footer */
.alpine-footer { background: var(--pine-green); color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-layout { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { font-family: var(--serif); color: var(--snow-white); margin-bottom: 5px; }
.footer-icon { font-size: 3rem; opacity: 0.5; }
.f-col.right a { color: #ccc; margin-left: 20px; font-size: 0.9rem; }
.f-col.right a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--wood-brown); color: var(--snow-white); padding: 15px; text-align: center; z-index: 9999; display: none; }
.cookie-bar.active { display: block; animation: slideUp 0.5s; }
.cookie-bar button { margin-left: 20px; background: var(--gold); color: var(--snow-white); border: none; padding: 5px 15px; cursor: pointer; border-radius: 2px; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .menu-links { display: none; }
    .mobile-burger { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .showcase-grid, .about-layout, .review-grid, .footer-layout, .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .footer-layout { text-align: center; gap: 20px; }
    #resortForm { flex-direction: column; width: 100%; }
    .input-wrap, .input-wrap input, .btn-search { width: 100%; }
}