﻿.adasa-festival-section {
  background: #fff7ee;
}

.festival-heading {
  font-weight: 700;
  font-size: 35px;
  color: #d85a00;
  text-transform: uppercase;
}

.festival-subtext {
  font-size: 18px;
  color: #444;
}

/* Image Styling */
.festival-img img {
  width: 270px !important;
  height: 270px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffb54a;
  box-shadow: 0 0 18px rgba(255, 152, 35, 0.6);
  transition: transform .4s;
}

.festival-img img:hover {
  transform: scale(1.05);
}

/* Text Box */
.festival-info {
    flex: 1;
    margin-left: 25px;
    padding: 18px 25px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    border-right: 4px solid #ff7a00; /* Sirf Right Side Border */
    box-shadow: 0px 5px 18px rgba(0,0,0,0.12); /* Soft Shadow */
    backdrop-filter: blur(6px);
}

/* Title */
.festival-title {
    color: #b14500;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Description Show/Hide */
.festival-full {
    display: block !important;
    background: #fff;
    padding: 20px;
    border-right: 4px solid #f68b1e; /* Orange right border */
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
    margin-top: 12px;
    animation: fadeIn .5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Button */
.festival-toggle {
    margin-top: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    background: #f4e3ce;
    border: 2px solid #c07a3f;
    color: #7a1f00;
    cursor: pointer;
    font-size: 14px;
    transition: .3s;
}

    .festival-toggle:hover {
        background: #b14500;
        color: #fff;
    }

/* Responsive */
@media(max-width: 768px){
  .festival-box { flex-direction: column; text-align: center; }
  .festival-info { margin-left: 0; margin-top: 20px; }
}

.festival-full .heading {
    color: #ff7b00;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 6px;
}

.festival-full ul {
    margin: 0 0 18px 0;
    padding: 0;
    list-style: none;
}

    .festival-full ul li {
        position: relative;
        padding-left: 28px;
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 6px;
    }

        .festival-full ul li::before {
            content: "➤"; /* Arrow Symbol */
            color: #cc5500c7; /* Arrow Color */
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 2px;
        }

.festival-full h5 {
    color: #7a1f00;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 19px; 
}

.orange-bullet-list li {
    position: relative !important;
    list-style: none !important;
    padding-left: 22px !important;
    margin-bottom: 6px;
    display: block !important;
}

    .orange-bullet-list li::before {
        content: "\2022" !important; /* Bullet Dot */
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        font-size: 22px !important;
        color: #ff7a00 !important; /* Orange Color */
        line-height: 1 !important;
    }

.reach-journey-timeline {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* MAIN FLEX ROW */
.reach-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 215px;
}

    /* Z-PATTERN FLIP */
    .reach-row.reverse {
        flex-direction: row-reverse;
    }

/* CONTENT BOX */
.reach-content {
    flex: 1.3;
    background: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 6px solid #ff7c12;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.17);
    transition: 0.4s;
}

    .reach-content:hover {
        transform: translateY(-4px);
        box-shadow: 0px 12px 35px rgba(0,0,0,0.25);
    }

    .reach-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: #ff6e00;
        margin-bottom: 8px;
    }

    .reach-content p {
        margin: 0;
        font-size: 16px;
        color: #333;
        line-height: 1.6;
        margin-left: 10px;
    }

/* IMAGE */
.reach-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .reach-image img {
        width: 328px;
        height: 264px;
        object-fit: cover;
       /* border-radius: 50%;*/
       /* border: 5px solid #ffa652;*/
        /*box-shadow: 0px 0px 25px rgba(255, 149, 35, 0.7);*/
        transition: 0.4s;
    }

        .reach-image img:hover {
            transform: scale(1.08);
        }

/* MOBILE VIEW */
@media(max-width: 768px) {
    .reach-row,
    .reach-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .reach-content {
        border-left: none;
        border-top: 6px solid #ff7c12;
    }
}

.reach-z-layout {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

    /* Center Vertical Line */
    .reach-z-layout::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(#ff7a00, #ffc46b);
        transform: translateX(-50%);
        border-radius: 5px;
    }

/* Circle Dots on Each Row */
.reach-row::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: #ff7a00;
    border-radius: 50%;
    border: 3px solid #fff;
    transform: translateY(-50%);
    z-index: 3;
}

/* Dot Position Depending on Left-Right Layout */
.reach-row:not(.reverse)::before {
    right: calc(50% - 9px);
}

.reach-row.reverse::before {
    left: calc(50% - 9px);
}

/* Row layout adjustment */
.reach-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 55px;
    position: relative;
}

/* Responsive Behavior */
@media(max-width: 768px) {
    .reach-z-layout::before {
        display: none;
    }

    .reach-row {
        flex-direction: column !important;
        text-align: center;
    }

        .reach-row::before {
            display: none;
        }

}

