/* Home Page Specific Spiritual Layout Styles */

/* Hero Header */
/* Hero Header Banner (Pre-designed full width image) */
.hero-banner-header {
    width: 100%;
    height: 75vh;
    min-height: 520px;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
}



.hero-banner-container {
    width: 100%;
    z-index: 2;
}

.hero-banner-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-left: 6%; /* Align perfectly below the typography printed on the left of the image */
}

/* Screen reader only utility class for SEO and accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 992px) {
    .hero-banner-header {
        height: 60vh;
        min-height: 400px;
        background-position: 70% center; /* Adjust slightly to keep Guru Ji visible */
    }
    
    .hero-banner-actions {
        margin-left: 4%;
    }
}

@media (max-width: 768px) {
    .hero-banner-header {
        height: auto;
        min-height: auto;
        aspect-ratio: 2 / 1;
        background-size: contain;
        background-position: center top;
        padding-bottom: 0;
        margin-bottom: 65px; /* Create space for the actions below the image */
    }
    
    .hero-banner-header::after {
        display: none;
    }
    
    .hero-banner-container {
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
    }
    
    .hero-banner-actions {
        justify-content: center;
        margin-left: 0;
        width: 100%;
        gap: 12px;
    }
    
    .hero-banner-actions .premium-btn,
    .hero-banner-actions .premium-btn-outline {
        padding: 10px 18px;
        font-size: 11px;
    }
}

/* Quick Features Section below header */
.section-below-header {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(78, 26, 15, 0.9) 0%, rgba(53, 15, 8, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-light);
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
}

.section-below-header>.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.section-below-header .container .items {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-smooth);
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid var(--border-glass);
}

.section-below-header .container .items:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 25px rgba(232, 184, 64, 0.25);
}

.section-below-header .container .items .img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--parchment-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.section-below-header .container .items .img svg {
    width: 26px;
    height: 26px;
    stroke: var(--divine-vermillion);
    fill: none;
    transition: var(--transition-smooth);
}

.section-below-header .container .items:hover .img {
    background: var(--primary-color);
    border-color: var(--accent-gold-light);
}

.section-below-header .container .items:hover .img svg {
    stroke: var(--accent-gold-light);
    transform: scale(1.1) rotate(5deg);
}

/* Appointment Booking Section */
.book-appointment {
    padding: 100px 0;
    border-top: 2px solid rgba(232, 184, 64, 0.15);
    border-bottom: 2px solid rgba(232, 184, 64, 0.15);
}

.book-appointment .container h2 {
    font-family: var(--font-heading);
    font-size: 46px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
}

.book-appointment .container h2::after {
    content: '❖';
    display: block;
    color: var(--divine-vermillion);
    font-size: 20px;
    margin-top: 10px;
}

.book-appointment .container p {
    font-size: 16px;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
    color: var(--text-muted);
    line-height: 1.8;
}

.book-appointment .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Redesigned as Jharokha (Temple arch) Cards */
.book-appointment .box {
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    border-radius: 50% 50% 16px 16px / 20% 20% 16px 16px;
    padding: 45px 30px 35px 30px;
    background-color: white;
    box-shadow: var(--shadow-divine);
    border: 3px solid var(--accent-gold);
    transition: var(--transition-smooth);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.book-appointment .box .icon-wrapper {
    width: 74px;
    height: 74px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 15px rgba(78, 26, 15, 0.15);
    transition: var(--transition-smooth);
    z-index: 2;
}

.book-appointment .box .icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold-light);
    fill: none;
    transition: var(--transition-smooth);
}

.book-appointment .box:hover .icon-wrapper {
    transform: scale(1.08) rotate(5deg);
    background-color: var(--divine-vermillion);
    border-color: var(--accent-gold-light);
    box-shadow: 0 8px 20px rgba(212, 91, 18, 0.3);
}

.book-appointment .box:hover .icon-wrapper svg {
    stroke: white;
    transform: scale(1.1);
}

