@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap');
body {
    font-family: 'EB Garamond', serif;
    color: #202731;
}
*{
    font-family: 'EB Garamond', serif;
}
  .banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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



.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-text h1 {

    font-size: 64px;
    font-weight:500;
   animation: slideUp 1s ease forwards;
    color: white;
}

footer {
    background: linear-gradient(to bottom, #202731, #2a3a2e); /* Black-greenish gradient */
    color: #fff;
    font-family: 'EB Garamond', serif;
    padding: 3rem 0;
    margin-top: 90px;
    position: relative;
    font-size: 17px;
    font-weight: 650;

}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer .navbar-brand h1 {
    font-size: 2rem;
    margin: 0;
    font-family: 'EB Garamond', serif;
}

footer .navbar-brand .text-primary {
    color: #54A15D;
}

footer .navbar-brand .text-white {
    color: #fff;
}

footer p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'EB Garamond', serif;
}

footer h5 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 5px;
    font-family: 'EB Garamond', serif;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'EB Garamond', serif;
}

footer a:hover {
    color: #54A15D;
}

footer .btn-outline-primary {
    border-color: #54A15D;
    color: #54A15D;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'EB Garamond', serif;
}

footer .btn-outline-primary:hover {
    background-color: #54A15D;
    color: #fff;
    border-color: #54A15D;
}

footer .btn-outline-primary i {
    font-size: 1.2rem;
}

footer .text-white-50 {
    color: #ccc;
    font-family: 'EB Garamond', serif;
}

footer .fa-angle-right {
    color: #54A15D;
    margin-right: 0.5rem;
}

footer i.fa-map-marker-alt, footer i.fa-phone-alt, footer i.fa-envelope {
    color: #54A15D;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer .row {
        flex-direction: column;
        text-align: center;
    }
    footer .col-md-6, footer .col-lg-3 {
        margin-bottom: 2rem;
    }
    footer .d-flex {
        justify-content: center;
    }
    footer .btn-outline-primary {
        margin: 0 0.5rem;
    }
}
.stat-circle {
    background-color: #54A15D;
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    font-family: 'EB Garamond', serif;
}

.stat-circle:hover {
    transform: rotate(360deg);
}

.stat-label {
    font-size: 0.9rem;
    color: #202731;
    font-family: 'EB Garamond', serif;
}

/* Tours Section */
.package-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.package-item:hover {
    box-shadow: 0 4px 8px rgba(32, 39, 49, 0.2);
}

.package-item .h5 {
    color: #202731;
    font-family: 'EB Garamond', serif;
}

.package-item .h5:hover {
    color: #54A15D;
}

.package-item small {
    color: #555;
    font-family: 'EB Garamond', serif;
}

/* Business & Books Sliders */
.business-item, .book-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.business-item:hover, .book-item:hover {
    transform: scale(1.05);
}

.slider-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-image:hover {
    transform: scale(1.1);
}

.business-overlay, .book-overlay {
    background: rgba(32, 39, 49, 0.7); /* Updated to #202731 */
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'EB Garamond', serif;
}

.business-item:hover .business-overlay, .book-item:hover .book-overlay {
    opacity: 1;
}

.business-overlay h5, .book-overlay h5 {
    color: #fff;
    font-family: 'EB Garamond', serif;
}

.business-description, .book-description {
    color: #fff;
    font-family: 'EB Garamond', serif;
}

/* Buttons */
.btn-primary, .custom-btn {
    background-color: #54A15D;
    border-color: #54A15D;
    color: #fff;
    font-family: 'EB Garamond', serif;
}

.btn-primary:hover, .custom-btn:hover {
    background-color: #202731;
    border-color: #202731;
    color: #fff;
}

/* Inline styles fix */
.d-inline-flex p {
    color: #202731;
    font-family: 'EB Garamond', serif;
}