/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0 0px; 
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}


















/*  button_1 design */
.custom-button {
    display: inline-block; /* Essential for padding on <a> tags */
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-button1 {
    background-color: #a0260d;
    color: #000000;
    border: 2px solid #ffffff;
}

.custom-button1:hover {
    background-color: #ffffff;
    border-color: #000000;
    color: #a0260d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.custom-button2 {
    background-color: #000000;
    border: 2px solid #eb9e02;
    color: #ffffff;
}

.custom-button2:hover {
    background: #eb9e02;
    color: #000000;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
}




















/* Upcoming Events Slider Styles */
.ecotours_destination_examples_section {
    padding: 80px 5%;
    background-color: #f5f5f5;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.ecotours_tagline{
    margin-bottom: 10px;
}
.ecotours_destination_examples_title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.ecotours_destination_examples_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecotours_destination_examples_card {
    background: #fff;
    text-align: left;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.ecotours_destination_examples_card:hover {
    transform: translateY(-5px);
}

.ecotours_destination_examples_image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.ecotours_destination_examples_content {
    padding: 25px;
}

.ecotours_destination_examples_tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.ecotours_destination_examples_content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ecotours_destination_examples_meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.ecotours_destination_examples_author{
    font-size: 17px;
    color: #555;
    line-height: 24px;
}

.ecotours_destination_examples_meta i {
    margin-right: 5px;
}

/* Mobile View */
@media (max-width: 992px) {
    .ecotours_destination_examples_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ecotours_destination_examples_grid {
        grid-template-columns: 1fr;
    }
}