/* ==========================================
DISCOVER
========================================== */

.discover {

    padding: 120px 0;

    background: #fff;

}

.section-tag {

    display: inline-block;

    background: #E8F7EC;

    color: #0D6B3C;

    padding: 10px 22px;

    border-radius: 999px;

    font-weight: 700;

    margin-bottom: 20px;

}

.discover h2 {

    font-size: 48px;

    margin-bottom: 20px;

}

.section-description {

    max-width: 700px;

    line-height: 1.8;

    color: #666;

    margin-bottom: 60px;

}

.discover-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.discover-card {

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s;

}

.discover-card:hover {

    transform: translateY(-10px);

}

.discover-card img {

    width: 100%;

    height: 240px;

    object-fit: cover;

}

.card-content {

    padding: 28px;

}

.card-content h3 {

    font-size: 26px;

    margin-bottom: 15px;

}

.card-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 20px;

}

.card-content a {

    text-decoration: none;

    font-weight: 700;

    color: #0D6B3C;

}

@media(max-width:1100px) {

    .discover-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .discover-grid {

        grid-template-columns: 1fr;

    }

    .discover h2 {

        font-size: 36px;

    }

}

/* ==========================================
ACTIVITIES
========================================== */

.activities {

    padding: 120px 0;

    background: #f8faf8;

}

.section-header {

    text-align: center;

    margin-bottom: 60px;

}

.section-header h2 {

    font-size: 48px;

    margin: 20px 0;

}

.section-header p {

    max-width: 700px;

    margin: auto;

    color: #666;

    line-height: 1.8;

}

.activities-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    grid-auto-rows: 280px;

    gap: 25px;

}

.activity {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.activity.large {

    grid-row: span 2;

}

.activity img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.activity:hover img {

    transform: scale(1.08);

}

.activity-content {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 30px;

    color: white;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .8));

}

.activity-content span {

    display: inline-block;

    background: #39b54a;

    padding: 6px 12px;

    border-radius: 999px;

    margin-bottom: 12px;

    font-size: 13px;

}

.activity-content h3 {

    font-size: 34px;

    margin-bottom: 10px;

}

.activity-content p {

    margin-bottom: 20px;

}

.activity-content a {

    color: white;

    text-decoration: none;

    font-weight: 700;

}

@media(max-width:1100px) {

    .activities-grid {

        grid-template-columns: 1fr 1fr;

    }

    .activity.large {

        grid-row: auto;

    }

}

@media(max-width:768px) {

    .activities-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

    }

}

/* ==========================================
TICKETS
========================================== */

.tickets {

    padding: 120px 0;

    background: #ffffff;

}

.ticket-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

.ticket-card {

    background: #fff;

    border-radius: 24px;

    padding: 40px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .35s;

    position: relative;

}

.ticket-card:hover {

    transform: translateY(-10px);

}

.ticket-card.featured {

    border: 3px solid #ff8c1a;

    transform: scale(1.05);

}

.popular {

    position: absolute;

    top: -14px;

    right: 25px;

    background: #ff8c1a;

    color: white;

    padding: 8px 18px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

}

.ticket-card h3 {

    font-size: 32px;

    margin-bottom: 20px;

}

.price {

    font-size: 22px;

    margin-bottom: 30px;

}

.price strong {

    font-size: 42px;

    color: #0D6B3C;

}

.ticket-card ul {

    list-style: none;

    margin-bottom: 35px;

}

.ticket-card li {

    margin-bottom: 16px;

}

.ticket-btn-green,
.ticket-btn-orange {

    display: block;

    text-align: center;

    padding: 16px;

    border-radius: 999px;

    text-decoration: none;

    color: white;

    font-weight: 700;

}

.ticket-btn-green {

    background: #39b54a;

}

.ticket-btn-orange {

    background: #ff8c1a;

}

.ticket-btn-green:hover {

    background: #2fa042;

}

.ticket-btn-orange:hover {

    background: #ef7c00;

}

@media(max-width:1000px) {

    .ticket-grid {

        grid-template-columns: 1fr;

    }

    .ticket-card.featured {

        transform: none;

    }

}

/* ==========================================
TIMELINE
========================================== */

.timeline {

    padding: 120px 0;

    background: #F8FAF8;

}

.timeline-wrapper {

    max-width: 900px;

    margin: 70px auto 0;

    position: relative;

}

.timeline-wrapper::before {

    content: "";

    position: absolute;

    left: 45px;

    top: 0;

    bottom: 0;

    width: 4px;

    background: #39b54a;

}

.timeline-item {

    display: flex;

    gap: 30px;

    margin-bottom: 50px;

    position: relative;

}

.timeline-time {

    width: 70px;

    font-weight: 700;

    color: #0D6B3C;

}

