/* ==========================================================================
   WWD MASTER STYLESHEET (Framework-Free & Mobile-Optimized)
   ========================================================================== */

/* Core Styling Baseline Setup */
:root {
    --primary-color: #a98446;
    --dark-color: #222222;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: #444; line-height: 1.6; background-color: var(--white); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dark-color); margin-bottom: 15px; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.max-width-md { max-width: 800px; margin: 0 auto; }
.section { padding: 80px 0; }
.subtitle { text-transform: uppercase; font-size: 14px; font-weight: 700; color: var(--primary-color); letter-spacing: 2px; margin-bottom: 15px; }
.text-dark { color: var(--dark-color) !important; }
.text-muted { color: #888; }
.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }
.g-margin-b-40 { margin-bottom: 40px; }

/* Global Header & Navigation Menu Layout */
.site-header { background: var(--white); border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 10px 20px; }
.logo img { height: 50px; width: auto; display: block; }
.menu-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--dark-color); cursor: pointer; }
.nav-menu { display: flex; gap: 20px; align-items: center; }
.nav-link { text-decoration: none; color: #666; font-family: var(--font-heading); font-size: 14px; font-weight: 700; transition: color 0.3s; padding: 5px 0; }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }

/* Full-Scale Hero Banner Layouts */
.hero-section { min-height: 75vh; width: 100%; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.hero-content h1 { font-size: 3.5rem; color: var(--white); text-shadow: 0 4px 15px rgba(0,0,0,0.6); margin-bottom: 10px; }
.hero-content p { font-size: 1.75rem; color: var(--white); margin-bottom: 30px; font-family: var(--font-heading); text-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.inner-hero { min-height: 35vh !important; }
.scroll-btn { display: inline-block; padding: 12px 35px; background: var(--primary-color); color: var(--white); text-decoration: none; border-radius: 25px; font-weight: 700; transition: background 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.scroll-btn:hover { background: #8e6c35; }

/* Grid Features Component (Homepage) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.feature-card { text-align: center; padding: 20px; }
.feature-icon { font-size: 32px; color: var(--primary-color); margin-bottom: 15px; }
.lead-text { font-size: 1.25rem; line-height: 1.7; color: #555; }

/* Video Player Adaptability Showcase Wrapper */
.video-section { background: var(--light-bg); padding: 60px 0; }
.video-wrapper { max-width: 900px; margin: 30px auto 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 8px; overflow: hidden; background: #000; }
.video-wrapper video { width: 100%; display: block; }
.section-title { font-size: 2.25rem; text-align: center; color: var(--primary-color); margin-bottom: 30px; }

/* Photo Gallery Popup Modals & Lightbox Rules */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 6px; overflow: hidden; height: 220px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item span { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); padding: 15px 10px 10px 10px; font-size: 14px; font-weight: 700; font-family: var(--font-heading); }
.gallery-lightbox { border: none; border-radius: 8px; max-width: 90vw; max-height: 90vh; margin: auto; padding: 10px; background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.gallery-lightbox::backdrop { background: rgba(0, 0, 0, 0.85); }
.lightbox-content { display: flex; flex-direction: column; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 10px; right: 15px; background: rgba(0,0,0,0.7); color: #fff; border: none; font-size: 24px; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; }
.lightbox-close:hover { background: #000; }
.lightbox-caption { text-align: center; margin-top: 10px; font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--dark-color); }

/* Responsive Calendar Layout System Wrapper */
.calendar-section { background-color: var(--light-bg); }
.calendar-wrapper { background: var(--white); padding: 25px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); margin-top: 30px; overflow-x: auto; }

/* Modern Responsive Native Pricing Tables Grid */
.table-responsive-wrapper { width: 100%; overflow-x: auto; margin: 30px 0; border: 1px solid #eee; border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
.modern-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 15px; background: var(--white); min-width: 600px; }
.modern-table th { background-color: var(--dark-color); color: var(--white); font-weight: 700; padding: 15px 20px; text-transform: uppercase; font-size: 13px; letter-spacing: 0.5px; font-family: var(--font-heading); }
.modern-table td { padding: 15px 20px; border-bottom: 1px solid #eee; color: #444; font-weight: 700; }
.modern-table tr:last-child td { border-bottom: none; }
.modern-table tr:nth-child(even) { background-color: var(--light-bg); }

/* Horizontal Payment Badges & Zelle QR Box */
.payment-badges-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 25px; margin: 35px 0; width: 100%; }
.payment-badges-row img { max-height: 45px; width: auto; display: block; object-fit: contain; }
.qr-code-box { display: inline-block; padding: 12px; border: 1px solid #e2e8f0; border-radius: 12px; background: var(--white); text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.qr-code-box img { max-width: 130px; height: auto; display: block; margin: 0 auto; }
.qr-code-box p { font-size: 11px; margin-top: 6px; color: #718096; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Rates & Notes Presentation Layout Cards */
.notes-card { background: var(--light-bg); padding: 30px; border-left: 4px solid var(--primary-color); border-radius: 0 8px 8px 0; margin-top: 35px; }
.notes-card h3 { font-size: 18px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.notes-card li { margin-bottom: 10px; font-size: 15px; color: #444; list-style-type: none; }

/* Dynamic Reviews Feed Spacing Layouts */
.reviews-vertical-list { display: flex; flex-direction: column; margin-top: 20px; }
.review-list-item { padding: 35px 0; border-bottom: 1px solid #e5e5e5; }
.review-list-item:last-child { border-bottom: none; }
.review-list-item p { font-size: 16px; color: #333; line-height: 1.8; margin-bottom: 14px; }
.review-meta { display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 700; font-style: italic; color: var(--primary-color); padding-left: 20px; border-left: 2px solid var(--primary-color); margin-left: 5px; }

/* Legal Content Documentation Blocks Layout */
.legal-block { margin-bottom: 30px; background: var(--white); padding-bottom: 20px; border-bottom: 1px solid #eee; }
.legal-block:last-child { border-bottom: none; }
.legal-block h3 { font-size: 1.15rem; color: var(--dark-color); margin-bottom: 10px; font-weight: 700; }
.legal-block p { font-size: 15px; color: #444; margin-bottom: 12px; }
.highlight-box { background-color: #fff9eb; border-left: 4px solid var(--primary-color); padding: 20px; margin-bottom: 35px; border-radius: 0 4px 4px 0; }
.highlight-box p { margin-bottom: 0; font-weight: 700; color: #785b27; }

/* Fully Interactive Touch Booking Form Layouts */
.form-container-box { background: var(--white); border: 1px solid #eee; border-radius: 8px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-top: 20px; }
.modern-form { display: flex; flex-direction: column; gap: 20px; }
.form-row.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--dark-color); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { padding: 12px 15px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-body); font-size: 15px; color: #333; background-color: var(--white); width: 100%; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-color); outline: none; }

/* Global Site Footer Components Layout */
.site-footer { background: #111; color: #888; padding: 40px 0; font-size: 14px; text-align: center; margin-top: 40px; }
.footer-grid { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #ccc; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-color); }

/* Global Screen Resizing Media Adaptation Queries */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-menu { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--white); padding: 20px; border-bottom: 1px solid #eee; box-shadow: 0 10px 10px rgba(0,0,0,0.05); gap: 15px; }
    .nav-menu.open { display: flex; }
    .hero-section { min-height: 50vh; }
    .hero-content h1 { font-size: 2.25rem; }
    .inner-hero h1 { font-size: 2.25rem !important; }
    .section { padding: 40px 0; }
    .form-row.split-row { grid-template-columns: 1fr; gap: 20px; }
    .form-container-box { padding: 25px 15px; }
    .payment-badges-row { gap: 15px; margin: 20px 0; }
    .payment-badges-row img { max-height: 35px; }
    .qr-code-box img { max-width: 110px; }
}

