/* =================================
   YATRA-DARSHAN PAGE STYLES
   ================================= */

/* Page Hero Section */
.page-hero {
    background-color: #FF8C00;
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #4A3821;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #4A3821;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Intro Text */
.intro-text {
    background-color: #FF8C00;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A3821;
    text-align: justify;
}

/* Temples Section */
.temples-section {
    background-color: #FF8C00;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.temples-section h2 {
    font-size: 2.2rem;
    color: #4A3821;
    margin-bottom: 2rem;
    text-align: center;
}

/* Temples Grid */
.temples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Temple Card */
.temple-card {
    background-color: #8B4513;
    padding: 1.5rem;
    border-radius: 10px;
    color: #FFE5B4;
    transition: transform 0.3s, box-shadow 0.3s;
}

.temple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.temple-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.temple-card p {
    font-size: 0.95rem;
    color: #F5DEB3;
}

/* CTA Section */
.cta-section {
    background-color: #8B4513;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    color: #FFE5B4;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #FF8C00;
    color: #4A3821;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #C49A4A;
    transform: scale(1.05);
}

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

    .temples-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem 1rem;
    }
}
