﻿/* ========================================
   HOME PAGE STYLES
   Modasiya Kadva Patidar Samaj Website
   Color Scheme: Dark Red (#8B0000) & Black
   ======================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-dark-red: #8B0000;
    --light-red: #A52A2A;
    --dark-black: #1a1a1a;
    --light-text: #f5f5f5;
    --accent-gold: #D4AF37;
    --border-gray: #e0e0e0;
    --text-gray: #555;
    --light-gray: #555555;
    --white: #ffffff;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    margin-bottom: 0px;
}

/* ===== UTILITY CLASSES ===== */
.section-title {
    color: var(--primary-dark-red);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 60px;
        height: 3px;
        background-color: var(--accent-gold);
        border-radius: 2px;
    }

.section-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ========================================
   HERO BANNER SECTION
   ======================================== */

.banner-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

    .banner-carousel .carousel-item {
        height: 500px;
    }

        .banner-carousel .carousel-item img {
            height: 500px;
            object-fit: cover;
            width: 100%;
        }

    .banner-carousel .carousel-control-prev,
    .banner-carousel .carousel-control-next {
        background-color: rgba(139, 0, 0, 0.5);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .banner-carousel:hover .carousel-control-prev,
    .banner-carousel:hover .carousel-control-next {
        opacity: 1;
    }

    .banner-carousel .carousel-control-prev:hover,
    .banner-carousel .carousel-control-next:hover {
        background-color: rgba(139, 0, 0, 0.8);
    }

    .banner-carousel .carousel-control-prev {
        left: 20px;
    }

    .banner-carousel .carousel-control-next {
        right: 20px;
    }

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 0, 0, 0.6), rgba(26, 26, 26, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.banner-content {
    animation: fadeInUp 1s ease;
}

    .banner-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 1.3rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        margin-bottom: 25px;
        font-weight: 500;
    }

.banner-btn {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--dark-black);
    padding: 12px 35px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

    .banner-btn:hover {
        background-color: #f5c547;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        color: var(--dark-black);
    }

    .banner-btn:active {
        transform: translateY(0);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ANNOUNCEMENT SECTION
   ======================================== */

.announcement-banner {
    background: linear-gradient(90deg, var(--primary-dark-red), var(--light-red));
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
}

.announcement-icon {
    font-size: 1.5rem;
    min-width: 30px;
    animation: pulse 1s infinite;
    display: inline-block;
}

.marquee-text {
    font-weight: 600;
    font-size: 0.95rem;
    flex-grow: 1;
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ========================================
   EVENTS SECTION
   ======================================== */

.events-section {
    background-color: #ffffff;
    padding: 60px 0;
}

    .events-section .container-fluid {
        padding: 0 20px;
    }

.events-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 15px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-dark-red) var(--border-gray);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center; /* Center items */
}

    .events-scroll-container::-webkit-scrollbar {
        height: 8px;
    }

    .events-scroll-container::-webkit-scrollbar-track {
        background: var(--border-gray);
        border-radius: 4px;
    }

    .events-scroll-container::-webkit-scrollbar-thumb {
        background: var(--primary-dark-red);
        border-radius: 4px;
    }

        .events-scroll-container::-webkit-scrollbar-thumb:hover {
            background: var(--light-red);
        }

.event-card {
    min-width: 260px;
    max-width: 360px; /* fixed size */
    flex-shrink: 0;
}

    .event-card .card {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        height: 320px;
        background-color: var(--white);
    }

        .event-card .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(139, 0, 0, 0.2);
        }

.event-header {
    background: linear-gradient(135deg, var(--primary-dark-red), var(--light-red));
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.event-title {
    color: var(--primary-dark-red);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.event-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.event-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    height: 50px; /* fixed space for description */
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-link {
    color: var(--primary-dark-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

    .event-link:hover {
        color: var(--light-red);
        margin-left: 5px;
    }

/* ========================================
   NEWS SECTION
   ======================================== */

.news-section {
    background-color: #FFF5F5;
    padding: 60px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.news-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
}

    .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
    }

.news-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--light-red));
    flex-shrink: 0;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-badge {
    display: inline-block;
    background-color: var(--primary-dark-red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    width: fit-content;
}

.news-date {
    font-size: 0.8rem;
    color: #999;
    margin-left: 10px;
}

.news-title {
    color: #E2A400;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.news-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
    flex-grow: 1;
}

.news-link {
    color: var(--primary-dark-red);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

    .news-link:hover {
        color: var(--light-red);
        margin-left: 5px;
    }

/* ========================================
   COMMITTEE MEMBERS SECTION
   ======================================== */

.committee-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.member-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .member-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
    }

.member-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--light-red));
    overflow: hidden;
}

    .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
}

