/* Activities page specific styles */

.activities-main {
    padding-top: 0; /* Remove navbar padding */
}

/* Hero section */
.activities-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('images/placeholder-hero.svg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.activities-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.activities-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Activities grid */
.activities-grid {
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

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

.activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-overlay {
    transform: translateY(0);
}

.activity-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.activity-details {
    padding: 1.5rem;
}

.activity-details h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.activity-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.activity-details ul li {
    margin-bottom: 0.5rem;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.activity-details ul li::before {
    content: '•';
    color: #e67e22;
    position: absolute;
    left: 0;
}

.activity-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.activity-button:hover {
    background-color: #34495e;
}

/* Safety section */
.safety-section {
    background-color: #f9f9f9;
    padding: 4rem 10%;
}

.safety-content {
    text-align: center;
}

.safety-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.safety-feature {
    padding: 2rem;
    text-align: center;
}

.safety-feature i {
    font-size: 2.5rem;
    color: #e67e22;
    margin-bottom: 1rem;
}

.safety-feature h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.safety-feature p {
    color: #666;
}

/* Booking CTA section */
.booking-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('placeholder-hero.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 10%;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .activities-hero h1 {
        font-size: 2.5rem;
    }

    .activities-hero p {
        font-size: 1rem;
    }

    .safety-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .safety-feature {
        padding: 1rem;
    }

    .booking-cta {
        padding: 3rem 5%;
    }
}