/* Preparing for the Day Page Styles */

/* Hero Section */
.preparing-hero {
    background: var(--gradient);
    padding: 100px 20px 60px;
    text-align: center;
    color: var(--text-light);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Key Locations Section - Combined Venue and Masjid */
.key-locations-section {
    padding: 60px 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.location-card {
    background: var(--bg-light);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.location-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card p {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Event Schedule Section */
.event-schedule-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.schedule-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.schedule-card:last-child {
    margin-bottom: 0;
}

.schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.schedule-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0.5rem 0;
}

.schedule-card ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.schedule-card ul li {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    padding: 0.5rem 0;
}

.schedule-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.schedule-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Dining Section */
.dining-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.restaurant-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.restaurant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.restaurant-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.restaurant-type {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.restaurant-address {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.restaurant-note {
    font-size: 0.85rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Hotels Section */
.hotels-section {
    padding: 60px 0;
    background: var(--white);
}

.hotels-area {
    margin-bottom: 3rem;
}

.hotels-area:last-child {
    margin-bottom: 0;
}

.area-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.hotel-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.hotel-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.hotel-address {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Entertainment Section */
.entertainment-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.entertainment-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.entertainment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.entertainment-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.entertainment-description {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.entertainment-address {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .restaurants-grid,
    .hotels-grid,
    .entertainment-grid {
        grid-template-columns: 1fr;
    }

    .key-locations-section,
    .event-schedule-section,
    .dining-section,
    .hotels-section,
    .entertainment-section {
        padding: 40px 0;
    }

    .schedule-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .preparing-hero {
        padding: 80px 20px 40px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .restaurant-card,
    .hotel-card,
    .entertainment-card,
    .schedule-card {
        padding: 1.25rem;
    }

    .schedule-card h3 {
        font-size: 1.25rem;
    }

    .schedule-card p,
    .schedule-card ul li {
        font-size: 0.95rem;
    }
}
