/* hero section css */

.container-full{
    width: 100%;
}

.hero-temple-img{
    width: 100%;
    height: 800px;
    object-fit: cover;
}


@media (max-width: 767px){
   .hero-temple-img{
    height: 400px;
} 
}

@media (max-width: 400px){
   .hero-temple-img{
    height: 200px;
} 
}

/* about temple section intro css------------------------------------------------------------------ */
/* =========================================
   ABOUT INTRO SECTION
========================================= */

.about-intro {
    background: var(--clr-bg-soft);
    position: relative;
}

.about-intro-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content h2 {
    font-size: var(--fs-h2);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-5);
    position: relative;
}

/* Elegant underline accent */
.about-intro-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
    margin: var(--space-3) auto 0;
    border-radius: var(--radius-pill);
}

.about-intro-content p {
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--clr-primary-dark);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: var(--space-4);
}



/* history-section css------------------------------------------------------------------------------------- */
/* =========================================
   HISTORY SECTION
========================================= */

.history-section {
    background: white;
    position: relative;
}

.history-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Small Label */
.history-label {
    font-size: var( --fs-h4);
  font-weight: 600;
  text-transform: uppercase;
  font-family: var( --font-body);
  letter-spacing: 1px;
  color: var(--clr-accent);
}

/* Heading */
.history-wrapper h2 {
    font-size: var(--fs-h2);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-6);
}

/* Content */
.history-content {
    text-align: left;
}

.history-content p {
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--clr-primary-dark);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

/* Responsive behavior */
@media (max-width: 768px) {
    .history-content {
        text-align: center;
    }
}


/* temple timing section css---------------------------------------------------------------------------------------------------------------- */
/* =========================================
   TEMPLE ACTIVITIES SECTION
========================================= */

.activities-section {
    background: var(--clr-bg-soft);
}

/* Layout */
.activities-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-9);
}

/* Left Image */
.activities-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.activities-image img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    border: 6px solid var(--clr-bg);
}

/* Right Content */
.activities-content {
    flex: 1.2;
}

.activities-content h2 {
    font-size: var(--fs-h2);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-5);
}

/* Intro Paragraph */
.activities-content .intro-text {
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--clr-primary-dark);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

/* List */
.activities-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-6);
}

.activities-list li {
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--clr-primary-dark);
    margin-bottom: var(--space-4);
    position: relative;
    padding-left: 28px;
}

/* Custom bullet using accent color */
.activities-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-accent-dark);
    font-size: 18px;
}

/* Festival Text */
.festival-text {
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--clr-primary-dark);
    line-height: 1.8;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
    .activities-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .activities-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .activities-list li {
        padding-left: 0;
    }

    .activities-list li::before {
        display: none;
    }
}




/* daily programs section--------------
----------------------------------
-------------------------------- */

.temple-program-section{
background:var(--clr-bg-soft);
padding:0 var(--space-3);
}

.temple-program-section h2{
font-family:var(--font-heading);
font-size:var(--fs-h2);
text-align:center;
color:var(--text-dark);
}

.temple-program-desc{
text-align:center;
font-family:var(--font-body);
font-size:var(--fs-body-md);
color:var(--clr-primary-dark);
max-width:700px;
margin:10px auto 50px;
}


/* GRID */

.temple-program-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}


/* CARD */

.temple-program-card{

background:#fff;

padding:25px 20px;

border-radius:14px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.06);

transition:.3s ease;

position:relative;
overflow:hidden;
}

.temple-program-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:4px;
height:100%;

background:var(--clr-primary-dark);
}

.temple-program-card:hover{

transform:translateY(-6px);

box-shadow:0 15px 30px rgba(0,0,0,.12);
}


/* TEXT */

.temple-program-card h4{

font-family:var(--font-heading);

font-size:18px;

margin-bottom:6px;

color:var(--text-dark);
}

.temple-program-card p{

font-family:var(--font-body);

font-size:15px;

color:#555;
}


/* NOTE */

.temple-program-note{

margin-top:40px;

text-align:center;

background:#fff;

padding:15px 20px;

border-radius:10px;

font-family:var(--font-body);

font-size:14px;

color:#444;

box-shadow:0 8px 20px rgba(0,0,0,.05);
}


/* RESPONSIVE */

@media(max-width:768px){

.temple-program-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:480px){

.temple-program-grid{
grid-template-columns:1fr;
}

}


/* seva section css---------------------------------------------------------------------------- */
/* =========================================
   SEVA SECTION (EQUAL HEIGHT IMAGE + BOX)
========================================= */

.seva-section {
    background: white;
}

.seva-wrapper {
    display: flex;
    align-items: stretch; /* Makes both same height */
    gap: var(--space-10);
}

/* LEFT CONTENT CARD */
.seva-content {
    flex: 1;
    background: #ffffff;
    padding: var(--space-8);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Heading */
.seva-content h2 {
    font-size: var(--fs-h2);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-5);
}

/* Intro */
.seva-intro {
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--clr-primary-dark);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

/* Feature List */
.seva-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.seva-item {
    background: var(--clr-accent-soft);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-medium);
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: all .3s ease;
}

.seva-item:hover {
    background: var(--clr-accent);
    color: var(--text-light);
    transform: translateX(6px);
}

/* Footer */
.seva-footer {
    font-size: var(--fs-body-md);
    font-family: var(--font-body);
    color: var(--clr-primary-dark);
    line-height: 1.8;
}

/* RIGHT IMAGE */
.seva-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.seva-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important for equal height */
    display: block;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 992px) {
    .seva-wrapper {
        flex-direction: column-reverse;
    }

    .seva-content {
        padding: var(--space-6);
    }

    .seva-image {
        height: 350px; /* Fixed height for mobile */
    }

    .seva-item:hover {
        transform: none;
    }
}


/* ================= SLIDER ================= */

.seva-slider{
    position: relative;
    width: 100%;
    height: 100%;
}

/* EACH SLIDE */
.seva-slide{
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* ACTIVE */
.seva-slide.active{
    opacity: 1;
    z-index: 1;
}

/* IMAGE */
.seva-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* cinematic zoom */
    transform: scale(1.1);
    transition: transform 6s ease;
}

.seva-slide.active img{
    transform: scale(1);
}

/* ================= DOTS ================= */

.seva-dots{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active{
    background: #fff;
    transform: scale(1.2);
}