/* ===== ADASA ACTIVITIES SECTION ===== */
.adasa-activities {
    position: relative;
    background: linear-gradient(135deg, #b85e17b8, #f3c89b);
    backdrop-filter: blur(4px);
}

/* Language Buttons */
/*.lang-btn {
    border: none;
    padding: 8px 18px;
    margin-left: 8px;
    border-radius: 30px;
    background: #fff;
    color: #b85e17;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

    .lang-btn.active,
    .lang-btn:hover {
        background: linear-gradient(45deg, #b85e17, #ff9f43);
        color: #fff;
        transform: translateY(-2px);
    }*/

/* Titles */
.festival-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #5a2c00;
    position: relative;
}

    .festival-main-title::after {
        content: '';
        width: 80px;
        height: 4px;
        background: linear-gradient(45deg, #b85e17, #ff9f43);
        display: block;
        margin: 12px auto 0;
        border-radius: 50px;
    }

.activity-subtitle {
    font-size: 16px;
    color: #444;
    max-width: 700px;
    margin: auto;
}

/* Activities Grid */
.activities-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Mobile */
@media (max-width: 767px) {
    .activities-wrapper {
        grid-template-columns: 1fr;
    }
}


/* Card Style */
.activity-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

    /* Gradient border on hover */
    .activity-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #ff9f43, #b85e17);
        opacity: 0;
        transition: 0.4s;
        z-index: 0;
    }

    .activity-card:hover::before {
        opacity: 0.15;
    }

    .activity-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    }

/* Icon Image */
.activity-icon {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff9f43;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1;
}

    .activity-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.activity-card:hover .activity-icon img {
    transform: scale(1.15) rotate(3deg);
}

/* Content */
.activity-content {
    z-index: 1;
}

    .activity-content h5 {
        font-size: 18px;
        font-weight: 700;
        color: #b85e17;
        margin-bottom: 6px;
    }

    .activity-content p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
    }

/* Responsive */
@media (max-width: 768px) {
    .activity-card {
        flex-direction: column;
        text-align: center;
    }

    .activity-icon {
        margin-bottom: 10px;
    }
}

/*what to see css*/

.what-see-royal {
    background: url('/Content/Home/assets/images/about/temple_banner.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 20px;
}

    .what-see-royal::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.7);
    }

    .what-see-royal * {
        position: relative;
        z-index: 2;
    }

.royal-title {
    font-size: 38px;
    color: #ffdf85;
    font-weight: bold;
    margin-bottom: 10px;
}

.royal-subtitle {
    font-size: 18px;
    color: #fff;
    max-width: 700px;
    margin: auto;
}

.royal-box {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

    .royal-box.alt {
        flex-direction: row-reverse;
    }

.royal-img .shine-frame {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #f6d76f, #b8923b);
    box-shadow: 0 0 25px rgba(255,215,0,0.5);
}

.royal-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.royal-content h3 {
    font-size: 26px;
    font-weight: bold;
    color: #f6d76f;
    margin-bottom: 8px;
}

.royal-content p {
    color: #e9e9e9;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 10px;
}

.royal-tag {
    background: #b8923b;
    padding: 6px 14px;
    display: inline-block;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
}



/* Responsive */
@media (max-width: 768px) {
    .royal-box {
        flex-direction: column;
        text-align: center;
    }

        .royal-box.alt {
            flex-direction: column;
        }

    .royal-img .shine-frame {
        width: 180px;
        height: 180px;
    }
}

/* INITIAL STATE */
.royal-box,
.royal-img,
.royal-content h3,
.royal-content p,
.royal-tag {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

    /* IMAGE SPECIAL INITIAL EFFECT */
    .royal-img img {
        opacity: 0;
        transform: scale(0.85);
        transition: all 1.2s ease-out;
    }

/* WHEN ACTIVE */
.animate-active .royal-img img {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1.1);
}

/* BOX FADE + SLIDE UP */
.animate-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* LEFT SLIDE FOR NORMAL BOXES */
.royal-box:not(.alt).animate-active {
    transform: translateX(0);
    opacity: 1;
}

.royal-box:not(.alt) {
    transform: translateX(-60px);
}

/* RIGHT SLIDE FOR ALT BOXES */
.royal-box.alt {
    transform: translateX(60px);
}

    .royal-box.alt.animate-active {
        transform: translateX(0);
    }

/* TEXT STAGGER */
.royal-content h3.animate-active {
    transition-delay: 0.2s;
}

.royal-content p.animate-active {
    transition-delay: 0.35s;
}

.royal-tag.animate-active {
    transition-delay: 0.5s;
}

/* IMAGE GLOW EFFECT */
.royal-img.animate-active {
    box-shadow: 0 8px 25px rgba(255, 200, 0, 0.45);
    border-radius: 14px;
    transition: box-shadow 1s ease;
}

/* IMAGE HOVER ZOOM (premium) */
.royal-img img:hover {
    transform: scale(1.07);
    filter: brightness(1.2);
}

.royal-content {
    max-width: 500px; /* <-- JITNI WIDTH CHAHIYE SET KAR DO */
    width: 100%;
}

    .royal-content h3,
    .royal-content p,
    .royal-content span {
        word-wrap: break-word;
        white-space: normal;
    }


/* Wrapper Grid - 2 per Row (Cards Only) */
.activities-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Center Circle Image - NO CHANGE */
.center-building {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
}

.building-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 85px;
    color: #764ba2;
    box-shadow: 0 8px 35px rgba(0,0,0,0.15);
    border: 5px solid #b85e17;
}

