/* Adventures Page Specific Styles */

/* Hero Section */
.adventures-hero {
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #d7d3c5;
    color: #53543f;
    padding: 100px 20px;
}

.adventures-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.adventures-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #53543f;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.adventures-hero-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* Dynamic Content Section */
.adventures-content-section {
    background: white;
    padding: 60px 0;
    min-height: 400px;
}

.adventures-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.adventures-empty-state h2 {
    color: #666;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.adventures-empty-state p {
    color: #999;
    font-size: 1.1rem;
}

.adventures-empty-state .upload-link {
    display: inline-block;
    margin-top: 20px;
    color: #53543f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.adventures-empty-state .upload-link:hover {
    color: #8b8d7a;
}

/* Footer styling for Adventures page */
.adventures-page .footer {
    background-color: #d7d3c5 !important;
    color: #53543f;
}

.adventures-page .footer-section h3 {
    color: #53543f !important;
}

.adventures-page .footer-links {
    list-style: none !important;
    padding-left: 0 !important;
}

.adventures-page .footer-links a {
    color: #5a5a5a !important;
}

.adventures-page .footer-links a:hover {
    color: #53543f !important;
}

.adventures-page .footer-bottom {
    border-top-color: #bdb9ad !important;
}

.adventures-page .footer-bottom p {
    color: #8b8d7a !important;
}

.adventures-page .social-link {
    color: #5a5a5a !important;
}

.adventures-page .social-link:hover {
    color: #53543f !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .adventures-hero {
        padding: 60px 20px;
    }
    
    .adventures-hero-title {
        font-size: 2rem;
    }
    
    .adventures-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .adventures-content-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .adventures-hero-title {
        font-size: 1.75rem;
    }
    
    .adventures-hero-subtitle {
        font-size: 1rem;
    }
}