.book-appointment .box::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid var(--parchment-border);
    border-radius: inherit;
    pointer-events: none;
}

.book-appointment .box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--divine-vermillion);
}

.book-appointment .box h3 {
    font-family: var(--font-heading);
    font-size: 23px;
    color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.book-appointment .box p {
    margin: 0 0 30px 0;
    line-height: 1.7;
    font-size: 14px;
    color: var(--text-muted);
}

.book-appointment .box button {
    width: 100%;
    padding: 15px 24px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    background: linear-gradient(135deg, var(--divine-vermillion) 0%, var(--primary-color) 100%);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.book-appointment .box button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(212, 91, 18, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--divine-vermillion) 100%);
    border-color: var(--accent-gold-light);
}



/* Bio & Snapshot Section */
.bio-snapshot-section {
    padding: 120px 0;
    overflow: hidden;
}

.bio-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.bio-left {
    flex: 1.2;
}

.bio-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--divine-vermillion);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.bio-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.bio-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 20px 0;
}

.bio-text b {
    color: var(--primary-color);
}

.bio-left .premium-btn {
    margin-top: 15px;
    margin-bottom: 50px;
}

/* Snapshot Section */
.snapshot-block {
    border-top: 1px solid rgba(78, 26, 15, 0.1);
    padding-top: 40px;
}

.snapshot-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.snapshot-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.snapshot-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(78, 26, 15, 0.2), transparent);
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.snapshot-item {
    border-left: 2px solid var(--accent-gold);
    padding-left: 15px;
}

.snapshot-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--divine-vermillion);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.snapshot-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.snapshot-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Bio Right Card */
.bio-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.bio-card {
    position: relative;
    width: 340px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-divine);
    border: 3px solid var(--accent-gold);
}

.bio-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.bio-card:hover img {
    transform: scale(1.03);
}

.bio-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 11, 7, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-top: 2px solid var(--accent-gold);
    color: white;
}

.bio-card-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio-card-overlay ul li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #E6D5C3;
}

.bio-card-overlay ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .bio-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .bio-left {
        width: 100%;
    }
    
    .bio-right {
        width: 100%;
    }
    
    .bio-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .snapshot-grid {
        grid-template-columns: 1fr;
    }
}

/* Seva Asymmetric Grid Section */
.seva-grid-section {
    padding: 120px 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(78, 26, 15, 0.08);
}

.section-heading-centered {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-heading-centered .heading-sub {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--divine-vermillion);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-heading-centered h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.section-heading-centered p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

.seva-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seva-col {
    display: flex;
    flex-direction: column;
}

.col-stacked {
    justify-content: space-between;
    gap: 30px;
}

.seva-card {
    background: white;
    border: 1px solid rgba(78, 26, 15, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-divine);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.seva-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--accent-gold);
}

.seva-card-image {
    height: 240px;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.seva-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.seva-card:hover .seva-card-image img {
    transform: scale(1.04);
}

.seva-card-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.seva-card-content h3, .seva-text-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 15px 0;
}

.seva-card-content p, .seva-text-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 25px 0;
    flex: 1;
}

.seva-card-content .premium-btn, .seva-text-card .premium-btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 11px;
}

.seva-text-card {
    background: white;
    border: 1px solid rgba(78, 26, 15, 0.08);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: var(--shadow-divine);
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.seva-text-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--accent-gold);
}

.seva-visual-card {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-divine);
}

.seva-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.seva-visual-card:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .seva-asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .col-stacked {
        flex-direction: column-reverse;
    }
    
    .seva-card-image {
        height: 280px;
    }
    
    .seva-visual-card {
        height: 220px;
    }
}

/* Upcoming Events inside Parchment Roll */
.upcomming-events {
    padding: 100px 0;
    background-color: #FAF4EB;
}

.upcomming-events .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.upcomming-events .items {
    flex: 1;
    min-width: 300px;
}

