/* Prescott Corral Homepage Custom Styles */

:root {
    --primary-color: #edc197;
    --secondary-color: #edc197;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #5A4A42;
    --bg-light: #F5F1ED;
    --bg-white: #FFFFFF;
    --border-color: #D4C4B0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.prescott-new-homepage {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

.prescott-new-homepage .site-main {
    padding: 0;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #6B3410;
    border-color: #6B3410;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.4) 0%, rgba(139, 69, 19, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.upcoming-event-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.event-banner {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-left: 6px solid var(--primary-color);
}

.event-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.event-banner h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-date {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.event-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.event-location svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.event-note {
    background-color: #FFF8DC;
    border-left: 4px solid var(--accent-color);
    padding: 16px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 15px;
}

.event-banner .btn {
    margin-top: 10px;
}

.featured-content-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

.content-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.content-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.content-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.callout-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.callout-box {
    text-align: center;
}

.callout-box h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: white;
}

.callout-date {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
    font-weight: 600;
}

.callout-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.callout-meta {
    background: rgba(255, 255, 255, 0.15);
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
}

.callout-deadline {
    font-weight: 600;
    font-size: 16px;
}

.callout-box .btn {
    background-color: white;
    color: var(--primary-color);
    margin-top: 12px;
}

.callout-box .btn:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.quick-links-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.link-icon {
    font-size: 36px;
}

.link-text {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.about-preview-section {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.membership-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.cta-box {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--border-color);
}

.cta-box h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .event-banner {
        padding: 24px;
    }
    
    .event-banner h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .callout-box h2 {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-content-section,
    .callout-section,
    .quick-links-section,
    .about-preview-section,
    .membership-cta-section {
        padding: 50px 0;
    }
    
    .upcoming-event-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}