/* Activities Details Page Styles */

/* Main content container */
.places-single-content-des {
    margin-bottom: 50px;
}

.places-single-content-des h2 {
    margin-bottom: 35px;
    font-size: 32px;
    line-height: 1.3;
}

/* Activity content styling */
.activity-content {
    line-height: 1.9;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.activity-content p {
    margin-bottom: 28px;
    text-align: justify;
    text-indent: 0;
    padding: 0 5px;
}

.activity-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    margin: 45px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff4a52;
    display: inline-block;
}

/* Key points styling */
.activity-key-points {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    border-radius: 12px;
    padding: 35px 40px;
    margin: 40px 0 45px 0;
    border-left: 5px solid #ff4a52;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.activity-key-points ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.activity-key-points li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    font-size: 16px;
    color: #444;
}

.activity-key-points li:last-child {
    margin-bottom: 0;
}

.activity-key-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff4a52;
    font-weight: bold;
    font-size: 18px;
    top: 2px;
}

/* Gallery styling */
.activity-gallery {
    margin: 30px 0 60px 0;
    padding: 0 10px;
}

.activity-gallery h3 {
    margin-bottom: 35px;
    color: #222;
    font-size: 30px;
    font-weight: 600;
    border-bottom: 4px solid #ff4a52;
    padding-bottom: 15px;
    display: inline-block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

/* Highlights section styling */
.package-highlights {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 45px 50px;
    margin: 50px 0 60px 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.package-highlights h3 {
    margin-bottom: 35px;
    color: #222;
    font-size: 30px;
    font-weight: 600;
    border-bottom: 4px solid #ff4a52;
    padding-bottom: 15px;
    display: inline-block;
}

.package-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-highlights li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    line-height: 1.8;
    font-size: 17px;
    color: #444;
}

.package-highlights li:last-child {
    margin-bottom: 0;
}

.package-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff4a52;
    font-weight: bold;
    font-size: 20px;
    top: 3px;
}

/* Safety section styling */
.safety-section {
    background: linear-gradient(135deg, #fff3f3 0%, #ffeaea 100%);
    border-radius: 12px;
    padding: 35px 40px;
    margin: 40px 0 45px 0;
    border-left: 5px solid #ff4a52;
    box-shadow: 0 4px 20px rgba(255, 74, 82, 0.1);
}

.safety-section h3 {
    color: #d63031;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.safety-section p {
    color: #444;
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    .places-single-content-des {
        margin-bottom: 40px;
    }

    .places-single-content-des h2 {
        margin-bottom: 25px;
        font-size: 28px;
    }

    .activity-content {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .activity-content p {
        margin-bottom: 25px;
        padding: 0;
    }

    .activity-content h3 {
        font-size: 24px;
        margin: 35px 0 20px 0;
        padding-bottom: 12px;
    }

    .activity-key-points {
        padding: 25px 20px;
        margin: 30px 0 35px 0;
    }

    .activity-key-points li {
        margin-bottom: 15px;
        padding-left: 25px;
        font-size: 15px;
    }

    .activity-gallery {
        margin: 25px 0 50px 0;
        padding: 0 5px;
    }

    .activity-gallery h3 {
        font-size: 26px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }

    .gallery-grid img {
        height: 220px;
        border-radius: 12px;
    }

    .package-highlights {
        padding: 30px 25px;
        margin: 40px 0 50px 0;
        border-radius: 12px;
    }

    .package-highlights h3 {
        font-size: 26px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .package-highlights li {
        margin-bottom: 18px;
        padding-left: 30px;
        font-size: 16px;
    }

    .safety-section {
        padding: 25px 20px;
        margin: 30px 0 35px 0;
    }

    .safety-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .safety-section p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .places-single-content-des h2 {
        font-size: 24px;
    }

    .activity-content {
        font-size: 15px;
    }

    .activity-content h3,
    .activity-gallery h3,
    .package-highlights h3 {
        font-size: 22px;
    }

    .activity-key-points,
    .package-highlights,
    .safety-section {
        margin-left: -5px;
        margin-right: -5px;
    }
}