.elementor-83 .elementor-element.elementor-element-f7214ae{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-83 .elementor-element.elementor-element-c2bfca8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-83 .elementor-element.elementor-element-a83b28b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a773d58 */// ================= ULTRA-RICH ROYAL THEME VARIABLES =================
$saffron-main: #FF9933;
$saffron-dark: #C04E00;
$saffron-ticker-1: #FF8A1E;
$saffron-ticker-2: #FF9F50;
$gold-accent: #D4AF37;
$gold-metallic: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
$royal-blue: #0A1128;
$deep-brown: #2C1B18;
$paper-bg: #FFFBF5; // Slightly richer cream
$card-bg: #FFFFFF;

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

body {
    font-family: 'Alegreya', serif;
    background-color: $paper-bg;
    color: $deep-brown;
    line-height: 1.8;
    overflow-x: hidden;
    background-image: url('[https://www.transparenttextures.com/patterns/cream-paper.png](https://www.transparenttextures.com/patterns/cream-paper.png)'); 
}

/* Typography */
h1, h2, h3, .cinzel-font { font-family: 'Cinzel', serif; }
.alegreya-font { font-family: 'Alegreya', serif; }

/* Ornamental Background Pattern */
.bg-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient($gold-accent 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.15; z-index: -1;
}

/* ================= TOP NAVIGATION (Shivbodh Consistent) ================= */
.top-nav {
    background: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1000;

    .brand-logo {
        font-size: 1.8rem; font-weight: 800; color: #6D2E14;
        text-decoration: none; display: flex; align-items: center; gap: 10px;
        i { color: $saffron-main; }
    }
    
    .brand-tagline {
        font-size: 0.9rem; color: #8D6E63;
        font-family: 'Alegreya', serif; font-weight: 700;
    }
}

/* ================= NEW TICKER ================= */
.news-ticker {
    height: 50px; width: 100%; overflow: hidden; position: relative; z-index: 100;
    background: linear-gradient(135deg, $saffron-ticker-1, $saffron-ticker-2);
    box-shadow: 0 4px 15px rgba(255, 138, 30, 0.25);
    border-bottom: 3px solid $gold-accent;

    .ticker-container { 
        display: flex; height: 100%; animation: scroll-news 30s linear infinite; 
    }
    
    @keyframes scroll-news { 
        0% { transform: translateX(0%); } 
        100% { transform: translateX(-50%); } 
    }

    .news-item { 
        display: flex; align-items: center; padding: 0 30px; color: white; 
        font-weight: 600; white-space: nowrap; font-family: 'Poppins', sans-serif;
    }

    .news-content { display: flex; align-items: center; gap: 15px; }

    .news-icon {
        font-size: 22px;
        animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.15); }
    }

    .news-text { font-size: 15px; letter-spacing: 0.5px; }

    .news-btn {
        background: $gold-metallic; color: $deep-brown;
        padding: 6px 15px; border-radius: 20px; font-weight: 800;
        text-decoration: none; font-size: 13px; transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        
        &:hover { 
            background: white; color: $saffron-ticker-1; transform: translateY(-2px); 
        }
    }
}

/* ================= GRAND HERO SECTION ================= */
.hero {
    position: relative;
    height: 92vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border-bottom: 8px solid;
    border-image: $gold-metallic 1;

    .hero-bg {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: url('[https://shivbodhtrust.org/wp-content/uploads/2026/03/Aadiguru1staacharya.png](https://shivbodhtrust.org/wp-content/uploads/2026/03/Aadiguru1staacharya.png)') center top / cover no-repeat;
        z-index: 1; animation: subtleZoom 25s infinite alternate ease-in-out;
    }
    @keyframes subtleZoom { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }

    .hero-overlay {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(10, 17, 40, 0.4), rgba(10, 17, 40, 0.8), $royal-blue);
        z-index: 2;
    }

    .hero-content {
        position: relative; z-index: 3; text-align: center; color: #fff;
        padding: 30px; max-width: 1000px; animation: fadeUp 1.5s ease-out;
    }

    .sanskrit-sloka {
        font-family: 'Rozha One', serif; font-size: 2rem; color: $gold-accent;
        margin-bottom: 15px; letter-spacing: 2px; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .hero-title {
        font-family: 'Cinzel', serif; font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 900;
        line-height: 1.1; margin-bottom: 20px;
        background: $gold-metallic;
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 5px 15px rgba(0,0,0,0.8));
    }

    .hero-subtitle {
        font-family: 'Cinzel', serif; font-size: 1.5rem; color: #E2E8F0; 
        font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
        border-top: 2px solid $gold-accent; display: inline-block; padding-top: 20px;
    }
}