.upcomming-events .items .img-box {
    width: 100%;
    height: 520px;
    border-radius: 50% 50% 15px 15px / 20% 20% 15px 15px; /* Arch frame */
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-divine-hover);
}

.upcomming-events .items .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcomming-events .items:last-child {
    background-color: var(--parchment-bg);
    padding: 45px 35px;
    border-radius: 15px;
    border: 2px dashed var(--parchment-border);
    box-shadow: inset 0 0 40px rgba(78, 26, 15, 0.05);
}

.upcomming-events .items h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.upcomming-events .items p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 35px;
}

.upcomming-events .event-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(78, 26, 15, 0.15);
    padding: 20px 0;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.upcomming-events .event-list:hover {
    transform: translateX(5px);
}

.upcomming-events .event-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.upcomming-events .event-date {
    font-size: 14px;
    font-weight: 700;
    color: white;
    background: var(--divine-vermillion);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid var(--accent-gold);
}

/* Charitable Banner Callout */
.charitable {
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.charitable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 11, 7, 0.75);
    z-index: 1;
}

.charitable .back-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.charitable .back-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.charitable>div {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.charitable h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--accent-gold-light);
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.charitable p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--parchment-bg);
    margin-bottom: 35px;
}

.charitable button {
    padding: 16px 40px;
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, var(--divine-vermillion) 0%, #B2460B 100%);
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(212, 91, 18, 0.35);
    font-family: var(--font-heading);
}

.charitable button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 91, 18, 0.5);
    background: linear-gradient(135deg, #B2460B 0%, var(--divine-vermillion) 100%);
    border-color: var(--accent-gold-light);
}

/* Spiritual Guidance section */
/* Spiritual Guidance Video Highlight Section */
.spiritual-guidance-video-section {
    padding: 120px 0;
    border-top: 1px solid rgba(78, 26, 15, 0.08);
}

.video-highlight-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.video-highlight-left {
    flex: 1.2;
    max-width: 600px;
}

.video-highlight-sub {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--divine-vermillion);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.video-highlight-left h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 25px 0;
}

.video-highlight-left p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 35px 0;
}

.video-highlight-right {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.video-highlight-card {
    position: relative;
    width: 420px;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-divine);
    border: 3px solid var(--accent-gold);
    cursor: pointer;
    background-color: #000;
}

.video-highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.video-highlight-card:hover img {
    transform: scale(1.04);
}

.play-overlay-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--divine-vermillion);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 91, 18, 0.4);
    transition: var(--transition-smooth);
    border: 2px solid white;
}

.video-highlight-card:hover .play-overlay-button {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(78, 26, 15, 0.6);
}

@media (max-width: 992px) {
    .video-highlight-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .video-highlight-left {
        max-width: 100%;
    }
    
    .video-highlight-left .premium-btn {
        margin: 0 auto;
    }
    
    .video-highlight-right {
        width: 100%;
    }
    
    .video-highlight-card {
        width: 100%;
        max-width: 480px;
    }
}

/* Gallery Section */
.gallery {
    padding: 80px 0 0 0;
    background-color: var(--bg-light);
}

.flex-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
    padding: 40px 0;
    border-top: 2px solid rgba(78, 26, 15, 0.15);
}

.flex-gallery .items {
    height: 210px;
    border-radius: 50% 50% 10px 10px / 20% 20% 10px 10px; /* Arch frame */
    overflow: hidden;
    position: relative;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-divine);
    transition: var(--transition-smooth);
}

.flex-gallery .items:hover {
    transform: scale(1.04);
    border-color: var(--divine-vermillion);
    box-shadow: var(--shadow-divine-hover);
    z-index: 10;
}

.flex-gallery .items div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(30, 11, 7, 0.5);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-gallery .items:hover div {
    opacity: 1;
}

.flex-gallery .items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sessions cards styled as Jharokha Domes */
.session {
    padding: 100px 0;
    background-color: #FAF4EB;
    text-align: center;
    border-top: 4px solid var(--accent-gold);
    border-bottom: 4px solid var(--accent-gold);
}

