/* ==========================================================================
   PAGES.CSS - Subpage Specific Styles
   Things To Do In Fernandina Beach
   ========================================================================== */

/* ==========================================================================
   Page Hero Variations
   ========================================================================== */

.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* ==========================================================================
   Page Content
   ========================================================================== */

.page-content {
    padding: 4rem 0;
    background: #f5f0e8;
}

/* ==========================================================================
   Attractions Page
   ========================================================================== */

.attractions-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid #e0d9cc;
    border-radius: 50px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a365d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1a365d;
    border-color: #1a365d;
    color: #fff;
}

.attractions-section {
    margin-bottom: 4rem;
}

.section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #c4922e;
}

/* Attraction Feature Card */
.attraction-feature {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.attraction-feature-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #fff;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #c4922e;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.attraction-feature-content {
    padding: 2rem;
}

.attraction-type {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e07c5c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.attraction-feature-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.attraction-feature-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.attraction-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.attraction-highlights span {
    background: #f5f0e8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #1a365d;
}

.attraction-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.info-item {
    font-size: 0.9rem;
    color: #4a5568;
}

.info-item strong {
    color: #1a365d;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.attraction-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.attraction-card-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-icon {
    font-size: 3rem;
}

.attraction-card-body {
    padding: 1.5rem;
}

.attraction-card-body h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.attraction-card-body p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #718096;
}

/* ==========================================================================
   Eat & Drink Page
   ========================================================================== */

.dining-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.dining-cat-card {
    background: #fff;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.cat-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cat-title {
    display: block;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.cat-desc {
    display: block;
    font-size: 0.8rem;
    color: #718096;
}

.dining-section {
    margin-bottom: 4rem;
}

/* Featured Restaurant */
.featured-restaurant {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #c4922e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.featured-restaurant-content {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.featured-restaurant-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.featured-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.featured-restaurant-info {
    padding: 2rem;
}

.restaurant-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tag {
    background: #f5f0e8;
    color: #1a365d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.featured-restaurant-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.restaurant-tagline {
    font-style: italic;
    color: #c4922e;
    margin-bottom: 1rem;
}

.restaurant-highlights {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.highlight {
    text-align: center;
}

.highlight strong {
    display: block;
    font-size: 1.5rem;
    color: #1a365d;
}

.highlight span {
    font-size: 0.8rem;
    color: #718096;
}

.must-try {
    background: #fff7ed;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #c4922e;
    margin-bottom: 1rem;
}

.restaurant-details p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.restaurant-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Restaurant Grid */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.restaurant-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-4px);
}

.restaurant-card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.restaurant-card-body {
    padding: 1.25rem;
}

.restaurant-card-body h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.restaurant-card-body p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #718096;
}

