/* public/css/home.css */
/* Hero Section */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    padding-top: 150px;
    background: url('../images/kaaba-hero.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--light-text-color);
    text-align: center;
    padding-bottom: 150px; 
    z-index: 1; 
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.5),
        2px 2px 4px rgba(0,0,0,0.4),
        3px 3px 6px rgba(0,0,0,0.3);

    opacity: 0; 
    animation: fadeInUp 1s ease-out forwards; 
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.5),
        2px 2px 4px rgba(0,0,0,0.4),
        3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    color: white;

    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.5s; 
}

.cta-button {
    background: #d0b82f;
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 1s; 
}

.cta-button:hover {
    background: #f5f2dd; 
    color: black;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
     position: relative; 

    background: var(--light-text-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;

    padding-bottom: 5rem;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.order-btn {
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;

    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.order-btn:hover {
    background: var(--button-hover-color);
}

/* Why Choose Us Section */
.why-choose-us{
    background: url('../images/bgKaligrafi1.jpg') no-repeat center center/cover;
    color: var(--light-text-color);
}

.section-title{
    color: white;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.5),
        2px 2px 4px rgba(0,0,0,0.4),
        3px 3px 6px rgba(0,0,0,0.3);
}

.umroh-title {
    color:#6a4c28; 
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.2),
        2px 2px 4px rgba(0,0,0,0.2),
        3px 3px 6px rgba(0,0,0,0.2);
    margin-bottom: 2rem; 
}


.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f1f1f1;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}


.why-choose-us .feature-icon i {
    font-size: 2rem;
    color: #d0b82f; 
}

.feature-item h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 
        1px 1px 2px rgba(0,0,0,0.5),
        2px 2px 4px rgba(0,0,0,0.4),
        3px 3px 6px rgba(0,0,0,0.3);
}

.package-card p .fa-tags {
    color: #c1d3e3; 
    
}

.package-card p .fa-plane {
    color: #007bff; 
}

@media (max-width: 768px) {
    .features-grid {
       
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-item {
        max-width: 100%;
    }
}