/* Color Scheme */
:root {
    --background-color: #ffffff;
    --accent-color: #FF8C00;
    --medium-gray: #666666;
    --text-color: #000000;
    --body-text-color: #333333;
}

/* Typography */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--body-text-color);
    margin: 0;
    padding: 0;
}

h1, h2 {
    font-family: 'Baloo 2', cursive;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 20px;
}

h2 {
    font-size: 2rem;
    margin: 40px 0 20px 0;
    text-align: center;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 50px 20px;
}

.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.tagline {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1.5rem;
}

/* Gallery Grid */
.gallery {
    padding: 40px;
    overflow: hidden;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marquee-row {
    display: flex;
    /* gap: 10px; */
}

.gallery-item {
    flex: 0 0 auto;
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.marquee-row:nth-child(odd) {
    animation: scrollLeft 30s linear infinite;
}

.marquee-row:nth-child(even) {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about {
    padding: 40px 20px;
    text-align: center;
}

.about-image {
    width: 200px;
    height: auto;
    margin-top: 20px;
}

/* Latest Adventures Section */
.adventures {
    padding: 40px 20px;
}

.adventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.adventure-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.adventure-item p {
    margin-top: 10px;
    font-weight: bold;
}

/* Fan Interactions */
/* Removed Fan Interactions Styles */

/* Footer */
.footer {
    background-color: var(--medium-gray);
    color: #fff;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer h2 {
    color: #fff;
}

.footer .contact, .footer .social-links {
    max-width: 300px;
    width: 100%;
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    margin: 5px 0;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .gallery-item {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 1024px) {
    .marquee-row:nth-child(odd) {
        animation: scrollLeft 22s linear infinite;
    }
    
    .marquee-row:nth-child(even) {
        animation: scrollRight 22s linear infinite;
    }
}

@media (max-width: 768px) {
    .marquee-row:nth-child(odd) {
        animation: scrollLeft 15s linear infinite;
    }
    
    .marquee-row:nth-child(even) {
        animation: scrollRight 15s linear infinite;
    }
    
    .gallery-item {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .left-to-right {
        animation: scrollLeft 8s linear infinite;
    }
    
    .right-to-left {
        animation: scrollRight 8s linear infinite;
    }
}
