/* ==========================================================================
   Greene County Tourism Proposal - RT7 Media
   ========================================================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;        /* Greene County green */
    --secondary-color: #8b4513;      /* Rustic brown */
    --accent-color: #d4a574;         /* Virginia beige/gold */
    --text-dark: #2d2d2d;
    --text-light: #666;
    --bg-gray: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 25px rgba(0,0,0,0.15);
}

/* Password Protection Overlay */
#password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.password-modal {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}

.password-modal h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.password-modal p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

#password-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

#password-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

#password-submit {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

#password-submit:hover {
    background: #234a24;
}

#password-error {
    color: #c0392b;
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rt7-logo, .client-logo {
    max-height: 60px;
    width: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    color: var(--white);
    padding: 5rem 0 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Image Grid Background */
.hero-image-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0;
    z-index: 0;
}

.hero-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Green Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 45, 0.9);
    z-index: 1;
}

/* Bottom wave decoration */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0 C150,100 350,0 600,50 C850,100 1050,0 1200,50 L1200,120 L0,120 Z" fill="%23ffffff"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title .site-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-title .redesign-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 4rem;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

.content-section {
    padding: 4rem 0;
}

.gray-bg {
    background: var(--bg-gray);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Key Deliverables
   ========================================================================== */

.key-deliverables {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.key-deliverables h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ==========================================================================
   Goals Grid
   ========================================================================== */

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.goal-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.goal-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   RFP Requirements
   ========================================================================== */

.rfp-section {
    margin-bottom: 3rem;
}

.rfp-section h3 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.rfp-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.rfp-item {
    background: linear-gradient(145deg, var(--white) 0%, #f8faf8 100%);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.08);
    border: 1px solid rgba(44, 95, 45, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rfp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.rfp-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 95, 45, 0.15);
}

.rfp-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rfp-item h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.rfp-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-card {
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.price-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-top: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.itemized-breakdown {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 2px solid var(--border-color);
}

.itemized-breakdown h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
}

.cost-table tr {
    border-bottom: 1px solid var(--border-color);
}

.cost-table tr:last-child {
    border-bottom: none;
}

.cost-table td {
    padding: 0.75rem 0;
}

.cost-table .cost-amount {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

.cost-table .total-row {
    border-top: 2px solid var(--primary-color);
    background: var(--bg-gray);
}

.cost-table .total-row td {
    padding: 1rem 0.5rem;
}

.cost-table .total-row .cost-amount {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hosting-info,
.future-services {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.hosting-info h4,
.future-services h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hosting-info ul {
    list-style: none;
    padding-left: 0;
}

.hosting-info li {
    padding: 0.5rem 0;
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.timeline-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-phase {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2.5rem;
}

.timeline-phase::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.phase-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
}

.phase-duration {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-phase ul {
    list-style: none;
    padding-left: 0;
}

.timeline-phase li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-phase li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* ==========================================================================
   Experience Highlights
   ========================================================================== */

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.experience-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Portfolio
   ========================================================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

a.portfolio-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

a.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border: none;
}

.portfolio-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portfolio-item .portfolio-url {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.portfolio-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
}

.portfolio-cta a {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ==========================================================================
   References
   ========================================================================== */

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reference-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.reference-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ref-company {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.ref-project {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.ref-email {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.ref-link {
    margin-top: 0.75rem;
}

.ref-link a {
    font-weight: 600;
    font-size: 0.9rem;
}

.references-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin-top: 2rem;
}

/* ==========================================================================
   Why Choose
   ========================================================================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.why-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   Team
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-photo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: var(--white);
    text-align: center;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 2rem 0;
}

.contact-info {
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    font-weight: 600;
}

.proposal-date {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 3rem;
}

.supplier-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.supplier-info p {
    margin: 0;
    color: var(--text-light);
}

.print-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.print-button:hover {
    background: #234a24;
    transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.site-footer p {
    margin: 0;
    opacity: 0.8;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }

    .content-section {
        padding: 3rem 0;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rt7-logo, .client-logo {
        max-height: 50px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-phase {
        padding-left: 45px;
    }
    
    .timeline-phase::before {
        left: 0;
    }
    
    .goals-grid,
    .portfolio-grid,
    .references-grid,
    .why-grid,
    .team-grid,
    .experience-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Barn Quilt Trail Map Section
   ========================================================================== */

.bonus-feature {
    border-top: 4px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.bonus-feature::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('barnquilt.jpeg') center center / cover no-repeat;
    filter: blur(6px);
    z-index: 0;
}

.bonus-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 45, 0.5);
    z-index: 1;
}

.bonus-feature .container {
    position: relative;
    z-index: 2;
}

.bonus-feature h2 {
    color: var(--white);
}

.bonus-feature h4 {
    color: var(--white);
}

.bonus-feature p,
.bonus-feature li {
    color: rgba(255, 255, 255, 0.95);
}

.bonus-feature strong {
    color: var(--white);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #a65c1a);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.barn-quilt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.barn-quilt-description {
    padding-right: 1rem;
}

.feature-intro {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.feature-note {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 1.5rem;
}

.bonus-feature .feature-note,
.bonus-feature .feature-note strong {
    color: var(--text-dark);
}

.bonus-feature .included-note {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.barn-quilt-map-container {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-hover);
    border: 2px solid var(--primary-color);
}

.map-demo-label {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
    margin: -1rem -1rem 1rem -1rem;
    border-radius: 10px 10px 0 0;
}

.barn-quilt-map {
    height: 420px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.map-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Custom Map Markers */
.quilt-marker {
    background: none;
    border: none;
}

.quilt-pin {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--secondary-color), #a65c1a);
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.quilt-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
}

/* Map Popup Styles */
.quilt-popup {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.popup-quilt-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    display: block;
}

.leaflet-popup-content {
    margin: 12px;
    max-width: 180px;
}

.quilt-popup strong {
    font-size: 1.05rem;
    color: var(--primary-color);
}

.popup-address {
    font-size: 0.9rem;
    color: var(--text-light);
}

.popup-artist {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.popup-directions {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.popup-directions:hover {
    color: var(--primary-color);
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.leaflet-popup-content {
    margin: 12px 15px;
}

/* Responsive for Barn Quilt Section */
@media (max-width: 900px) {
    .barn-quilt-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .barn-quilt-description {
        padding-right: 0;
    }

    .barn-quilt-map {
        height: 350px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .site-header,
    .site-footer {
        border: none;
        box-shadow: none;
    }
    
    .hero {
        background: var(--primary-color);
        color: var(--white);
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
    }
}