.session h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.session .p {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.session .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.session .items {
    flex: 1;
    min-width: 300px;
    max-width: 370px;
    background-color: white;
    border-radius: 50% 50% 16px 16px / 20% 20% 16px 16px;
    overflow: hidden;
    box-shadow: var(--shadow-divine);
    border: 3px solid var(--accent-gold);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.session .items:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--divine-vermillion);
}

.session .items .session-img {
    width: 100%;
    height: 240px;
    border-bottom: 2px solid var(--accent-gold);
    overflow: hidden;
}

.session .items .session-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.session .items:hover .session-img img {
    transform: scale(1.05);
}

.session .session-det {
    padding: 35px 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.session .session-det h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

.session .session-det p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    text-align: justify;
}

.session button {
    padding: 12px 28px;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    background-color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.session button:hover {
    background-color: var(--divine-vermillion);
    border-color: var(--accent-gold-light);
    box-shadow: 0 4px 12px rgba(212, 91, 18, 0.3);
    transform: translateY(-2px);
}

/* Media/Print news layout - Sandalwood blocks with Gold trim */
/* Official Updates Section */
.official-updates-section {
    padding: 120px 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(78, 26, 15, 0.08);
}

.updates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.updates-sub {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--divine-vermillion);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.updates-header-left h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    color: var(--primary-color);
    margin: 0;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.update-card {
    background: white;
    border: 1px solid rgba(78, 26, 15, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-divine);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.update-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-divine-hover);
    border-color: var(--accent-gold);
}

.update-card-img {
    height: 220px;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.update-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.update-card:hover .update-card-img img {
    transform: scale(1.04);
}

.update-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.update-date {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.update-card-body h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.35;
    color: var(--primary-color);
    margin: 0 0 15px 0;
}

.update-card-body p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 25px 0;
    flex: 1;
}

.update-card-body .premium-btn-outline {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 11px;
}

@media (max-width: 992px) {
    .updates-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .update-card-img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    header {
        height: 60vh;
    }
    
    .book-appointment, .about-section, .mission-section, .upcomming-events, .spiritual-guidance, .session, .media-print {
        padding: 60px 0;
    }
    
    .book-appointment .container h2,
    .about-section .flex h2,
    .mission-section h2,
    .upcomming-events .items h2,
    .charitable h2,
    .spiritual-guidance .items h2,
    .session h2,
    .print-items h2 {
        font-size: 32px;
    }
    
    .section-below-header>.container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: auto;
        margin-right: 65px; /* Leave space for floating social buttons */
        margin-left: 15px;
    }
    
    .section-below-header .container .items {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 12px 20px;
        border-radius: 50px;
        font-size: 14px;
        letter-spacing: 1.2px;
        height: auto;
        justify-content: flex-start;
    }
    
    .section-below-header .container .items .img {
        width: 44px;
        height: 44px;
        padding: 0;
        flex-shrink: 0;
    }
    
    .section-below-header .container .items .img svg {
        width: 22px;
        height: 22px;
    }
    
    /* Responsive Floating Social Media Buttons */
    .fixed-btn {
        right: 10px !important;
        gap: 10px !important;
    }
    
    .fixed-btn a {
        width: 38px !important;
        height: 38px !important;
    }
    
    .fixed-btn a img {
        width: 18px !important;
        height: 18px !important;
    }
    
    .about-section .flex,
    .mission-section .flex,
    .upcomming-events .flex,
    .spiritual-guidance .flex,
    .media-print .flex {
        gap: 40px;
    }
    
    .upcomming-events .items .img-box {
        height: 380px;
    }
    
    .spiritual-guidance .items .img-box2 {
        height: 300px;
    }
    
    .news-items {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .print-items {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {

    
    .news-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-section .img-detail {
        grid-template-columns: 1fr;
    }
    
    .mission-section .container .flex:nth-child(2) {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-section .container .flex:nth-child(2) .box {
        width: 100%;
    }
}