/*
Theme Name: Denver Sam - Colorado Local Guide
Description: Your insider guide to Colorado travel
Version: 1.0
Author: Sam
Domain: denversam.com
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Typography */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

/* Accessibility Styles */
.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
    width: 1px;
    word-wrap: normal;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
    padding: 8px 16px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    transition: left 0.3s;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #2c3e50;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Header Styles */
.site-header {
    background: #fff;
    color: #333;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    .site-header {
        position: relative;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    text-align: center;
    color: #333;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #333;
    font-size: 36px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav li {
    margin: 20px 0;
}

.mobile-menu nav a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu nav a:hover {
    color: #3498db;
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0f2fe;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-bg {
    background: #f8f9fa;
    max-width: 100%;
}

.alt-bg > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
}

.article-text h2 {
    font-size: 1.6rem;
    color: #1f2937;
    margin: 40px 0 20px 0;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.article-text h2:first-of-type {
    border-top: none;
    margin-top: 20px;
}

.article-text h3 {
    font-size: 1.3rem;
    color: #374151;
    margin: 30px 0 15px 0;
}

.article-text a {
    color: #2563eb;
    text-decoration: underline;
}

/* Opening Hook - no bottom spacing before Essential Info card */
.content-section.opening-hook {
    padding-bottom: 0;
}

.content-section.opening-hook .article-text,
.content-section.opening-hook p {
    margin-bottom: 0;
}

/* Weather Section */
.weather-section {
    padding: 60px 20px;
}

.weather-section .section-header {
    margin-bottom: 40px;
}

.weather-grid {
    display: flex;
    justify-content: center;
    padding: 0;
}

.weather-widget {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.weather-icon {
    font-size: 5rem;
}

.weather-temp-block {
    text-align: left;
}

.weather-city {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.weather-temp {
    font-size: 4rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.weather-desc {
    font-size: 1.1rem;
    color: #666;
    text-transform: capitalize;
    margin-top: 5px;
}

.weather-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.weather-detail-item {
    text-align: center;
}

.weather-detail-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.weather-detail-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.weather-forecast {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.forecast-day {
    text-align: center;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 80px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.forecast-day-name {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.forecast-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.forecast-temp {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.weather-loading,
.news-loading {
    text-align: center;
    color: #666;
    padding: 40px;
}

/* Facts Grid */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.fact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e1e5e9;
}

.fact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.fact-label {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

/* City Cards */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.city-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e1e5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.city-card-header {
    padding: 30px;
    color: #fff;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.city-card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.city-tagline {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* City-specific header colors */
.city-card-header.denver { background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%); }
.city-card-header.estes-park { background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%); }
.city-card-header.boulder { background: linear-gradient(135deg, #7d3c98 0%, #9b59b6 100%); }
.city-card-header.fort-collins { background: linear-gradient(135deg, #b9770e 0%, #f39c12 100%); }
.city-card-header.colorado-springs { background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%); }
.city-card-header.breckenridge { background: linear-gradient(135deg, #2874a6 0%, #3498db 100%); }
.city-card-header.vail { background: linear-gradient(135deg, #117a65 0%, #1abc9c 100%); }
.city-card-header.aspen { background: linear-gradient(135deg, #6c3483 0%, #8e44ad 100%); }
.city-card-header.loveland { background: linear-gradient(135deg, #922b21 0%, #cb4335 100%); }

.city-card-body {
    padding: 25px 30px 30px;
}

.city-card-body p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.city-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.city-highlights li {
    padding: 5px 0;
    color: #666;
    font-size: 0.95rem;
}

.city-highlights li::before {
    content: "→ ";
    color: #3498db;
    font-weight: bold;
}

.city-link {
    display: inline-block;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.city-link:hover {
    color: #3498db;
}

/* Category Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.category-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.alt-bg .category-card {
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #2c3e50;
}

.card-icon {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    background: #3498db;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1f2937;
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-title a:hover {
    color: #3498db;
}

.card-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;
}

/* FAQ Section */
.faq-section {
    padding-top: 20px;
}

.faq-section h3 {
    margin-top: 0;
    color: #1f2937;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e1e5e9;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #2c3e50;
}

.faq-item h4 {
    color: #374151;
    margin: 0 0 8px 0;
    font-size: 1.05rem;
}

.faq-item p {
    margin: 0;
    color: #6b7280;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Quick Answer Box */
.quick-answer {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin: 0 0 30px 0;
}

.quick-answer h2 {
    color: white !important;
    font-size: 1.2rem;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    border: none !important;
}

.quick-answer p {
    color: rgba(255,255,255,0.95);
    margin: 0;
    line-height: 1.6;
}

/* Related Articles */
.related-articles {
    background: #f0f9ff;
    padding: 24px;
    border-radius: 12px;
    margin: 40px 0;
}

.related-articles h3 {
    margin: 0 0 16px 0;
    color: #0c4a6e;
}

.related-articles ul {
    margin: 0;
    padding-left: 20px;
}

.related-articles li {
    margin-bottom: 8px;
}

.related-articles a {
    color: #0369a1;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0f2fe;
}

.cta-button {
    background: #fff;
    color: #2c3e50;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    background: #f8f9fa;
}

.cta-button-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.cta-button-secondary:hover,
.cta-button-secondary:focus {
    background: #fff;
    color: #2c3e50;
    transform: translateY(-2px);
}

.cta-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    margin-top: 20px;
    font-size: 1rem;
    color: #e0f2fe;
}

.cta-phone a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #fff;
}

.cta-phone a:hover {
    border-bottom: 2px solid #fff;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e1e5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:not(.has-thumbnail) {
    padding: 25px;
}

.news-card.has-thumbnail {
    display: flex;
    flex-direction: column;
}

.news-thumbnail {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-thumbnail img {
    transform: scale(1.05);
}

.placeholder-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #6b7280 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.placeholder-thumb span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.3;
}

.news-card.has-thumbnail .news-content {
    padding: 20px;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.news-source {
    font-size: 0.75rem;
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    color: #3498db;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
}

/* Instagram Section */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.instagram-embed {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e1e5e9;
}

.instagram-embed.loading {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.instagram-placeholder {
    text-align: center;
    color: #888;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    grid-column: 1 / -1;
}

/* Footer Styles */
.site-footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e0f2fe;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Article Page Styles */
.article-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.article-header {
    margin-bottom: 40px;
    padding-top: 40px;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-page .article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #374151;
}

.article-page .article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.article-page .article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-page .article-content ul {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.article-page .article-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.article-page .article-content ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #3498db;
    font-weight: bold;
}

.article-page .article-content a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.article-page .article-content a:hover {
    border-bottom-color: #3498db;
}

.article-image {
    margin: 40px 0;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.article-page .instagram-embed {
    margin: 30px 0;
    min-height: 400px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .site-logo {
        font-size: 20px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-card {
        padding: 30px;
    }


    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 60px 15px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .weather-main {
        gap: 20px;
    }

    .weather-icon {
        font-size: 4rem;
    }

    .weather-temp {
        font-size: 3rem;
    }

    .weather-details {
        gap: 25px;
    }

    .weather-forecast {
        gap: 10px;
        flex-wrap: wrap;
    }

    .forecast-day {
        min-width: 70px;
        padding: 12px 15px;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-page .article-content h2 {
        font-size: 1.5rem;
    }

    .article-page .article-content h3 {
        font-size: 1.2rem;
    }
}

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

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-page .article-content p {
        font-size: 1rem;
    }

    .article-page .instagram-embed {
        min-height: 300px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .weather-main {
        flex-direction: column;
        gap: 15px;
    }

    .weather-temp-block {
        text-align: center;
    }

    .weather-icon {
        font-size: 3.5rem;
    }

    .weather-temp {
        font-size: 2.5rem;
    }

    .weather-details {
        gap: 20px;
    }

    .weather-detail-value {
        font-size: 1rem;
    }

    .forecast-day {
        min-width: 60px;
        padding: 10px 12px;
    }

    .forecast-icon {
        font-size: 1.2rem;
    }

    .forecast-temp {
        font-size: 0.9rem;
    }

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

    .site-logo {
        font-size: 18px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu,
    .weather-section,
    .news-grid {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
}
