/* ================================
   BRYCE CANYON HOMESTEAD
   Modern & Minimalist Theme
   + SEO Optimization Styles
================================ */

/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #fafafa;
    --white: #ffffff;
    --border-color: #ecf0f1;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 { font-weight: 300; line-height: 1.3; margin-bottom: 1rem; }
h1 { font-size: 3rem; letter-spacing: 2px; }
h2 { font-size: 2.5rem; letter-spacing: 1px; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--primary-color); text-decoration: none; transition: all 0.3s ease; }

/* ========== HEADER & NAVIGATION ========== */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}
nav { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
}
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 400;
    transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ========== HERO SECTION ========== */
.hero {
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-house.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-small {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../images/hero-bryce.jpg') center/cover no-repeat;
    height: auto;
    min-height: 0;
    padding: 4rem 1rem 2rem;
    display: block;
    text-align: center;
}
.hero-small .hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--white);
}
.hero-small .hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.hero-small .hero-content p {
    color: rgba(255,255,255,0.92);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}
.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}
.rating-badge .star { color: #f39c12; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
    font-weight: 500;
}
.btn:hover { background: transparent; color: var(--white); }
.btn-primary { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.btn-primary:hover { background: transparent; color: var(--primary-color); }
.btn-secondary { background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-secondary:hover { background: var(--primary-color); color: var(--white); }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ========== SECTIONS ========== */
section { padding: 5rem 0; }
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.feature-icon { font-size: 3rem; margin-bottom: 1.5rem; color: var(--primary-color); }
.feature-card h3 { font-size: 1.25rem; font-weight: 400; margin-bottom: 1rem; color: var(--primary-color); }
.feature-card p { font-size: 0.95rem; line-height: 1.7; }

/* ========== LARGE PHOTO GRID ========== */
.large-photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 0 1rem;
}
.large-photo-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.large-photo-main img:hover { transform: scale(1.02); }
.large-photo-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.large-photo-side img {
    width: 100%;
    height: 232px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.large-photo-side img:hover { transform: scale(1.02); }

/* ========== PROPERTY SUMMARY GRID ========== */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.summary-block {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 4px;
}
.summary-block h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}
.summary-list {
    list-style: none;
    padding: 0;
}
.summary-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border-bottom: 1px solid var(--border-color);
}
.summary-list li:last-child { border-bottom: none; }
.summary-list li i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 16px;
}
.summary-list strong { color: var(--primary-color); }

/* ========== WHY STAY HERE ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-card .feature-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.why-card h3 { font-size: 1.2rem; font-weight: 500; color: var(--primary-color); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.95rem; line-height: 1.8; }

/* ========== PHOTO GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90%; max-height: 90%; }
.lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}

/* ========== ATTRACTIONS GRID ========== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.attraction-card { background: var(--bg-light); overflow: hidden; border-radius: 4px; }
.attraction-card img { width: 100%; height: 180px; object-fit: cover; }
.attraction-card h3 { font-size: 1.1rem; font-weight: 500; color: var(--primary-color); margin: 1rem 1.25rem 0.5rem; }
.attraction-card p { font-size: 0.9rem; color: var(--text-light); margin: 0 1.25rem 1.25rem; }

/* ========== REVIEWS ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.review-card { background: var(--white); padding: 2rem; box-shadow: var(--shadow); }
.review-stars { color: #f39c12; font-size: 1.125rem; margin-bottom: 1rem; }
.review-text { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; color: var(--text-light); }
.review-author { font-weight: 500; color: var(--primary-color); font-size: 0.95rem; }
.review-date { font-size: 0.875rem; color: var(--text-light); }

/* ========== LOCAL SEO CONTENT ========== */
.local-seo-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 820px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}
.local-seo-content strong { color: var(--primary-color); }
.nearby-attractions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.attraction-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 4px;
}
.attraction-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.attraction-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.attraction-item span { font-size: 0.875rem; color: var(--text-light); }

/* ========== FAQ SECTION ========== */
.faq-grid {
    max-width: 860px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item[open] { box-shadow: var(--shadow-hover); }
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.975rem;
    line-height: 1.85;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    padding-top: 1rem;
}
.faq-item strong { color: var(--primary-color); }

/* ========== BOOKING SECTION ========== */
.booking-container {
    background: var(--bg-light);
    padding: 3rem;
    margin-top: 2rem;
    text-align: center;
    border-radius: 4px;
}
.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.booking-card {
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.booking-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.booking-card h3 { font-size: 1.25rem; font-weight: 500; color: var(--primary-color); margin-bottom: 0.5rem; }
.booking-card ul { list-style: none; padding: 0; margin: 1rem 0 1.5rem; text-align: left; }
.booking-card ul li { padding: 0.3rem 0; font-size: 0.9rem; color: var(--text-light); }

/* ========== MAP SECTION ========== */
.map-container { margin-top: 3rem; height: 500px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ========== FOOTER ========== */
footer { background: var(--primary-color); color: var(--white); padding: 3rem 0 1.5rem; }
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3 { font-size: 1.125rem; font-weight: 500; margin-bottom: 1rem; color: var(--white); }
.footer-section p, .footer-section a { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.8; }
.footer-section a:hover { color: var(--white); }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { font-size: 1.5rem; color: rgba(255,255,255,0.8); transition: color 0.3s ease; }
.social-links a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* ========== CONTACT FORM ========== */
.contact-form { max-width: 600px; margin: 3rem auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--primary-color); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.form-group textarea { min-height: 150px; resize: vertical; }

/* ========== UTILITY ========== */
.bg-light { background: var(--bg-light); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow);
    }
    .nav-links.active { display: flex; }
    .nav-links li { border-bottom: 1px solid var(--border-color); }
    .nav-links a { display: block; padding: 1rem 1.5rem; }
    .mobile-menu-toggle { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .hero-small .hero-content h1 { font-size: 2rem; }
    h2 { font-size: 2rem; }
    .section-title { font-size: 1.85rem; }
    .large-photo-grid { grid-template-columns: 1fr; }
    .large-photo-main img { height: 280px; }
    .large-photo-side { grid-template-columns: 1fr 1fr; }
    .large-photo-side img { height: 150px; }
    .summary-grid, .why-grid, .attractions-grid, .reviews-grid, .nearby-attractions { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .hero-small .hero-content h1 { font-size: 1.75rem; letter-spacing: 1px; }
    .btn { padding: 0.875rem 1.5rem; font-size: 0.75rem; }
    section { padding: 3rem 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .large-photo-side { grid-template-columns: 1fr; }
}
