/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #252422;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.destinations-section {
    padding: 60px 0;
    background-color: #252422;
background: url("/assests/image/Contact_us.jpg") no-repeat center center / cover;

}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #eb5e28;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-title {
    font-weight: 500;
    color: #fffcf2 !important;
}

.header-link {
    color: #eb5e28;
    text-decoration: none;
    font-weight: normal;
    font-size: 1rem;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #fffcf2;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.destination-card {
    /* background: #fffcf2; */
    border-radius: 5px;
    overflow: hidden;
    /* box-shadow: 0 4px 8px rgba(255, 255, 255, 0.445); */
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(235, 94, 40, 0.1); */
     background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    color: #fffcf2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1rem;
    text-align: center;
    padding: 0 10px;
}

.card-content {
    padding: 25px;
    display: flex;
    height: 200 !important;
    justify-content: space-between;
    align-items: center;
    background: #fffcf2 !important;

}

.content-left {
    display: flex;
    align-items: center;
}

.content-left i {
    color: #eb5e28;
    font-size: 1.2rem;
    margin-right: 8px;
}

.content-left h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #252422;
}

.tours {
    color: #403d39;
    font-size: 0.9rem;
}

.view-all-button {
    text-align: center;
}

.btn {
    display: block;
    /* background: linear-gradient(135deg, #eb5e28, #bc4b20); */
    /* background: #403d39; */
    background: #eb5e28;
    color: #fffcf2;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    margin-top: 70px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(149, 148, 148, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #eb5e28;
    transform: translateY(-2px);
    color: #fffcf2;
    box-shadow: 0 6px 20px rgba(161, 161, 161, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .header-link {
        font-size: 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .card-image {
        height: 150px;
    }
    
    .overlay h3 {
        font-size: 1.2rem;
    }
    
    .overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .destinations-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .header-link {
        font-size: 0.9rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-image {
        height: 200px;
    }
}