/*
Theme Name: Anchor Bay Campground
Theme URI: https://jermthawerm.github.io
Author: Anchor Bay Campground
Description: Custom theme for Anchor Bay Campground featuring video backgrounds and coastal styling
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

/* Logo */
.logo {
    grid-column: 2;
    text-align: center;
}

.logo img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

nav a.active,
nav .current-menu-item a,
nav .current_page_item a {
    background: rgba(255,215,0,0.3);
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffd700;
}

.page-hero .subtitle {
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-weight: 300;
}

/* Content Sections */
.content-section {
    position: relative;
    padding: 60px 20px;
    color: white;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.9) 100%);
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 500;
}

.section-header .divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #ffd700, transparent);
    margin: 0 auto;
}

/* Activity Cards */
.activity-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.15);
}

.activity-card h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 400;
}

.activity-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.activity-card p:last-child {
    margin-bottom: 0;
}

.activity-card strong {
    color: #ffd700;
}

.activity-card a {
    color: #ffd700;
    text-decoration: none;
}

.activity-card a:hover {
    text-decoration: underline;
}

/* Info Cards */
.info-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 30px;
}

.info-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-card li:last-child {
    border-bottom: none;
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.price-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: all 0.3s;
}

.price-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.price-card .price {
    font-size: 2rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-card .label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* Season Grid */
.season-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.season-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255,215,0,0.3);
}

.season-card.off-season {
    border-color: rgba(135,206,235,0.3);
}

.season-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.season-card.off-season h3 {
    color: #87CEEB;
}

/* Warning Box */
.warning-box {
    background: rgba(255, 100, 100, 0.15);
    border-left: 4px solid #ff6b6b;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 5px;
}

.warning-box h3 {
    color: #ff6b6b;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.warning-box p {
    margin-bottom: 15px;
    font-size: 1.15rem;
    line-height: 1.9;
}

/* Directions Card */
.directions-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.15);
}

.directions-card h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 400;
}

.directions-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Contact Card */
.contact-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}

.contact-card h2 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 30px;
    font-weight: 400;
}

.contact-info {
    font-size: 1.2rem;
    line-height: 2;
}

.phone-number {
    font-size: 2rem;
    color: #ffd700;
    margin: 30px 0;
    font-weight: 500;
}

.phone-number a {
    color: #ffd700;
    text-decoration: none;
}

/* Map Section */
.map-section {
    position: relative;
    background: rgba(0,0,0,0.8);
    padding: 20px 0;
}

.map-section iframe {
    display: block;
    width: 400px;
    height: 400px;
    border: 0;
    margin: 0 auto;
}

/* History Content */
.history-content {
    font-size: 1.15rem;
    line-height: 1.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.history-content p {
    margin-bottom: 25px;
}

.history-content h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin: 50px 0 25px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 400;
}

.history-content img {
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    margin: 15px;
}

.history-content img.float-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

.history-content img.float-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.history-content blockquote {
    background: rgba(255,215,0,0.1);
    border-left: 4px solid #ffd700;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 5px;
    font-style: italic;
    clear: both;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Highlight & Warning Text */
.highlight {
    color: #ffd700;
    font-weight: bold;
}

.warning {
    color: #ff9800;
    font-style: italic;
}

/* Book Now Button Bar (Sticky) */
.book-now-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    padding: 15px 20px;
    text-align: center;
}

.book-now-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #ffd700;
    color: #1a472a;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.book-now-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(135deg, rgba(255,152,0,0.9) 0%, rgba(255,87,34,0.9) 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.3);
}

.alert-banner h2 {
    color: white;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

.btn-primary {
    background: #ffd700;
    color: #1a472a;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a472a;
    transform: translateY(-3px);
}

.social-link {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.social-link:hover {
    background: #166fe5;
    transform: translateY(-3px);
}

.reservation-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #ffd700;
    color: #1a472a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s;
}

.reservation-link:hover {
    background: white;
    transform: translateY(-3px);
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,215,0,0.05) 100%);
    border-left: 4px solid #ffd700;
    padding: 20px 25px;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 1.1rem;
}

.road-conditions {
    background: rgba(255,215,0,0.1);
    border-left: 4px solid #ffd700;
    padding: 20px 25px;
    margin-top: 40px;
    border-radius: 5px;
}

/* Footer */
footer {
    position: relative;
    background: rgba(0,0,0,0.95);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo {
        grid-column: 1;
    }

    .logo img {
        width: 220px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav a {
        font-size: 14px;
        padding: 10px 14px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .season-grid {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        padding: 25px;
    }

    .activity-card h2 {
        font-size: 1.6rem;
    }

    .directions-card {
        padding: 25px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .phone-number {
        font-size: 1.6rem;
    }

    .history-content img.float-right,
    .history-content img.float-left {
        float: none;
        display: block;
        margin: 20px auto;
    }

    .btn {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }

    .map-section iframe {
        width: 100%;
        max-width: 400px;
    }
}
