:root {
    --primary-orange: #E96C28;

    --primary-red: #9A031E;
    --secondary-red: #CE5524;
    --gradient-primary: linear-gradient(135deg, #E96C28 0%, #FB8B24 100%);
    --gradient-nav: linear-gradient(135deg, #9A031E 0%, #CE5524 100%);
    --gradient-footer: #FB8B24;
    --gradient-hero: linear-gradient(135deg, rgba(233, 108, 40, 0.9) 0%, rgba(251, 139, 36, 0.9) 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.7;
    background-color: #ffffff;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.temple-layout {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Desktop Layout */
.temple-content {
    display: flex;
    align-items: stretch;
}

.temple-info {
    flex: 1;
    padding: 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.temple-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.address-info {
    font-size: 16px;
    line-height: 1.8;
}

.address-info strong {
    display: inline-block;

}

.temple-image-container {
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.temple-image-container:hover {
    transform: scale(1.02);
}

.temple-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

@media (min-width: 1200px) {

    .h4,
    h4 {
        font-size: 1.5rem;
    }
}

.location-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-location {
    display: none;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .temple-content {
        flex-direction: column;
    }

    .temple-info {
        order: 1;
        padding: 20px;
    }

    .temple-info h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .address-info {
        font-size: 14px;
    }

    .address-info strong {
        width: 80px;
    }

    .temple-image-container {
        order: 2;
    }

    .temple-image {
        min-height: 250px;
    }

    .mobile-location {
        display: block;
        order: 3;
        padding: 20px;
        background: #f8f9fa;
        border-top: 1px solid #e0e0e0;
    }

    .mobile-location h3 {
        color: #ff6b35;
        font-size: 18px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-location img {
        width: 24px;
        height: 24px;
    }
}

.step-indicator {
    display: flex;
    justify-content: center;
    /* centers horizontally */
    align-items: center;
    /* centers vertically */
    gap: 20px;
    /* space between circles */
    margin-bottom: 30px;
}

.step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #ccc;
    transition: all 0.3s ease-in-out;
}

.step.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.step.completed {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.step-indicator {
    display: flex;
    justify-content: center;
    /* centers horizontally */
    align-items: center;
    /* centers vertically */
    gap: 20px;
    /* space between steps */
    margin-bottom: 30px;
}