/* Things To Do Page Styles */

/* Page-specific animations */
@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Page-specific header override */
.page-header p {
    font-style: italic;
}

/* Intro Section */
.intro-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-container p {
    color: #e8e6e3;
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

/* Activity Sections */
.activity-section {
    padding: 5rem 2rem;
}

.activity-section.light {
    background: #f4f1ed;
}

.activity-container {
    max-width: 1100px;
    margin: 0 auto;
}

.activity-header,
.further-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 1.75rem;
    color: #d4af37;
}

.activity-header h2,
.further-header h2 {
    color: #1a1d28;
    font-size: 2rem;
    margin: 0;
}

.activity-content p {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.activity-content h3 {
    color: #1a1d28;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* Walks Grid */
.walks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.walk-card {
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.walk-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.5);
}

.walk-card h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.walk-card p {
    color: #a8a5a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.walk-card.has-image {
    padding: 0;
    overflow: hidden;
}

.walk-card.has-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.3s ease;
}

.walk-card.has-image:hover img {
    transform: scale(1.05);
}

.walk-card.has-image h4,
.walk-card.has-image p {
    padding: 0 1.25rem;
}

.walk-card.has-image h4 {
    padding-top: 1rem;
}

.walk-card.has-image p {
    padding-bottom: 1.25rem;
}

/* Attractions Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.attraction-card {
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.attraction-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover img {
    transform: scale(1.05);
}

.attraction-card h4 {
    color: #d4af37;
    font-size: 1.1rem;
    padding: 1rem 1.25rem 0.5rem;
    margin: 0;
}

.attraction-card p {
    color: #a8a5a0;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1.25rem 1.25rem;
    margin: 0;
}

.activity-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #5a5a5a !important;
    margin-bottom: 0 !important;
}

.activity-note i {
    font-size: 1.25rem;
    color: #d4af37;
}

/* Landmarks Section */
.landmarks-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
}

.landmarks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.landmark-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.landmark-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.landmark-card.has-image {
    padding: 0;
}

.landmark-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.landmark-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.landmark-card:hover .landmark-image img {
    transform: scale(1.05);
}

.landmark-content {
    padding: 1.75rem;
}

.landmark-card h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.landmark-card p {
    color: #c5c3c0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.landmark-card p:last-child {
    margin-bottom: 0;
}

.landmark-highlight {
    color: #e8e6e3 !important;
    font-style: italic;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.amenity-card {
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
}

.amenity-card.has-image {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.amenity-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.05);
}

.amenity-card.has-image .amenity-content {
    padding: 1.5rem;
}

.amenity-content h3 {
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.amenity-content p {
    color: #a8a5a0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Wildlife Section */
.wildlife-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #252836 0%, #1a1d28 100%);
}

.wildlife-container {
    max-width: 1100px;
    margin: 0 auto;
}

.wildlife-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.wildlife-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wildlife-icon i {
    font-size: 1.75rem;
    color: #d4af37;
}

.wildlife-header h2 {
    color: #d4af37;
    font-size: 2rem;
    margin: 0;
}

.wildlife-intro {
    color: #e8e6e3;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.wildlife-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.wildlife-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.wildlife-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.wildlife-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.wildlife-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wildlife-card:hover .wildlife-card-image img {
    transform: scale(1.05);
}

.wildlife-card-content {
    padding: 1.25rem;
}

.wildlife-card-content h3 {
    color: #d4af37;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.wildlife-card-content p {
    color: #a8a5a0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.wildlife-tip {
    background: rgba(74, 124, 89, 0.15);
    border: 1px solid rgba(74, 124, 89, 0.3);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.wildlife-tip i {
    font-size: 1.5rem;
    color: #6b9e7a;
    flex-shrink: 0;
}

.wildlife-tip {
    color: #e8e6e3;
    font-size: 0.95rem;
}

/* Dark Skies Section */
.darkskies-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #050508 0%, #0a0c12 30%, #0d0f14 60%, #1a1d28 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Stars container */
.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.star.twinkle {
    animation: starTwinkle var(--twinkle-duration, 3s) ease-in-out infinite;
    animation-delay: var(--twinkle-delay, 0s);
}

@keyframes starTwinkle {
    0%, 100% { 
        opacity: var(--base-opacity, 0.3);
    }
    50% { 
        opacity: 1;
    }
}

/* Background image */
.darkskies-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.darkskies-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

/* Subtle glow in center */
.darkskies-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.darkskies-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.stars-decoration {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stars-decoration i {
    color: #d4af37;
    font-size: 1rem;
    animation: twinkle 3s ease-in-out infinite;
}

.stars-decoration i:nth-child(1) { animation-delay: 0s; font-size: 0.6rem; }
.stars-decoration i:nth-child(2) { animation-delay: 0.5s; font-size: 1rem; }
.stars-decoration i:nth-child(3) { animation-delay: 1s; font-size: 1.25rem; }
.stars-decoration i:nth-child(4) { animation-delay: 0.3s; font-size: 0.8rem; }
.stars-decoration i:nth-child(5) { animation-delay: 0.8s; font-size: 0.5rem; }

.darkskies-container h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.darkskies-container p {
    color: #c5c3c0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.darkskies-cta {
    color: #d4af37 !important;
    font-style: italic;
    font-size: 1.15rem !important;
}

/* Further Afield */
.further-content > p {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.destinations-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 700px;
}

.destinations-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2d2d2d;
    font-size: 1.05rem;
    padding: 0.5rem 0;
}

.destinations-list li i {
    color: #d4af37;
    font-size: 1rem;
    flex-shrink: 0;
}

.further-note {
    color: #5a5a5a;
    font-size: 1.05rem;
    font-style: italic;
    margin: 2.5rem 0 0 0;
}

/* Responsive */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .walks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landmarks-container {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .wildlife-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .activity-header,
    .further-header,
    .wildlife-header {
        flex-direction: column;
        text-align: center;
    }

    .activity-header h2,
    .further-header h2 {
        font-size: 1.75rem;
    }

    .landmark-image {
        height: 160px;
    }

    .amenity-image {
        height: 150px;
    }

    .wildlife-card-image {
        height: 150px;
    }

    .activity-note,
    .wildlife-tip {
        flex-direction: column;
        text-align: center;
    }

    .destinations-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .walks-grid {
        grid-template-columns: 1fr;
    }

    .wildlife-gallery {
        grid-template-columns: 1fr;
    }

    .destinations-list li {
        font-size: 1rem;
    }

    .explore-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================
   Explore Gallery Section
   ================================ */

.explore-gallery-section {
    padding: 2rem 2rem 4rem;
    background: transparent;
}

.explore-gallery-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #252836;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.explore-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.explore-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.explore-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.explore-gallery-item:hover img {
    transform: scale(1.08);
}

@media screen and (max-width: 1024px) {
    .explore-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .explore-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .explore-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
