/* Global Styles */
body, html {
    font-family: Arial, sans-serif;
    color: white;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

/* Transparent Floating Header */
header {
    background: transparent !important;
    box-shadow: none !important;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navigation Links */
header nav a {
    margin: 15px;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

header nav a:hover {
    color: #ffcc00;
}

/* Page Content – ensures content starts at top */
.about-content,
.home-content,
.shop-content,
.learn-content {
    padding-top: 0 !important;
}

/* About Page Image */
body.about-page .about-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Learn More Page Styling */
body.learn-page {
    background: none !important;
}

.learn-banner {
    background: url('tahoe-banner.png') no-repeat center center fixed;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 40px;
    box-sizing: border-box;
}

.learn-text {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .learn-text {
        font-size: 1rem;
        max-width: 90%;
        text-align: center;
    }
    .learn-banner {
        justify-content: center;
        align-items: center;
    }
}

/* Remove background from About page */
body.about-page {
    background: none !important;
}