.timeline-icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #39b54a;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    position: relative;

    z-index: 2;

}

.timeline-content {

    background: white;

    padding: 25px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    flex: 1;

}

.timeline-content h3 {

    margin-bottom: 10px;

    font-size: 24px;

}

.timeline-content p {

    color: #666;

    line-height: 1.7;

}

@media(max-width:768px) {

    .timeline-wrapper::before {

        left: 24px;

    }

    .timeline-item {

        flex-direction: column;

        padding-left: 15px;

    }

    .timeline-time {

        width: auto;

    }

}

/* ==========================================
PLATTEGROND
========================================== */

.map-section {

    padding: 120px 0;

    background: white;

}

.map-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 50px;

    align-items: center;

    margin-top: 60px;

}

.park-map {

    background: white;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.park-map img {

    width: 100%;

    display: block;

}

.map-info {

    background: #F8FAF8;

    padding: 40px;

    border-radius: 24px;

}

.map-info h3 {

    font-size: 32px;

    margin-bottom: 30px;

}

.map-info ul {

    list-style: none;

    margin-bottom: 40px;

}

.map-info li {

    padding: 14px 0;

    font-size: 18px;

    border-bottom: 1px solid #e8e8e8;

}

@media(max-width:1000px) {

    .map-grid {

        grid-template-columns: 1fr;

    }

}

/* ==========================================
FOTOGALERIJ
========================================== */

.gallery {

    padding: 120px 0;

    background: #f8faf8;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 260px;

    gap: 20px;

    margin-top: 60px;

}

.gallery-item {

    overflow: hidden;

    border-radius: 24px;

    display: block;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.gallery-item.large {

    grid-column: span 2;

    grid-row: span 2;

}

.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

@media(max-width:900px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-item.large {

        grid-column: span 2;

        grid-row: span 1;

    }

}

@media(max-width:700px) {

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 240px;

    }

    .gallery-item.large {

        grid-column: span 1;

    }

}

/* ==========================================
REVIEWS
========================================== */

.reviews {

    padding: 120px 0;

    background: white;

}

.reviews-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.review-card {

    background: #F8FAF8;

    padding: 35px;

    border-radius: 24px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .35s;

}

.review-card:hover {

    transform: translateY(-8px);

}

.review-header {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}

.review-header img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

}

.review-header h3 {

    margin-bottom: 6px;

}

.review-card p {

    line-height: 1.8;

    color: #666;

}

.review-score {

    margin-top: 80px;

    text-align: center;

}

.review-score h2 {

    font-size: 54px;

    margin: 15px 0;

    color: #0D6B3C;

}

@media(max-width:1000px) {

    .reviews-grid {

        grid-template-columns: 1fr;

    }

}

/* ==========================================
FAQ
========================================== */

.faq {

    padding: 120px 0;

    background: #F8FAF8;

}

.faq-wrapper {

    max-width: 900px;

    margin: 60px auto 0;

}

.faq-item {

    background: white;

    border-radius: 18px;

    margin-bottom: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.faq-question {

    width: 100%;

    border: none;

    background: none;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 30px;

    font-size: 20px;

    font-weight: 700;

}

.faq-question span {

    font-size: 30px;

    color: #0D6B3C;

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;

}

.faq-answer p {

    padding: 0 30px 25px;

    color: #666;

    line-height: 1.8;

}

.faq-item.active .faq-answer {

    max-height: 200px;

}

/* ==========================================
CONTACT
========================================== */

.contact {

    padding: 120px 0;

    background: white;

}

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.contact-info h2 {

    font-size: 48px;

    margin: 20px 0;

}

.contact-info p {

    line-height: 1.8;

    margin-bottom: 30px;

}

.contact-info ul {

    list-style: none;

    margin-bottom: 35px;

}

.contact-info li {

    padding: 12px 0;

    font-size: 18px;

}

.contact-map img {

    width: 100%;

    border-radius: 24px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);

}

/* ==========================================
FOOTER
========================================== */

.footer {

    background: #0D6B3C;

    color: white;

    padding: 80px 0 30px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    margin-bottom: 50px;

}

.footer-logo {

    height: 70px;

    margin-bottom: 20px;

}

.footer h4 {

    margin-bottom: 20px;

}

.footer ul {

    list-style: none;

}

.footer li {

    margin-bottom: 12px;

}

.footer a {

    color: white;

    text-decoration: none;

}

.footer-social {

    display: flex;

    gap: 15px;

}

.footer-social img {

    width: 24px;

    filter: brightness(0) invert(1);

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .15);

    padding-top: 25px;

    text-align: center;

    opacity: .8;

}

@media(max-width:900px) {

    .contact-grid,
    .footer-grid {

        grid-template-columns: 1fr;

    }

    .contact-info {

        text-align: center;

    }

}