/* ============================================
   TIMBER SKY RETREAT — WEBSITE STYLES
   ============================================ */

:root {
    --color-cream: #F5F0E8;
    --color-charcoal: #2C2C2C;
    --color-pine: #2D5016;
    --color-gold: #B8860B;
    --color-copper: #A0522D;
    --color-dark: #1A1A1A;
    --color-warm-bg: #FAF7F2;
    --color-accent-bg: #EDE8DF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-charcoal); background: var(--color-warm-bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-copper); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all 0.4s ease; }
#navbar.scrolled { background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; font-weight: 600; letter-spacing: 1px; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--color-gold); }
.nav-cta { background: var(--color-gold) !important; color: var(--color-dark) !important; padding: 10px 24px !important; border-radius: 4px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--color-copper) !important; color: #fff !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: all 0.3s; }

/* Buttons */
.btn { display: inline-block; padding: 16px 40px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: none; border-radius: 4px; cursor: pointer; transition: all 0.3s ease; }
.btn-primary { background: var(--color-gold); color: #fff; }
.btn-primary:hover { background: var(--color-copper); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4); }
.btn-secondary { background: transparent; color: var(--color-copper); border: 2px solid var(--color-copper); }
.btn-secondary:hover { background: var(--color-copper); color: #fff; }
.btn-large { padding: 20px 56px; font-size: 1.05rem; }

/* Hero */
#hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%); }
.hero-content { position: relative; text-align: center; color: #fff; padding: 0 24px; }
.hero-logo { height: 150px; width: 150px; margin: 0 auto 20px; border-radius: 50%; object-fit: cover; }
@media (max-width: 768px) { .hero-logo { height: 110px; width: 110px; } }
.hero-subtitle { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; opacity: 0.8; }
.hero-content h1 { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; line-height: 1.1; }
.hero-tagline { font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-style: italic; font-weight: 400; opacity: 0.9; margin-bottom: 32px; }
.hero-details { display: flex; justify-content: center; gap: 32px; margin-bottom: 40px; font-size: 0.95rem; opacity: 0.85; flex-wrap: wrap; }
.hero-details i { margin-right: 8px; color: var(--color-gold); }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--color-dark); color: #fff; }
.section-accent { background: var(--color-accent-bg); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; color: var(--color-gold); margin-bottom: 12px; font-weight: 600; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.2; }
.section-dark .section-header h2 { color: #fff; }
.section-subtitle { color: var(--color-gold); font-size: 1.1rem; margin-top: 8px; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--color-charcoal); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p { margin-bottom: 20px; color: var(--color-charcoal); font-size: 1.15rem; line-height: 1.8; }
.about-text .lead { font-weight: 400; }
.about-feature-card { margin-bottom: 16px; border-radius: 12px; overflow: hidden; background: var(--color-dark); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.about-feature-card img { width: 100%; display: block; }
.about-feature-text { padding: 24px 28px; color: #fff; }
.about-feature-text h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; color: #fff; }
.about-feature-text p { font-size: 0.95rem; opacity: 0.85; margin: 0; color: #fff; line-height: 1.6; }
.about-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-row img { width: 100%; border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { overflow: hidden; border-radius: 8px; cursor: pointer; position: relative; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; }
.gallery-item:hover::after { background: rgba(0,0,0,0.2); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-wide { grid-column: span 2; }
.gallery-wide img { aspect-ratio: 16/9; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; padding: 16px; opacity: 0.7; transition: opacity 0.3s; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* Amenities */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.amenity-card { text-align: center; padding: 32px 20px; border-radius: 8px; background: #fff; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.amenity-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.amenity-card i { font-size: 2rem; color: var(--color-gold); margin-bottom: 16px; }
.amenity-card h3 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 8px; }
.amenity-card p { font-size: 0.9rem; color: #777; line-height: 1.5; }

/* Rooms */
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.room-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: transform 0.3s; }
.room-card:hover { transform: translateY(-4px); }
.room-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.room-info { padding: 24px; }
.room-info h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 8px; }
.room-info p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* Location */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-text .lead { margin-bottom: 40px; }
.distance-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.distance-icon { width: 48px; height: 48px; background: var(--color-gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.distance-item h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 2px; }
.distance-item p { color: #777; font-size: 0.9rem; margin: 0; }
.location-highlight { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.location-highlight img { width: 100%; min-height: 500px; object-fit: cover; }
.location-highlight-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; }
.location-highlight-text h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }
.location-highlight-text p { font-size: 0.95rem; opacity: 0.9; }

/* Experiences */
.experiences-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 64px; }
.experience-card { text-align: center; padding: 40px 24px; }
.experience-icon { width: 72px; height: 72px; margin: 0 auto 24px; background: var(--color-accent-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--color-copper); }
.experience-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 12px; }
.experience-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.review-card { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 36px; transition: transform 0.3s ease; }
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--color-gold); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 16px; }
.review-text { font-style: italic; color: rgba(255, 255, 255, 0.85); line-height: 1.8; font-size: 0.95rem; margin-bottom: 20px; }
.review-author { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 16px; }
.review-name { font-family: var(--font-heading); font-weight: 600; color: #fff; font-size: 1rem; }
.review-source { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* Book */
.section-book { position: relative; overflow: hidden; }
.book-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.book-overlay { position: absolute; inset: 0; background: rgba(26, 26, 26, 0.85); }
.book-content { position: relative; color: #fff; }
.book-content .section-header h2 { color: #fff; }
.book-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
.book-benefit { text-align: center; }
.book-benefit i { font-size: 2.5rem; color: var(--color-gold); margin-bottom: 20px; }
.book-benefit h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 12px; }
.book-benefit p { opacity: 0.8; font-size: 0.95rem; }
.book-cta-area { text-align: center; max-width: 500px; margin: 0 auto; }
.book-also { margin-top: 16px; font-size: 0.85rem; opacity: 0.6; }
.book-also a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* Footer */
footer { background: var(--color-dark); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
footer h4 { color: var(--color-gold); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--color-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; opacity: 0.5; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .experiences-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26, 26, 26, 0.98); flex-direction: column; padding: 24px; gap: 16px; }
    .nav-links.active { display: flex; }
    .nav-toggle { display: block; }
    .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-wide { grid-column: span 2; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .rooms-grid { grid-template-columns: 1fr; }
    .book-benefits { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-details { flex-direction: column; gap: 12px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .book-bg { background-attachment: scroll; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-wide { grid-column: span 1; }
    .gallery-wide img { aspect-ratio: 4/3; }
    .amenities-grid { grid-template-columns: 1fr; }
    .experiences-grid { grid-template-columns: 1fr; }
}
