/* Activity Page Styles
   Extended styles for individual activity pages
   Supplements the main adventure-guide styles.css
*/

/* ==================== Activity Hero ==================== */
.activity-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.activity-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== Activity Info Section ==================== */
.activity-info-section {
    background: white;
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info {
    margin-bottom: 1rem;
}

.location-text {
    background: #1f5f3d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #1f5f3d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Quick Stats ==================== */
.quick-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 2px solid #e5e5e5;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f5f3d;
}

/* ==================== Activity Content ==================== */
.activity-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* ==================== Verdict Box ==================== */
.verdict-box {
    background: linear-gradient(135deg, #2d5016 0%, #1a3008 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 5px solid #d4790e;
}

.verdict-box h2 {
    font-family: 'Oswald', sans-serif;
    color: #d4790e;
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
}

.verdict-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.verdict-item h3 {
    font-size: 1rem;
    color: #d4790e;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verdict-item p {
    margin: 0;
    line-height: 1.6;
}

/* ==================== Quick Facts Grid ==================== */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.fact-card {
    background: white;
    border-left: 3px solid #1f5f3d;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.fact-card h4 {
    color: #1f5f3d;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.75rem 0;
}

.fact-card p {
    margin: 0;
    line-height: 1.6;
    color: #2c3e2c;
}

/* ==================== Callout and Insider Boxes ==================== */
.callout-box {
    background: #fff8f0;
    border-left: 4px solid #d4790e;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.insider-box {
    background: linear-gradient(135deg, #fef9f0 0%, #fff8f0 100%);
    border: 2px solid #d4790e;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.insider-box h3 {
    color: #d4790e;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
}

/* ==================== Price Table ==================== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.price-table th {
    background: #1f5f3d;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.price-table tr:hover {
    background: #f9f9f9;
}

/* ==================== Info Panel ==================== */
.info-panel {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-panel h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #1f5f3d;
    margin: 0 0 1.5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.05rem;
    color: #1f5f3d;
    font-weight: 500;
}

/* ==================== Gallery Images ==================== */
.gallery-image {
    width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.gallery-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ==================== Related Activities ==================== */
.related-activities {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #ddd;
}

.related-activities h2 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #1f5f3d;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.related-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #1f5f3d;
    margin: 0;
    padding: 1.25rem;
}

/* ==================== Footer for Activity Pages ==================== */
.footer {
    background: #2c3e2c;
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    text-align: center;
    margin-top: 0;
}

.footer a {
    color: #d4790e;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== Activity Page Responsive ==================== */
@media (max-width: 768px) {
    .activity-hero {
        height: 350px;
    }

    .activity-title {
        font-size: 2rem;
    }

    .quick-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .verdict-grid {
        grid-template-columns: 1fr;
    }

    .activity-content {
        padding: 2rem 1rem;
    }

    .activity-info-section {
        padding: 2rem 1.25rem;
    }
}

/* ==================== Hero Section ==================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(31, 95, 61, 0.9) 0%, rgba(31, 95, 61, 0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: rgba(212, 121, 14, 0.9);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== Container ==================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== Intro Section ==================== */
.intro-section {
    background: #ffffff;
    padding: 3rem 2rem;
}

.intro-section .container {
    max-width: 900px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1f5f3d;
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 4px solid #d4790e;
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

/* ==================== Verdict Section ==================== */
.verdict-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #1f5f3d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #d4790e;
}

.verdict-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.verdict-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(31, 95, 61, 0.1);
    border-top: 4px solid #1f5f3d;
}

.verdict-card.warning {
    border-top-color: #d4790e;
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.verdict-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #1f5f3d;
    margin-bottom: 1.25rem;
}

.verdict-card.warning h3 {
    color: #a85d00;
}

.verdict-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verdict-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    line-height: 1.6;
}

.verdict-card li:last-child {
    border-bottom: none;
}

.verdict-card li strong {
    color: #1f5f3d;
}

/* ==================== Facts Section ==================== */
.facts-section {
    background: #ffffff;
    padding: 3rem 2rem;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.data-table th,
.data-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.data-table th {
    background: #1f5f3d;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.data-table tr:hover {
    background: #f8f9fa;
}

.data-table td strong {
    color: #1f5f3d;
}

/* ==================== Content Section (Activity Pages) ==================== */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #1f5f3d;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #d4790e;
}

.content-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #1f5f3d;
    margin: 2rem 0 1rem 0;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul {
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.content-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #1f5f3d;
    margin-bottom: 1rem;
}

.content-block p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ==================== Logistics Section ==================== */
.logistics-section {
    background: #ffffff;
    padding: 3rem 2rem;
}

.logistics-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #d4790e;
    border-radius: 0 8px 8px 0;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logistics-card:last-child {
    margin-bottom: 0;
}

.logistics-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #1f5f3d;
    margin-bottom: 0.75rem;
}

.logistics-card p {
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================== Combos Section ==================== */
.combos-section {
    background: linear-gradient(135deg, #1f5f3d 0%, #2d5016 100%);
    padding: 3rem 2rem;
}

.combos-section .section-title {
    color: #ffffff;
    border-bottom-color: #d4790e;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.combo-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.combo-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #d4790e;
    margin-bottom: 1rem;
}

.combo-card p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.combo-card a {
    color: #1f5f3d;
    text-decoration: underline;
    font-weight: 500;
}

.combo-card a:hover {
    color: #d4790e;
}

/* ==================== Footer ==================== */
.site-footer {
    background: #2c3e2c;
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    text-align: center;
    margin-top: 0;
}

.site-footer a {
    color: #d4790e;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.85rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .verdict-grid,
    .combo-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.25rem;
    }

    .intro-section,
    .verdict-section,
    .facts-section,
    .content-section,
    .logistics-section,
    .combos-section {
        padding: 2rem 1.25rem;
    }
}