/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACTIVITIES & EXCURSIONS PAGE STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Hero Section */
.activities-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.activities-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.7) 0%, rgba(26, 58, 82, 0.6) 100%);
}

.activities-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Introduction Section */
.activities-intro {
    padding: 5rem 0;
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

/* Activities Sections */
.activities-section {
    padding: 5rem 0;
}

.activities-section:nth-child(even) {
    background: var(--sand);
}

.activities-section:nth-child(odd) {
    background: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

/* Boat Trips Grid - 2 columns */
.boat-trips-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Tours Grid - 3 columns */
.tours-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Activity Card */
.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.activity-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.activity-card.featured .activity-image {
    height: 100%;
}

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

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

.activity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-content {
    padding: 2rem;
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.activity-icon svg {
    width: 24px;
    height: 24px;
}

.activity-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.activity-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

/* Activity Highlights */
.activity-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.activity-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--warm-gray);
}

.activity-highlights li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Activity Footer */
.activity-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.activity-duration {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ocean-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rentals Section */
.rentals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rentals-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rentals-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.rentals-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

/* Rental Options */
.rental-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rental-option {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--sand);
    border-radius: 8px;
}

.rental-icon {
    width: 50px;
    height: 50px;
    background: var(--ocean-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.rental-icon svg {
    width: 24px;
    height: 24px;
}

.rental-option h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.rental-option p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--warm-gray);
    margin: 0;
}

/* Rental Benefits */
.rental-benefits {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    margin-bottom: 2rem;
}

.rental-benefits h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.rental-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.rental-benefits li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--warm-gray);
}

.rental-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Beaches Grid */
.beaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.beach-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.beach-image {
    height: 200px;
    overflow: hidden;
}

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

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

.beach-content {
    padding: 1.5rem;
}

.beach-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 0.75rem;
}

.beach-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--warm-gray);
    margin-bottom: 1rem;
}

.beach-distance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ocean-blue);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.beach-distance svg {
    width: 18px;
    height: 18px;
}

/* CTA Section */
.activities-cta {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--ocean-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gold);
    color: white;
}

.btn-secondary:hover {
    background: #B89557;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--deep-blue);
}

.btn-white:hover {
    background: var(--sand);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--deep-blue);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE DESIGN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: 1fr;
    }

    /* Boat trips stay 2 columns on tablet */
    .boat-trips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tours become 2 columns on tablet */
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .activity-card.featured {
        grid-template-columns: 1fr;
    }

    .activity-card.featured .activity-image {
        height: 300px;
    }

    .rentals-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .beaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-benefits ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .activities-hero {
        height: 60vh;
        min-height: 400px;
    }

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

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

    .activities-section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .activity-image {
        height: 220px;
    }

    /* All grids become single column on mobile */
    .boat-trips-grid,
    .tours-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .activities-cta {
        padding: 3rem 0;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .activity-content {
        padding: 1.5rem;
    }

    .activity-content h3 {
        font-size: 1.25rem;
    }

    .rentals-text h3 {
        font-size: 1.5rem;
    }
}
