/*
  Vibrant Redesign for the Home Section
  Colors inspired by Odisha's art, nature, and spirituality.
  - Saffron/Orange: #FF9933
  - Rich Red: #D63031
  - Ocean Blue: #0984E3
  - Gold: #FFD700
*/

/* Hero Section Redesign */
#home .hero {
    /* Best with a real image: background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/your-odisha-hero-image.jpg'); */
    background: linear-gradient(135deg, rgba(2, 48, 71, 0.8), rgba(255, 183, 3, 0.7)),
                radial-gradient(circle at top right, #fb8500, transparent 60%),
                radial-gradient(circle at bottom left, #219ebc, transparent 50%);
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white, #f8f9fa);
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

#home .hero-content {
    max-width: 800px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#home .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

#home .hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    opacity: 0.95;
}

/* Search Container Redesign */
#home .search-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#home .search-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

#home .search-field,
#home .date-field {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    flex: 1;
}

#home .search-field::placeholder,
#home .date-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#home .search-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

#home .search-btn {
    background: #FF9933; /* Vibrant Saffron/Orange */
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    width: 55px;
    height: 55px;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.4);
}

#home .search-btn:hover {
    background: #fb8500;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 133, 0, 0.5);
}

/* Features Section Redesign */
#home .features {
    padding: 6rem 2rem;
    background-color: #fdfcfa; /* A very light cream, off-white */
}

#home .features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

#home .feature {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, #FF9933, #D63031) 1;
}

#home .feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#home .feature-icon {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF9933, #D63031);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#home .feature h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--forest-green, #2a403d);
    margin-bottom: 0.75rem;
}

#home .feature p {
    color: var(--text-light, #555);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive adjustments for the new design */
@media (max-width: 768px) {
    #home .hero {
        height: auto;
        min-height: 80vh;
        padding: 8rem 1rem 4rem 1rem;
    }

    #home .search-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(0, 0, 0, 0.2);
    }

    #home .search-field,
    #home .date-field {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }

    #home .search-divider {
        width: 80%;
        height: 1px;
        margin: 0.5rem auto;
    }

    #home .search-btn {
        width: 100%;
        height: auto;
        padding: 0.8rem;
        border-radius: 15px;
    }

    #home .features {
        padding: 4rem 1rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-cta-buttons .btn {
    margin: 0 0.5rem;
}

/* Featured Section */
.featured-section {
    padding: 4rem 2rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-card-content {
    padding: 1.5rem;
}

.featured-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.featured-card-content p {
    color: #555;
}
