html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #fff;
    color: #333;
}

main {
    flex: 1 0 auto;
    padding-bottom: 120px;
}

.footer {
    flex-shrink: 0;
}

html, body, main, .container {
    background-color: #fff !important;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: #0d6efd !important;
    }

.hero-section {
    padding: 4rem 0 3rem;
}

.hero-content h1 {
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.hero-content .lead {
    font-weight: 400;
}

.btn-minimal {
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn-minimal:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.steps-section .step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0d6efd;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -0.5rem;
}

.steps-section h5 {
    margin-top: 0;
    font-weight: 600;
}

.attraction-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .attraction-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    }

    .attraction-card .card-img-top {
        transition: transform 0.4s ease;
    }

    .attraction-card:hover .card-img-top {
        transform: scale(1.03);
    }

.feature-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    padding: 2rem 1.5rem;
}

    .feature-section .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
    }

.feature-icon {
    color: #0d6efd;
}

.carousel-item {
    background-color: transparent;
}

    .carousel-item img {
        width: 100%;
        aspect-ratio: 2.5 / 1;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.4s ease;
    }

    .carousel-item:hover img {
        transform: scale(1.01);
    }

.carousel-caption {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem;
    border-radius: 0 0 8px 8px;
}

.carousel-item:hover .carousel-caption {
    opacity: 1;
    transform: translateY(0);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0d6efd;
    opacity: 0.5;
    border: none;
}

    .carousel-indicators button.active {
        opacity: 1;
        background-color: #0d6efd;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    padding: 1.5rem;
}

.rating-stars {
    unicode-bidi: bidi-override;
    direction: rtl;
    text-align: left;
    display: inline-block;
    font-size: 0;
}

    .rating-stars input[type="radio"] {
        display: none !important;
    }

    .rating-stars label {
        font-size: 1.8rem;
        color: #ddd;
        cursor: pointer;
        transition: color 0.2s;
        display: inline-block;
    }

        .rating-stars input[type="radio"]:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #f5b301 !important;
        }

#route-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 8px 16px;
    display: inline-block;
    margin-top: 8px;
    font-weight: 500;
}

#weather-widget {
    background-color: #f8f9fa !important;
    color: #212529 !important;
    border-radius: 8px;
    padding: 8px 16px;
    display: inline-block;
    margin-top: 8px;
    font-weight: 500;
}

h1, h2, h4, .fw-light {
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.5px;
}

h5 {
    font-weight: 600;
}

.manage-page {
    text-align: center;
}

.about-section ul, .about-section ol {
    line-height: 1.8;
}

.gallery-section img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .gallery-section img:hover {
        transform: scale(1.03);
    }
.centered-form {
    max-width: 500px;
    margin: 0 auto;
}