.member-name {
    color: var(--primary-dark-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.member-position {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-contact {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

    .member-contact p {
        margin: 5px 0;
    }

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .about-image img:hover {
        transform: scale(1.02);
    }

.about-text h3 {
    color: var(--primary-dark-red);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-text p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

    .about-list li {
        color: #000000;
        font-size: 0.95rem;
        padding: 8px 0 8px 25px;
        position: relative;
        margin-bottom: 8px;
        transition: all 0.2s ease;
    }

        .about-list li:hover {
            color: var(--primary-dark-red);
            padding-left: 30px;
        }

        .about-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-dark-red);
            font-weight: 700;
            font-size: 1.1rem;
        }

.about-btn {
    background-color: var(--primary-dark-red);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

    .about-btn:hover {
        background-color: var(--light-red);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(139, 0, 0, 0.4);
        color: var(--white);
    }

/* ========================================
   WELCOME MESSAGE SECTION
   ======================================== */

.welcome-section {
    background-color: #FFF1E6;
    padding: 60px 0;
}

.welcome-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.welcome-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.welcome-content h3 {
    color: var(--primary-dark-red);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.welcome-content .member-title {
    color: #888;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-content p {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.welcome-signature {
    margin-top: 30px;
    font-style: italic;
    color: #888;
    font-weight: 500;
}

/* ========================================
   MEMBER LOGIN & REGISTRATION SECTION
   ======================================== */

.member-auth-section {
    background: linear-gradient(135deg, var(--primary-dark-red), var(--light-red));
    padding: 60px 0;
    color: var(--white);
}

    .member-auth-section .section-title {
        color: var(--accent-gold);
    }

.auth-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .auth-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }

    .auth-card h4 {
        color: var(--primary-dark-red);
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .auth-card p {
        color: #666;
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

.auth-btn {
    background-color: var(--primary-dark-red);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

    .auth-btn:hover {
        background-color: var(--light-red);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(139, 0, 0, 0.4);
        color: var(--white);
    }

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
    background-color: var(--white);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .gallery-item:hover {
        box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: var(--white);
    font-weight: 600;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
}

/* ========================================
   BUSINESS BANNERS SECTION
   ======================================== */

.business-section {
    background-color: #FFF1E6;
    padding: 60px 0;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.business-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .business-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(139, 0, 0, 0.15);
    }

.business-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark-red), var(--light-red));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .business-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.business-card:hover .business-image img {
    transform: scale(1.05);
}

.business-info {
    padding: 20px;
}

.business-name {
    color: var(--primary-dark-red);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.business-category {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-contact {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

    .business-contact p {
        margin: 5px 0;
    }

    .business-contact a {
        color: var(--primary-dark-red);
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .business-contact a:hover {
            color: var(--light-red);
        }



/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .about-content,
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .event-card {
        min-width: 280px;
    }

    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }

    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .banner-carousel {
        height: 350px;
    }

        .banner-carousel .carousel-item img {
            height: 350px;
        }

    .banner-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .banner-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .events-scroll-container {
        gap: 15px;
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .event-card {
        min-width: 260px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .committee-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }

    .member-image {
        height: 200px;
    }

    .about-content,
    .welcome-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-text h3,
    .welcome-content h3 {
        font-size: 1.5rem;
    }

    .about-text p,
    .welcome-content p {
        font-size: 0.9rem;
    }

    .auth-card {
        padding: 30px 20px;
    }

        .auth-card h4 {
            font-size: 1.1rem;
        }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
    }

    .business-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 15px;
    }

    .business-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        height: 250px;
    }

        .banner-carousel .carousel-item img {
            height: 250px;
        }

    .banner-content h1 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .banner-content p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .banner-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

        .section-title::after {
            width: 50px;
        }

    .event-card {
        min-width: 240px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-image {
        height: 150px;
    }

    .committee-grid {
        grid-template-columns: 1fr;
    }

    .member-image {
        height: 200px;
    }

    .about-text h3,
    .welcome-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .about-text p,
    .welcome-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .about-btn,
    .auth-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .auth-card {
        padding: 20px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gallery-item {
        height: 200px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-image {
        height: 180px;
    }

    footer {
        padding: 30px 0 15px;
    }

        footer .section-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .banner-carousel,
    .announcement-banner,
    .member-auth-section {
        display: none;
    }

    .events-scroll-container,
    .news-grid,
    .committee-grid,
    .gallery-grid,
    .business-grid {
        display: grid;
    }

    .event-card {
        min-width: auto;
        flex-grow: 1;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: #2a2a2a;
        --white: #ffffff;
        --text-gray: #d0d0d0;
        --border-gray: #3a3a3a;
    }
}
.pramukh-photo-frame {
    width: 100%;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pramukh-photo {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--accent-gold);
}
.pramukh-photo {
    width: 240px;
    height: 320px;
    object-fit: cover;
}

.pramukh-photo-frame {
    border-radius: 12px;
}


.gujarati-font {
    font-family: 'Shruti', 'Noto Sans Gujarati', sans-serif;
}
