/*
Theme Name: Cast Away Bait Shop
Theme URI: https://castawaybaitshop.com
Author: Cast Away Bait Shop
Author URI: https://castawaybaitshop.com
Description: Custom WordPress theme for Cast Away! Bait Shop with WooCommerce integration. Features a rugged outdoor aesthetic perfect for a bait and tackle shop.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: castaway-baitshop
Tags: e-commerce, woocommerce, outdoor, fishing, hunting, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* ============================================
   CSS VARIABLES - Brand colors and theming
   ============================================ */
:root {
    /* Brand colors from logo - Golden yellow and black */
    --primary-yellow: #FDB913;
    --primary-black: #1a1a1a;
    --accent-orange: #FF6B35;
    --earth-brown: #8B4513;
    --forest-green: #2d5016;
    --water-blue: #4A90A4;
    --cream: #F5F1E3;
    --dark-overlay: rgba(26, 26, 26, 0.85);
    
    /* Typography */
    --font-display: 'Alfa Slab One', serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Cabin', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--primary-black);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* WordPress Core Styles */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* ============================================
   NAVIGATION - Sticky header with outdoor feel
   ============================================ */
.nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, var(--primary-black), #2a2a2a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container img {
    height: 60px;
    width: auto;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    color: var(--primary-yellow);
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links,
.menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-links a,
.menu a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after,
.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.menu a:hover::after,
.menu .current-menu-item a::after {
    width: 100%;
}

.nav-links a:hover,
.menu a:hover {
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background: var(--primary-yellow);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
}

.btn-primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
    background: #ffc933;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 185, 19, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 3px solid var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* ============================================
   SECTION STYLES - Reusable section container
   ============================================ */
.section {
    padding: var(--spacing-xl) 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-black);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-yellow), var(--accent-orange));
}

/* ============================================
   FOOTER
   ============================================ */
footer,
.site-footer {
    background: var(--primary-black);
    color: var(--cream);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4,
.widget-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a,
.widget a {
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover,
.widget a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 227, 0.2);
    color: rgba(245, 241, 227, 0.7);
}

/* ============================================
   WOOCOMMERCE SPECIFIC STYLES
   ============================================ */

/* Product Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(253, 185, 19, 0.3);
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.woocommerce ul.products li.product .price {
    font-size: 1.5rem;
    color: var(--forest-green);
    font-weight: bold;
}

/* Single Product Page */
.woocommerce div.product {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 2rem auto;
}

.woocommerce div.product .product_title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.woocommerce div.product p.price {
    font-size: 2rem;
    color: var(--primary-yellow);
    font-weight: bold;
}

/* Cart & Checkout */
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.woocommerce table.shop_table {
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 8px;
}

.woocommerce table.shop_table th {
    background: var(--forest-green);
    color: white;
    font-family: var(--font-heading);
    padding: 1rem;
    letter-spacing: 1px;
}

/* Sale Badge */
.woocommerce span.onsale {
    background: var(--accent-orange);
    color: white;
    font-family: var(--font-heading);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile optimization
   ============================================ */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-links,
    .menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-black);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active,
    .menu.active {
        left: 0;
    }
    
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* ============================================
   HERO SECTION - Homepage hero with storefront
   ============================================ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--earth-brown) 0%, var(--forest-green) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.7);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--cream);
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--primary-yellow);
    text-shadow: 
        3px 3px 0 var(--primary-black),
        5px 5px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 1;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Alert bar for announcements */
.alert-bar {
    background: var(--accent-orange);
    color: white;
    text-align: center;
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Hours & Vending Section */
.hours-vending {
    background: linear-gradient(135deg, var(--forest-green), var(--water-blue));
    color: white;
    text-align: center;
}

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

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hours-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hours-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vending-highlight {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, var(--primary-black), #2a2a2a);
    color: var(--cream);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   LIVE BAIT SECTION
   ============================================ */
.live-bait {
    background: var(--cream);
}

.bait-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bait-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.bait-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(253, 185, 19, 0.3);
}

.bait-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bait-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.bait-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   PAGE HEADER - For non-homepage pages
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--forest-green), var(--water-blue));
    color: white;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   CUSTOMER CATCHES PAGE STYLES
   ============================================ */
.catches-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.share-section {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    text-align: center;
}

.share-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.share-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: white;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.catch-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.catch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.catch-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.catch-info {
    padding: 1.5rem;
}

.catch-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.catch-details {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.catch-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.placeholder-section {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.placeholder-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.placeholder-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.placeholder-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--cream);
}

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

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 1.1rem;
    color: #555;
    margin: 0.25rem 0;
}

.contact-details a {
    color: var(--water-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--accent-orange);
}

.season-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-yellow);
}

.season-hours h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hours-list {
    font-size: 1.1rem;
    line-height: 1.8;
}

.vending-notice {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.conditions-section {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.conditions-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-align: center;
}

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

.condition-card {
    background: linear-gradient(135deg, var(--water-blue), var(--forest-green));
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-5px);
}

.condition-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.condition-value {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

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

.weather-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.map-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-align: center;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    height: 500px;
    margin-bottom: 1rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.directions-link {
    text-align: center;
    margin-top: 1rem;
}

.directions-link a {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--water-blue);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.directions-link a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ============================================
   EVENTS PAGE STYLES
   ============================================ */
.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.event-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.event-date-badge {
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-heading);
}

.event-month {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.event-day {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.event-info {
    padding: 2rem;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.event-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.event-details span:first-child {
    font-size: 1.2rem;
}

.event-description {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-top: 1rem;
}

.event-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--water-blue);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-top: 1rem;
}

.placeholder-events {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.placeholder-events h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.placeholder-events p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* ============================================
   NEWS/BLOG PAGE STYLES
   ============================================ */
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.news-article {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.news-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.article-header {
    border-left: 5px solid var(--primary-yellow);
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.article-date {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.article-title a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--primary-yellow);
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--water-blue);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--accent-orange);
}

.placeholder-news {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.placeholder-news h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.placeholder-news p {
    font-size: 1.2rem;
    color: #666;
}

/* ============================================
   RESPONSIVE - Mobile adjustments for new pages
   ============================================ */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        height: 350px;
    }
}
