/* ATV Venture Title, LLC - Main Stylesheet */

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

:root {
    --primary-burgundy: #6b1a1a;
    --dark-burgundy: #4a0e0e;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #ddd;
    --background-light: #f9f9f9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: normal;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-burgundy);
}

h2 {
    font-size: 2rem;
    color: var(--primary-burgundy);
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

h2::before,
h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 300px);
    max-width: 25%;
    height: 1px;
    background: var(--border-color);
}

h2::before {
    left: 0;
}

h2::after {
    right: 0;
}

@media (max-width: 1200px) {
    h2::before,
    h2::after {
        width: calc(50% - 250px);
        max-width: 20%;
    }
}

@media (max-width: 900px) {
    h2::before,
    h2::after {
        display: none !important;
    }
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

a:hover {
    color: var(--dark-burgundy);
}

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

/* Header */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
}

/* Navigation */
nav {
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

nav a {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
    border-bottom-color: var(--primary-burgundy);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: var(--background-light);
    margin-bottom: 3rem;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    max-width: 600px;
    border-radius: 4px;
}

.hero h1 {
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-burgundy);
    color: #fff;
    border-radius: 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: var(--dark-burgundy);
    color: #fff;
}

/* Main Content Sections */
section {
    padding: 3rem 0;
}

.section-title {
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Feature Boxes */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature h3 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 1rem 0;
    color: var(--text-dark);
}

/* Schedule Closings Promo */
.promo-section {
    background: var(--background-light);
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.promo-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Staff Section */
.staff-member {
    margin: 3rem 0;
    text-align: center;
}

.staff-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.staff-title {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.staff-bio {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* Circular Staff Photos */
.staff-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    text-align: center;
}

.hours-table {
    margin: 2rem auto;
    text-align: left;
    max-width: 400px;
}

.hours-table tr {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-table td:first-child {
    min-width: 3.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* Google Maps Container */
.map-container {
    width: 100%;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.2rem;
    color: var(--primary-burgundy);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Resource Cards */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.resource-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.resource-card h3 {
    margin-top: 0;
}

.card-btn {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Lists */
ul.styled-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
}

ul.styled-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

ul.styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-burgundy);
    font-size: 1.5rem;
}

/* Quote */
.quote {
    font-style: italic;
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.quote-author {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--primary-burgundy);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        height: 400px;
    }

    .hero-content {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    h2::before,
    h2::after {
        display: none;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    header {
        position: static;
    }

    .btn {
        background: transparent;
        color: var(--text-dark);
        border: 1px solid var(--text-dark);
    }
}