/* Dining Tips */
.dining-tips {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.dining-tips h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    padding: 1rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.tip-card strong {
    display: block;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.tip-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* ==========================================================================
   News Page
   ========================================================================== */

.news-sources {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

.sources-label {
    font-weight: 600;
    color: #1a365d;
}

.source-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.source-badge {
    background: #f5f0e8;
    color: #1a365d;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.last-updated {
    margin-left: auto;
    font-size: 0.8rem;
    color: #718096;
}

/* Featured News */
.featured-news {
    margin-bottom: 3rem;
}

.featured-news-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #c4922e;
}

.featured-news-card .news-category {
    display: inline-block;
    background: #c4922e;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.featured-news-card h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.news-excerpt {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
}

.read-more-link {
    color: #e07c5c;
    font-weight: 600;
    text-decoration: none;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-list-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
}

.news-source-tag {
    flex-shrink: 0;
    width: 140px;
    padding: 0.5rem;
    text-align: center;
    background: #f5f0e8;
    color: #1a365d;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    height: fit-content;
}

.news-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

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

.news-content h3 a:hover {
    color: #e07c5c;
}

.news-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.news-footer {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #718096;
}

.news-footer .category {
    background: #f5f0e8;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

/* Load More */
.load-more-section {
    text-align: center;
    margin-top: 2rem;
}

.news-note {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 1rem;
}

/* Sources Info */
.sources-info {
    margin-top: 4rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
}

.sources-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

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

.source-card {
    padding: 1.25rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.source-card h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.source-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.source-card a {
    color: #e07c5c;
    font-size: 0.9rem;
    text-decoration: none;
}

/* ==========================================================================
   Directory Page
   ========================================================================== */

.directory-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.directory-category-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.directory-category-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.directory-category-card p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.directory-section {
    margin-bottom: 4rem;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.business-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.business-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.business-card p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #718096;
}

/* Add Business CTA */
.add-business-cta {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.add-business-cta h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.add-business-cta p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.listing-tiers {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tier {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 140px;
}

.tier.featured {
    background: #c4922e;
}

.tier h4 {
    margin-bottom: 0.25rem;
}

.tier p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.tier .price {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ==========================================================================
   Beaches Page
   ========================================================================== */

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

.beaches-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.beach-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

/* Beach Feature */
.beach-feature {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.beach-feature-header {
    padding: 2rem;
    color: #fff;
    position: relative;
}

.beach-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.beach-feature-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
}

.beach-feature-body {
    padding: 2rem;
}

.beach-feature-body p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.beach-amenities h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amenity-grid span {
    background: #f5f0e8;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.beach-details {
    padding: 1rem;
    background: #f9f7f4;
    border-radius: 8px;
}

.beach-details p {
    margin-bottom: 0.5rem;
}

.beach-details p:last-child {
    margin-bottom: 0;
}

/* Beaches Grid */
.beaches-section {
    margin-bottom: 3rem;
}

.beaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.beach-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.beach-card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.beach-icon {
    font-size: 3rem;
}

.beach-card-body {
    padding: 1.5rem;
}

.beach-card-body h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.beach-card-body p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.beach-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #718096;
}

/* Beach Tips */
.beach-tips-section {
    margin-top: 3rem;
}

/* ==========================================================================
   History Page
   ========================================================================== */

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

.history-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.eight-flags-section {
    margin-bottom: 4rem;
}

.flags-timeline {
    position: relative;
    padding-left: 3rem;
}

.flags-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #c4922e, #e07c5c);
}

.flag-item {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.flag-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #c4922e;
    border-radius: 50%;
    border: 3px solid #f5f0e8;
}

.flag-year {
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #c4922e;
    min-width: 80px;
}

.flag-content h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.flag-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.history-section {
    margin-bottom: 4rem;
}

.period-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.period-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.period-card p {
    color: #4a5568;
    line-height: 1.7;
}

.historic-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.site-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
}

.site-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.site-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.site-card a {
    color: #e07c5c;
    font-size: 0.9rem;
    text-decoration: none;
}

.fun-facts-section {
    margin-top: 3rem;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

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

.fact-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-method h4 {
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #e07c5c;
    text-decoration: none;
}

.response-time {
    margin-top: 2rem;
    padding: 1rem;
    background: #fff7ed;
    border-radius: 8px;
    border-left: 4px solid #c4922e;
}

/* Contact Form */
.contact-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
}

.contact-form-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a365d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0d9cc;
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.faq-section {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
}

.faq-item h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: #e07c5c;
}

/* ==========================================================================
   Advertise Page
   ========================================================================== */

.advertise-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.advertise-intro h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #c4922e;
}

.pricing-card.title-sponsor {
    border: 3px solid #1a365d;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #c4922e;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f0ebe0;
}

.pricing-header h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
}

.price-period {
    color: #718096;
    font-size: 0.9rem;
}

.pricing-body {
    padding: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.pricing-features li.muted {
    opacity: 0.5;
}

.why-advertise {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

.current-sponsor {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.current-sponsor h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-cta {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.contact-cta h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.contact-cta .btn,
.contact-cta .btn-primary {
    background: #d4a574;
    color: #1a365d;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-cta .btn:hover,
.contact-cta .btn-primary:hover {
    background: #c4854f;
    transform: translateY(-2px);
}

/* ==========================================================================
   Lodging Page
   ========================================================================== */

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

.lodging-intro p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.lodging-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.lodging-cat-card {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lodging-cat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lodging-section {
    margin-bottom: 4rem;
}

.lodging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.lodging-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.lodging-card.featured {
    grid-column: span 1;
}

.lodging-card-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.lodging-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1a365d;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.lodging-card-body {
    padding: 1.5rem;
}

.lodging-card-body h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.lodging-card-body p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lodging-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lodging-features span {
    background: #f5f0e8;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.lodging-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #718096;
}

.price-range {
    font-weight: 600;
    color: #c4922e;
}

/* Vacation Rental Info */
.vacation-rental-info p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.rental-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: 8px;
}

.platform-card h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.platform-card p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.rental-tips {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
}

.rental-tips h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.rental-tips ul {
    margin: 0;
    padding-left: 1.25rem;
}

.rental-tips li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

/* Booking Tips */
.booking-tips {
    margin-top: 3rem;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.season-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
}

.season-card h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.season-card p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* ==========================================================================
   About & Privacy Pages
   ========================================================================== */

.about-content {
    max-width: 800px;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.about-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin: 2rem 0 1rem;
}

.about-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.sponsor-feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #c4922e;
}

.sponsor-feature h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.sponsor-feature p {
    margin-bottom: 0.5rem;
}

.legal-content {
    max-width: 800px;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: #1a365d;
    margin: 2rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: #1a365d;
    margin: 1.5rem 0 0.75rem;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Sponsor CTA Box
   ========================================================================== */

.sponsor-cta-box {
    background: linear-gradient(135deg, #c4922e 0%, #d4a23e 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
}

.sponsor-cta-content {
    max-width: 600px;
}

.sponsor-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    color: #fff;
}

.sponsor-cta-box h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.sponsor-cta-box p {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 992px) {
    .attraction-feature {
        grid-template-columns: 1fr;
    }

    .attraction-feature-image {
        min-height: 200px;
    }

    .featured-restaurant-content {
        grid-template-columns: 1fr;
    }

    .featured-restaurant-image {
        min-height: 180px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 5rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .page-content {
        padding: 2.5rem 0;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .flag-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .flag-year {
        font-size: 1.25rem;
        min-width: auto;
    }

    .flags-timeline {
        padding-left: 1.5rem;
    }

    .flag-item::before {
        left: -1.5rem;
        width: 12px;
        height: 12px;
    }

    .news-list-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .news-source-tag {
        width: auto;
        align-self: flex-start;
    }

    .attractions-grid,
    .restaurant-grid,
    .beaches-grid,
    .lodging-grid,
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dining-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .dining-cat-card {
        padding: 1rem 0.75rem;
    }

    .cat-emoji {
        font-size: 2rem;
    }

    .restaurant-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .add-business-cta {
        padding: 2rem 1.5rem;
    }

    .add-business-cta h3 {
        font-size: 1.5rem;
    }

    .listing-tiers {
        gap: 1rem;
    }

    .tier {
        min-width: 120px;
        padding: 1rem;
    }

    .sponsor-cta-box {
        padding: 1.5rem;
    }

    .sponsor-cta-box h3 {
        font-size: 1.5rem;
    }

    .contact-cta {
        padding: 2rem 1.5rem;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .attractions-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }

    .beach-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .dining-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .cat-emoji {
        font-size: 1.75rem;
    }

    .cat-title {
        font-size: 0.85rem;
    }

    .cat-desc {
        font-size: 0.7rem;
    }

    .directory-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .directory-category-card {
        padding: 1rem;
    }

    .directory-category-card h3 {
        font-size: 1rem;
    }

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

    .pricing-card {
        margin-bottom: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .historic-sites-grid,
    .facts-grid,
    .faq-grid,
    .sources-grid,
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .amenity-grid span {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .lodging-categories {
        gap: 0.5rem;
    }

    .lodging-cat-card {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .rental-platforms {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.875rem;
        font-size: 0.95rem;
    }

    .attraction-card-body,
    .restaurant-card-body,
    .beach-card-body,
    .lodging-card-body {
        padding: 1rem;
    }

    .attraction-card-body h4,
    .restaurant-card-body h4,
    .beach-card-body h4,
    .lodging-card-body h4 {
        font-size: 1.1rem;
    }

    .attraction-card-body p,
    .restaurant-card-body p,
    .beach-card-body p,
    .lodging-card-body p {
        font-size: 0.85rem;
    }
}
