/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.hero-section {
    position: relative; 
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('camp.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-logo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3));
}

.hero-title-graphic {
    max-width: 700px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out forwards, pulseGlow 4s infinite ease-in-out 1.2s;
    opacity: 0;
}

/* Header & Navigation */
.site-header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: center; 
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Green Glow Hover for Nav Links */
.nav-links a:not(.btn-primary):hover {
    color: #2ecc71; /* Forest Green */
    text-shadow: 0px 0px 10px rgba(46, 204, 113, 0.6);
}

/* Listings Section */
.campground-listing {
    padding: 60px 0;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Book Cards */
.camp-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-image img {
    width: 100%;
    /* Remove the fixed height and let the image define the shape */
    height: auto; 
    /* 'contain' ensures the whole image is seen if you do use a height */
    object-fit: contain; 
    display: block;
    background-color: #eee; /* Optional: adds a light grey background if covers vary in size */
}
}

.card-content { padding: 25px; }

.novel-tag {
    color: #e63946;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.genres {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.genres span {
    background: rgba(255, 215, 0, 0.1);
    color: #8a6d0b;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Buttons */
.btn-primary {
    background: #e63946;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
}

.btn-primary:hover {
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.5); /* Yellow Halo on Book Series */
}

.btn-outline {
    display: inline-block;
    padding: 8px 18px;
    border: 1.5px solid #e63946;
    color: #e63946;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
}

/* Registration Form Section */
.form-content {
    background: #1a2a3a; /* Deep mystery blue/black */
    color: #fff;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    margin-top: 80px;
}

.signup-form {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.signup-form input {
    padding: 12px 20px;
    width: 300px;
    border-radius: 4px;
    border: none;
}

.signup-form button {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* Audio Control */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2000;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.music-control:hover { box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.6); }

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

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0px 4px 15px rgba(0,0,0,0.5)); }
    50% { filter: drop-shadow(0px 0px 30px rgba(255, 215, 0, 0.6)); }
}

.site-footer {
    background: #222;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .grid-layout { grid-template-columns: 1fr; }
    .signup-form { flex-direction: column; align-items: center; }
}