/* ================= RICH BIOGRAPHY CONTENT ================= */
.content-container { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }

.section-header { text-align: center; margin-bottom: 60px; position: relative; }

.sec-title {
    font-family: 'Cinzel', serif; font-size: 3rem; color: $royal-blue; font-weight: 800;
    display: inline-block; padding-bottom: 15px; position: relative;
    
    &::after {
        content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
        width: 100px; height: 4px; background: $gold-metallic;
    }
}

.rich-card {
    background: #fff; padding: 50px; border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
    border: 3px solid $gold-accent;
    margin-bottom: 50px; text-align: justify; position: relative;
    overflow: hidden;

    &::after {
        content: ''; position: absolute; top: 10px; right: 10px;
        width: 50px; height: 50px;
        border-top: 3px solid $gold-accent; border-right: 3px solid $gold-accent;
    }
    
    &::before {
        content: 'ॐ'; position: absolute; top: -30px; left: 20px;
        font-size: 12rem; color: rgba(212, 175, 55, 0.07); font-family: 'Rozha One', serif; z-index: 0;
    }

    .rich-card-content { position: relative; z-index: 1; }
}

.drop-cap::first-letter {
    font-family: 'Cinzel', serif; font-size: 4.5rem; float: left; font-weight: 800;
    line-height: 0.8; padding-right: 20px; padding-top: 5px;
    background: $gold-metallic; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.para-hindi {
    font-family: 'Poppins', sans-serif; color: #4a3a37; font-size: 1.15rem; 
    background: linear-gradient(to right, #FFFDE7, #FFF8E1); 
    padding: 25px; border-left: 6px solid $saffron-main;
    margin: 30px 0; border-radius: 0 15px 15px 0;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.05);
}

/* ================= 4 PEETHAMS GRAND GRID ================= */
.peethams-section {
    background: $royal-blue; padding: 100px 20px;
    position: relative; margin-top: 50px;
    border-top: 8px solid; border-bottom: 8px solid;
    border-image: $gold-metallic 1;
    background-image: url('[https://www.transparenttextures.com/patterns/cubes.png](https://www.transparenttextures.com/patterns/cubes.png)');
}

.grid-title {
    text-align: center; font-family: 'Cinzel', serif;
    font-size: 3rem; margin-bottom: 60px; font-weight: 900;
    background: $gold-metallic; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.8));
}

.peetham-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; max-width: 1300px; margin: 0 auto;
}

.peetham-card {
    position: relative; border-radius: 20px; overflow: hidden;
    height: 380px; cursor: pointer; transition: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 4px solid $gold-accent;

    &:hover {
        transform: translateY(-15px) scale(1.02);
        border-color: #FFD700;
        box-shadow: 0 25px 60px rgba(255, 215, 0, 0.3);
        
        .peetham-img { transform: scale(1.15); filter: brightness(1.1); }
    }
}

.peetham-img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    transition: 0.8s ease; filter: brightness(0.9);
}

.peetham-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 75%;
    background: linear-gradient(to top, $royal-blue 20%, transparent);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 25px; text-align: center;
}

.peetham-name-en {
    font-family: 'Cinzel', serif; font-size: 1.5rem; color: #fff;
    margin-bottom: 8px; font-weight: 800; text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.peetham-name-hi {
    font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: $gold-accent;
    margin-bottom: 15px; font-weight: 600;
}

.direction-badge {
    display: inline-block; background: $gold-metallic; color: $deep-brown;
    padding: 6px 15px; border-radius: 30px; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 800;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.card-link { display: block; height: 100%; text-decoration: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .sanskrit-sloka { font-size: 1.5rem; }
    .rich-card { padding: 30px; }
    .peetham-card { height: 350px; }
    .sec-title { font-size: 2.2rem; }
}/* End custom CSS */