/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #5d7285;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --background-light: #f8f9fa;
    --stone-color: #8b7765;
    --warm-white: #fefefe;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--warm-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: var(--warm-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px var(--shadow);
    margin: 2rem auto;
    max-width: 800px;
    position: relative;
}

.well-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    background: var(--background-light);
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-style: italic;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.content-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--warm-white);
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background: var(--background-light);
}

.highlights h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
}

.highlight-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Visit Section */
.visit {
    padding: 4rem 0;
    background: var(--warm-white);
}

.visit h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.visit-info h3, .visit-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.visit-info > p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.visit-tips {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tip {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.tip:hover {
    transform: translateY(-2px);
}

.tip h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.tip ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tip li {
    color: var(--secondary-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.tip li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.location-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    margin-bottom: 2rem;
}

.location-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.location-card h4:first-child {
    margin-top: 0;
}

.location-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-card p:last-of-type {
    margin-bottom: 0;
}

.courtesy-reminder {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.courtesy-reminder h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.courtesy-reminder p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Resources Section */
.resources {
    padding: 4rem 0;
    background: var(--background-light);
}

.resources h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.resource-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(52, 152, 219, 0.3);
}

.resource-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.3);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer p:last-child {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .main-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        height: 300px;
        margin: 1rem auto;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .resource-links {
        flex-direction: column;
        align-items: center;
    }
    
    .resource-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .main-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .hero-image {
        height: 250px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--accent-color);
    color: white;
}

/* Focus styles for accessibility */
.nav-link:focus,
.resource-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Street View Banner */
.street-view-banner {
    position: relative;
    margin: 2rem 0 0 0;
    overflow: hidden;
}

.banner-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.streetview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.street-view-banner:hover .streetview-image {
    transform: scale(1.02);
}

/* Additional Page Styles */

/* Page Hero for subpages */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Active navigation link */
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Timeline Styles */
.timeline-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-year {
    flex: 0 0 150px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.timeline-content {
    flex: 1;
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Historical Details */
.historical-details {
    padding: 4rem 0;
    background: var(--warm-white);
}

.historical-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
}

.detail-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    color: var(--secondary-color);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.detail-card li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.detail-card li:last-child {
    border-bottom: none;
}

/* Quotes Section */
.quotes-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.quotes-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.historical-quote {
    background: var(--warm-white);
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    max-width: 800px;
    border-left: 5px solid var(--accent-color);
}

.historical-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.historical-quote cite {
    display: block;
    text-align: right;
    color: var(--light-text);
    font-size: 0.9rem;
    font-style: normal;
}

/* Media Coverage Styles */
.media-coverage {
    padding: 4rem 0;
    background: var(--background-light);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.media-item {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.media-item:hover {
    transform: translateY(-3px);
}

.media-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.media-date {
    font-size: 0.9rem;
    color: var(--light-text);
}

.media-type {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.media-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.media-source {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.media-excerpt {
    color: var(--secondary-color);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.media-meta {
    font-size: 0.9rem;
    color: var(--light-text);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

/* Awards Section */
.awards-section {
    padding: 4rem 0;
    background: var(--warm-white);
}

.awards-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.award-highlight {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.award-year {
    flex: 0 0 120px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
}

.award-content {
    flex: 1;
    margin-left: 2rem;
}

.award-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.award-content h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.award-content p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Media Stats */
.media-stats {
    padding: 4rem 0;
    background: var(--background-light);
}

.media-stats h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Media Contact */
.media-contact {
    padding: 4rem 0;
    background: var(--warm-white);
    text-align: center;
}

.media-contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.media-contact p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-info h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Story Page Styles */
.story-intro {
    padding: 4rem 0;
    background: var(--warm-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* Story Form */
.submit-story {
    padding: 4rem 0;
    background: var(--background-light);
}

.submit-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.story-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.thank-you-message {
    max-width: 600px;
    margin: 2rem auto 0;
    background: #d4edda;
    color: #155724;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.thank-you-message h3 {
    margin-bottom: 1rem;
    color: #155724;
}

/* Community Stories */
.community-stories {
    padding: 4rem 0;
    background: var(--warm-white);
}

.community-stories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.stories-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.story-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.story-duration {
    font-style: italic;
}

.story-content p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-style: italic;
}

/* Story Guidelines */
.story-guidelines {
    padding: 4rem 0;
    background: var(--background-light);
}

.story-guidelines h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.guidelines-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.guidelines-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.guidelines-content h4:first-child {
    margin-top: 0;
}

.guidelines-content ul {
    list-style: none;
    padding: 0;
}

.guidelines-content li {
    color: var(--secondary-color);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.guidelines-content li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.guidelines-content p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 40px;
    }
    
    .timeline-item .timeline-content {
        margin: 0 !important;
        text-align: left !important;
        margin-top: 1rem !important;
    }
    
    .timeline-year {
        justify-content: flex-start;
        margin-bottom: 0;
    }
    

    
    .award-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .award-content {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .media-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .banner-image {
        height: 200px;
    }
    
    .banner-overlay h3 {
        font-size: 1.8rem;
    }
    
    .banner-overlay p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
         .about-content {
         max-width: 100%;
         padding: 0 1rem;
     }
     
     .facts-list {
         grid-template-columns: 1fr;
         gap: 0.5rem;
     }
     
     .facts-list li {
         padding: 0.8rem 0.8rem 0.8rem 2rem;
         font-size: 0.95rem;
     }
     
     .fast-facts {
         margin-top: 2rem;
         padding: 1.5rem;
     }
     
          .fast-facts p {
         font-size: 1.1rem;
     }
     
     .visit-grid {
         grid-template-columns: 1fr;
         gap: 3rem;
     }
     
     .visit-info h3, .visit-details h3 {
         font-size: 1.5rem;
         text-align: center;
     }
     
     .visit-info > p {
         text-align: center;
         font-size: 1rem;
     }
     
     .tip {
         padding: 1.2rem;
     }
     
     .tip h4 {
         font-size: 1.2rem;
     }
     
     .location-card {
         padding: 1.5rem;
     }
     
     .courtesy-reminder {
         padding: 1.2rem;
     }
 } 

/* About Section Enhanced */
.about {
    padding: 4rem 0;
    background: var(--warm-white);
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.about-text p {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-text p:last-of-type {
    margin-bottom: 2.5rem;
}

.fast-facts {
    margin-top: 2.5rem;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08), rgba(52, 152, 219, 0.03));
    border-radius: 0 12px 12px 0;
    box-shadow: 0 3px 15px rgba(52, 152, 219, 0.1);
    position: relative;
}

.fast-facts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 0 12px 0 0;
}

.fast-facts p {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.facts-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    margin-left: 0;
    border-left: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem 1rem 1rem 2.5rem;
    transition: all 0.3s ease;
}

.facts-list li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.facts-list li::before {
    content: "✓";
    color: var(--accent-color);
    position: absolute;
    left: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Street View Banner */
.street-view-banner {
    position: relative;
    margin: 2rem 0 0 0;
    overflow: hidden;
}

.banner-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.streetview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-overlay p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    font-style: italic;
}

.street-view-banner:hover .streetview-image {
    transform: scale(1.02);
}

/* Enhanced Hero Section */
.hero-image {
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
    border-radius: 0 0 12px 12px;
}

/* Bottles Page Styles */
.bottles-intro {
    padding: 4rem 0;
    background: var(--warm-white);
}

.bottles-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bottles-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
}

.benefits-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.benefits-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.experience-section {
    padding: 4rem 0;
    background: var(--warm-white);
}

.experience-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.experience-content > p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.trade-off-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.trade-off-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.adaptation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adaptation-list li {
    color: var(--secondary-color);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.adaptation-list li::before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.faq-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 0;
}

.upgrade-section {
    padding: 4rem 0;
    background: var(--warm-white);
}

.upgrade-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.upgrade-steps {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

.products-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.products-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.products-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.product-card p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(52, 152, 219, 0.3);
}

.product-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.3);
}

.testimonial-section {
    padding: 4rem 0;
    background: var(--warm-white);
}

.testimonial-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--background-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.testimonial-quote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-quote cite {
    display: block;
    color: var(--light-text);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
}

/* Responsive Design for Bottles Page */
@media (max-width: 768px) {
    .upgrade-steps {
        flex-direction: column;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .trade-off-card {
        text-align: center;
    }
    
    .testimonial-quote {
        padding: 2rem;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
}