/* Activity Card */
.activity-card {
    background: white;
    border-radius: 25px;
    padding: 14px 14px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #b85e17; /* left border only, thinner */
    transition: .3s;
}

    /* Hover Effect */
    .activity-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }

/* Icon */
.activity-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

/* Icon Colors */
.icon1 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.icon2 {
    background: linear-gradient(135deg, #ff4757, #ff6348);
}

.icon3 {
    background: linear-gradient(135deg, #ffa502, #ff9100);
}

.icon4 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.icon5 {
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.icon6 {
    background: linear-gradient(135deg, #00d4ff, #0099ff);
}

/* Text */
.activity-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.activity-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .activities-wrapper {
        grid-template-columns: 1fr; /* tablet/mobile: 1 per row */
    }
}


.activity-icon {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border: 2px solid #f0a500;
    background-color: #fff;
}

    .activity-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


/* Strong mobile override: use multiple selectors + !important */
@media only screen and (max-width: 767px) {
    /* ensure hero container positioned correctly */
    #hero, section#hero, .hero-area {
        -webkit-text-size-adjust: 100%;
    }

        /* strongest possible selector to force white overlay */
        #hero .hero-slide .overlay,
        section#hero .hero-slide .overlay,
        .hero-area #heroCarousel .hero-slide .overlay,
        .hero-area .hero-slide .overlay {
            background: #ffffff !important;
            background-image: none !important;
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: none !important;
            /* remove any background-blend-mode or filter if present */
            filter: none !important;
            mix-blend-mode: normal !important;
        }

        /* make sure overlay covers slide (if overlay not positioned) */
        #hero .hero-slide {
            position: relative !important;
        }

            /* if overlay element had inline styles added by JS, remove them via forcing computed props */
            #hero .hero-slide .overlay[style] {
                background: #ffffff !important;
            }
}

/* ================= MOBILE RESPONSIVE FIX ================= */
@media (max-width: 767px) {

    /* WHAT SEE ROYAL SECTION */
    .royal-box {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }

    .royal-content {
        max-width: 100% !important;
    }

    .royal-title {
        font-size: 26px;
    }

    .royal-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .royal-img .shine-frame {
        width: 150px;
        height: 150px;
    }

    .royal-content h3 {
        font-size: 20px;
    }

    .royal-content p {
        font-size: 14px;
    }

    /* REMOVE LEFT RIGHT SLIDE ISSUE ON MOBILE */
    .royal-box:not(.alt),
    .royal-box.alt {
        transform: translateX(0) !important;
    }


    /* ACTIVITIES SECTION */
    .activities-wrapper {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 0 10px;
    }

    .activity-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }

    .activity-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin-bottom: 10px;
    }

    .activity-content h5 {
        font-size: 16px;
    }

    .activity-content p {
        font-size: 14px;
    }


    /* CENTER IMAGE FIX */
    .building-image {
        width: 130px;
        height: 130px;
        font-size: 60px;
    }

    /* HERO OVERLAY FIX */
    #hero .hero-slide .overlay {
        background: rgba(255,255,255,0.9) !important;
    }
}

@media (max-width: 768px) {

    .what-see-royal {
        padding: 50px 15px;
    }

    /* Royal Box Stack */
    .royal-box {
        flex-direction: column !important;
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    /* FORCE IMAGE FIRST */
    .royal-img {
        order: 1;
    }

    .royal-content {
        order: 2;
        max-width: 100%;
    }

    /* Image size adjust */
    .royal-img .shine-frame {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    /* Text responsive */
    .royal-title {
        font-size: 26px;
    }

    .royal-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .royal-content h3 {
        font-size: 20px;
    }

    .royal-content p {
        font-size: 14px;
    }

    .royal-tag {
        font-size: 13px;
    }
}
