:root {
    --primary: #ec7505ff;
    --secondary-dark: #171614ff;
    --text-color: #b22222;
    --background: linear-gradient(#fffdf7, #fff);
    --dark: #000000ff;
    --light: #ffffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--background);
}

/* Header Styling Starts */

header {
    background-color: var(--secondary-dark);
    color: var(--light);
    display: flex;
    align-items: center;
    font-family: "Noto Serif", serif;
    font-size: larger;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
}

header .logo {
    color: var(--text-colour);
    font-family: "Graduate", serif;
    font-weight: 400;
    width: 200px;
}

header .logo img {
    width: 200px;
}

.mobile-logo {
    display: none;
    margin: 27px 7px;
    color: var(--text-colour);
    font-family: "Graduate", serif;
    font-weight: 400;
}


.desktop-logo { display: block; }
.mobile-logo { display: none; }

@media (max-width: 678px) {
  .desktop-logo { display: none; }
  .mobile-logo { display: block; }
}

.social-media-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Hide mobile-only donate link on desktop */
.mobile-donate-link {
    display: none;
}

header nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    font-weight: 400;
}

.links a:hover {
    color: var(--primary);
    transition: 0.4s ease-in-out;
}

.links a {
    position: relative;
    /* This is crucial for positioning the pseudo-element */
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 12px;
    text-decoration: none;
    color: var(--light);
    /* No hover effect here, it will be handled by the pseudo-element */
}

/* Creating the underline effect */
.links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.3s ease-in-out;
}

.links a:hover::before {
    width: 100%;
}

header i {
    color: var(--light);
}

#sidebar-active {
    display: none;
}

.open-sidebar,
.close-sidebar {
    display: none;
}

header .desktop-donate-link {
    color: var(--light);
    text-decoration: none;
    background: var(--primary);
    padding: 7px 12px;
    border-radius: 4px;
    border: 1px solid black;
    transition: 0.4s ease-in-out;
    height: auto;
}

header .desktop-donate-link:hover {
    position: relative;
    overflow: hidden;
    color: var(--light);
}

header .desktop-donate-link:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    animation: glassShine 4s infinite;
}

@keyframes glassShine {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* === Mobile Styles === */
@media screen and (max-width: 757px) {

    /* Hide the main navigation links from the header */
    .links {
        display: none;
    }

    /* New layout for header items */
    header nav {
        order: 1;
        /* Left item (Hamburger) */
    }

    .logo {
        order: 2;
        /* Center item */
        padding-left: 0;
        position: absolute;
        left: 62%;
        transform: translateX(-50%);
        width: 200px;
    }

    header .logo img {
        width: 62px;
    }

    .mobile-donate-link {
        display: block;
        /* Show this link only on mobile */
        order: 3;
        /* Right item (Home) */
        color: var(--light);
        text-decoration: none;
        background: var(--primary);
        padding: 7px 2px;
        border-radius: 4px;
        border: 1px solid black;
        transition: 0.4s ease-in-out;
        font-size: medium;
    }

    .mobile-donate-link:hover {
        position: relative;
        overflow: hidden;
        color: var(--light);
    }

    .mobile-donate-link:hover::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -60%;
        width: 20px;
        height: 200%;
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(30deg);
        animation: glassShine 4s infinite;
    }

    header .desktop-donate-link {
        display: none !important;
        color: var(--light);
        text-decoration: none;
    }

    /* Sidebar styles */
    .links {
        display: flex;
        /* Overwrite the "none" when sidebar is active */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 9999;
        background: var(--secondary-dark);
        box-shadow: 2px 6px 10px black;
        transition: 0.7s ease-in-out;
    }

    .links a,
    .links .mobile-logo {
        display: block;
        border-bottom: 1px solid rgb(61, 36, 36);
        box-sizing: border-box;
        height: auto;
        width: 100%;
        padding: 22px 17px;
        transition: 0.4s ease-in-out;
    }

    /* Removing hover effect on mobile sidebar links */
    .links a:hover {
        transform: scale(1.07);
        background-color: transparent;
    }

    /* Disabling the underline effect on mobile */
    .links a::before,
    .links a:hover::before {
        display: none;
    }

    .open-sidebar,
    .close-sidebar {
        display: block;
        padding: 0;
        cursor: pointer;
    }

    .close-sidebar {
        align-self: flex-start;
        padding: 22px 17px;
    }

    #sidebar-active:checked~.links {
        left: 0;
        display: flex;
        /* Ensure it's visible when checked */
    }

    #sidebar-active:checked~#close-overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 7;
    }
}

@media screen and (max-width: 417px) {
    .links {
        width: 100vw;
    }

    .links a {
        justify-content: flex-start;
    }

    .mobile-logo {
        display: block;
    }
}

/* Header Styling Ends */

/* .hero {
    background-image: url(https://thumbs.dreamstime.com/b/web-183431009.jpg?w=992);
    height: auto;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 992/497;
} */

/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 992/497;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay for text readability */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 1;
    /* Ensure overlay is above slider */
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.hero-overlay .event-date {
    font-size: 1.2em;
    font-weight: bold;
}

/* Hero Section Styling End  */

/* Welcome Section Styling Start  */

.welcome-section {
    position: relative;
    height: 57vh;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.welcome-content {
    position: relative;
    /* To bring it above the overlay */
    z-index: 1;
    /* max-width: 800px; */
    padding: 20px;
}

.welcome-content h1 {
    font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #FFD700;
    /* Gold color */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.welcome-content h2 {
    /* font-family: 'Tiro Devanagari Hindi', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5); */

    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
}



.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: auto;
}

/* Initially hide the extra text */
.more-text {
    display: none;
}

.dots::after {
    content: '....';
}

/* Style for the new Read More button */
#read-more-btn {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#read-more-btn:hover {
    background: #FFD700;
    color: #111;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media screen and (max-width: 727px) {
    .welcome-section {
        height: 67vh;
    }

    .welcome-content h1 {
        font-size: 2rem;
    }
}

/* Welcome Section Styling End */

/* Schedule Section Styling Start  */

#schedule {
    padding: 2px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
}

.poster-gallery {
    display: flex;
    gap: 5px;
    overflow-x: hidden;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.poster {
    min-width: 300px;
    height: 450px;
    background: #ddd;
    border-radius: 10px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

#schedule .nav-button {
    position: absolute;
    top: 67%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#schedule .nav-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

#schedule .nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#schedule .nav-button:disabled:hover {
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
}

#schedule .prev {
    left: 10px;
}

#schedule .next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .poster {
        min-width: 250px;
        height: 380px;
    }

    .poster-gallery {
        gap: 4px;
    }

    #schedule .nav-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .poster {
        min-width: 200px;
        height: 300px;
    }

    #schedule .nav-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    #schedule .prev {
        left: 5px;
    }

    #schedule .next {
        right: 5px;
    }
}

.gallery-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
    text-align: center;
}

.gallery-wrapper p {
    font-size: 1.1rem;
    color: var(--secondary-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
}

/* Schedule Modal Specific Width Only (Overrides for modal image when schedule poster is open) */
#modalImage.schedule-modal {
    width: 32%;
    max-width: 100vw;
}
@media (max-width: 768px) {
    #modalImage.schedule-modal {
        width: 80%;
    }
}

/* Schedule Section Styling Ends  */


/* Donation Section Styling Start  */

/* Main Section */
.ramleela-section {
    position: relative;
    font-family: 'Poppins', sans-serif;
    /* border: 2px solid #d4a017; */
    padding: 50px 60px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
    overflow: hidden;
}

/* Floating background bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.15);
    /* golden tint */
    animation: float 18s infinite ease-in-out;
    z-index: 0;
}

.bubble:nth-child(1) {
    width: 280px;
    height: 280px;
    top: -80px;
    left: -100px;
    animation-duration: 20s;
}

.bubble:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -60px;
    background: rgba(183, 28, 28, 0.12);
    /* maroon tint */
    animation-duration: 22s;
}

.bubble:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
    background: rgba(255, 87, 34, 0.1);
    /* saffron tint */
    animation-duration: 25s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}

/* QR BLOCK */
.qr-block {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.qr-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 6px;
    animation: glow 2s ease-in-out infinite alternate;
}

.qr-block .subtitle {
    font-size: 15px;
    margin-bottom: 25px;
    color: #5a3e36;
    font-style: italic;
}

/* QR Image Box */
.qr-image {
    display: inline-block;
    background: #fff;
    padding: 7px;
    border: 2px solid #d4a017;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    animation: pulse 2.5s infinite;
}

.qr-image img {
    width: 200px;
    height: 200px;
    display: block;
}

/* Account details */
.section-header {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #b22222;
    margin-bottom: 6px;
}

.section-header .subtitle {
    font-size: 15px;
    color: #5a3e36;
    margin: 0;
}

.account-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    justify-content: space-between;
    background: #fff6e5;
    border: 1px solid #f3d37a;
    padding: 18px 24px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.row:hover {
    background: #fffbe6;
    box-shadow: 0 4px 18px rgba(200, 150, 0, 0.25);
    transform: translateY(-3px);
}

.label {
    font-weight: 600;
    color: #6a1b09;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.highlight .value {
    color: #b71c1c;
    font-weight: 600;
    font-size: 20px;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 6px #ffb300, 0 0 10px #f57f17;
    }

    to {
        text-shadow: 0 0 15px #ff8f00, 0 0 25px #fbc02d;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 12px #ffb300;
    }

    50% {
        box-shadow: 0 0 30px #ff8f00;
    }

    100% {
        box-shadow: 0 0 12px #ffb300;
    }
}

/* Responsive */
@media(max-width: 650px) {
    .ramleela-section {
        padding: 30px 20px;
    }

    .row {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}



.upi-details {
    text-align: center;
    margin: 25px 0 35px;
}

.upi-details p {
    margin: 0 0 10px;
    font-size: 16px;
    color: #5a3e36;
}

.upi-copy-block {
    display: inline-flex;
    align-items: center;
    background: #fff6e5;
    border: 1px solid #f3d37a;
    border-radius: 8px;
    padding: 8px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.upi-copy-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#upi-id {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #b71c1c;
    font-weight: 600;
    margin-right: 12px;
    user-select: all;
}

.copy-btn {
    background: #d4a017;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.copy-btn:hover {
    background: #b28e14;
}

.copy-btn i {
    margin-right: 5px;
}

.payment-apps {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #5a3e36;
}

.payment-apps .app-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-apps .app-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.payment-apps .app-logo:hover {
    filter: grayscale(0%);
}

@media(max-width: 650px) {
    .upi-copy-block {
        flex-direction: column;
        padding: 10px;
        gap: 8px;
    }

    #upi-id {
        margin-right: 0;
    }

    .payment-apps .app-logos {
        gap: 15px;
    }
}



/* Donation Section Styling Ends  */


/* Sponsors Section Starts */

.sponsor-container {
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Sponsor Section Styling --- */
.sponsor-section {
    padding: 47px 0;
    text-align: center;
    /* background: linear-gradient(180deg, #ffffff, #f4f6f9); */
}

.sponsor-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
}

.sponsor-section-subtitle {
    font-size: 1.1rem;
    color: var(--dark);
    font-family: "Poppins", sans-serif;
    max-width: 700px;
    margin: 0 auto 60px auto;
    /* Centering the subtitle */
}

.sponsor-category {
    margin-bottom: 80px;
}

.sponsor-category h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    /* Darker, more professional blue */
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Heading Underline Effect */
.sponsor-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6347, #ff9a8b);
    /* Gradient underline */
    border-radius: 2px;
}

/* --- Partner - Premium Centered Grid --- */
.partner-grid {
    /* --- KEY CHANGE FOR CENTERING --- */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* This will center the items */
    gap: 25px;
}

.partner-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid gold;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.2);
    /* Even softer initial glow */
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    /* Increased transition duration */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    /* Fixed height for uniformity */
    width: 220px;
    /* Set a base width for items */
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.4), 0 0 35px rgba(255, 215, 0, 0.2);
    /* More subtle and glowing shadow */
}

.partner-card img {
    max-width: 85%;
    max-height: 90px;
    object-fit: contain;
    /* Prevents image distortion */
    transition: transform 0.3s ease;
}

.partner-card:hover img {
    transform: scale(1.05);
}

/* --- Latest Sponsors - Premium Centered Grid --- */
.latest-sponsors-grid {
    /* --- KEY CHANGE FOR CENTERING --- */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* This will center the items */
    gap: 25px;
}

.sponsor-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    /* Fixed height for uniformity */
    width: 220px;
    /* Set a base width for items */
}

.sponsor-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.1);
}

.sponsor-card img {
    max-width: 85%;
    max-height: 90px;
    object-fit: contain;
    /* Prevents image distortion */
    transition: transform 0.3s ease;
}

.sponsor-card:hover img {
    transform: scale(1.05);
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .sponsor-section-title {
        font-size: 2.2rem;
    }

    .sponsor-category h3 {
        font-size: 1.6rem;
    }

    .sponsor-card {
        height: 120px;
        width: 180px;
    }

    .welcome-content h2 {
        font-size: 1.2rem;
    }

    .brand img {
        width: 157px;
    }
}

.brand img {
    width: 200px;
}

@media (max-width: 480px) {
    .sponsor-section {
        padding: 50px 0;
    }

    .sponsor-section-title {
        font-size: 2rem;
    }

    .sponsor-card, .partner-card {
        height: 100px;
        width: calc(50% - 10px);
        /* 2 columns on small screens */
        padding: 15px;
    }

    .latest-sponsors-grid {
        gap: 20px;
    }

    .logo-list {
        gap: 40px;
        animation-duration: 25s;
    }

    .logo-list img {
        height: 50px;
    }
}

/* Sponsors Section Ends */

/* Live Section Styling Start  */
.live {
    padding: 0px 20px;
    text-align: center;
}

.live h2 {
    /* font-family: 'Noto Serif', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px; */

    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
    animation: glow 2s ease-in-out infinite alternate;
}

.live p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary-dark);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.live .card {
    max-width: 1227px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--light);
}

.live .card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .live h2 {
        font-size: 2.2rem;
    }

    .live p {
        font-size: 1.2rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 45px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light);
    background: var(--primary);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 12px 0px;
}

.cta-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: #d46804;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover svg {
    transform: scale(1.2);
}

/* Live Section Styling Ends */


/* Tribute Section Styling Start  */
.tribute-section {
    padding: 100px 20px;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
}

.tribute-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    /* Space between image and text */
}

.tribute-image {
    flex-basis: 35%;
    text-align: center;
}

.tribute-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    /* Circular frame */
    border: 6px solid #c9a55a;
    /* A classic gold color */
    box-shadow: 0 10px 40px rgba(201, 165, 90, 0.25);
    transition: transform 0.4s ease;
}

.tribute-image img:hover {
    transform: scale(1.05);
}

.tribute-text {
    flex-basis: 65%;
    color: #f0f0f0;
}

.tribute-text h3 {
    font-family: 'Playfair Display', serif;
    /* Elegant serif font */
    /* font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px; */

    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
}

.divider {
    height: 3px;
    background: #c9a55a;
    margin-bottom: 25px;
    border-radius: 2px;
}

.tribute-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 35px;
    font-family: 'Mozilla Headline';
}

.know-more-button {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 rgba(201, 165, 90, 0.3);
}

.know-more-button:hover {
    background-color: #c9a55a;
    color: #1a1a1a;
    /* Dark text on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(201, 165, 90, 0.3);
}

/* Responsive layout for mobile devices */
@media (max-width: 768px) {
    .tribute-container {
        flex-direction: column;
        /* Stacks image on top of text */
        text-align: center;
        gap: 40px;
    }

    .tribute-image img {
        width: 220px;
        height: 220px;
    }

    .tribute-text h3 {
        font-size: 2.2rem;
    }

    .divider {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tribute Section Styling Ends */

/* Gallary Section Styling Starts  */

.gallary-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 1rem 1rem;
    font-family: 'Poppins', sans-serif;
    /* background-color: #f8f9fa; */
    color: #343a40;
    line-height: 1.6;
}

/* Section headings and sub-headings */
.gallary-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallary-section-header h2 {
    /* font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: #FFEB3B 4px 5px 2px; */

    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
}

.gallary-section-header p {
    font-size: 1.1rem;
    color: var(--secondary-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Gallery Navigation Buttons */
.gallery-nav {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-nav button {
    background-color: transparent;
    border: 2px solid var(--secondary-dark);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 25px;
    margin: 0 10px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-nav button.active {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgb(0 0 0 / 54%);
}

.gallery-nav button:hover:not(.active) {
    background-color: #f3e5e9;
}

/* Gallery Grid Layouts */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(307px, 1fr));
    gap: 0.5rem;
}

@media screen and (max-width:787px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-button {
        padding: 12px 27px;
        font-size: 1.2rem;
    }
}

/* Common item styles */
.gallery-item {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Image specific styles */
.gallery-item img {
    width: 100%;
    height: 197px;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 787px) {
    .gallery-item img {
        height: 117px;
    }
}

/* Video specific styles to maintain aspect ratio */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* "View More" button styles */
.gallery-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary);
    /* A clean, professional blue */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 4px 0px 20px rgb(0 0 0 / 61%);
}

.btn-view-more:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
}

.btn-view-more i {
    margin-left: 10px;
}

/* Class to hide sections */
.hidden {
    display: none;
}

/* Full-screen Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    /* padding-top: 60px; */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Navigation Arrows */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Gallary Section Styling Ends  */


/* Members Section Styling Start  */

.peoples h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    color: #b22222;
    font-family: "Merriweather", serif;
}

.peoples h2 {
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
    color: #8b0000;
    text-align: center;
    font-weight: 600;
}

.peoples {
    /* margin: auto; */
    font-family: "Poppins", sans-serif;
    /* background: linear-gradient(to bottom, #fff8f0, #fdf3e7); */
    margin: 0;
    padding: 2rem 0rem;
    color: #333;
}

.scroll-container {
    position: relative;
}

.scroll-row {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

/* Cast Cards */
.cast-card {
    flex: 0 0 auto;
    width: 160px;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid #e7c27d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cast-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.cast-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cast-info {
    padding: 0.7rem;
    text-align: center;
    background: linear-gradient(to bottom, #fff8f0, #fff3da);
    height: 100%;
}

.cast-info h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    color: #8b0000;
}

.cast-info p {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
}

/* Members Circle Cards */
.member-card {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
}

.team {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.member-card img {
    width: 177px;
    height: 177px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e7c27d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.member-card img:hover {
    transform: scale(1.05);
}

.member-card h4 {
    margin: 0.6rem 0 0.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #8b0000;
}

.member-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

/* Navigation arrows */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 2;
}

.scroll-btn:hover {
    background: rgb(210 173 65);
    /* transform: translateY(-50%) scale(1.1); */
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .cast-card {
        width: 140px;
    }

    .cast-card img {
        height: 160px;
    }

    .member-card {
        width: 140px;
    }

    .member-card img {
        width: 137px;
        height: 137px;
    }

    .scroll-btn {
        display: none;
    }
}

@media (max-width: 500px) {
    .member-card h4 {
        font-size: 0.85rem;
    }

    .member-card p {
        font-size: 0.75rem;
    }
}

/* Members Section Styling Ends  */


/* About Us Section Styling Starts  */
.about-section {
    padding: 80px 27px;
    /* background: linear-gradient(135deg, #fff7e6, #ffe0b3); */
    font-family: 'Poppins', sans-serif;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-content {
    flex: 1 1 45%;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #b3541e;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #ff8800;
    left: 0;
    bottom: -10px;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-btn {
    display: inline-block;
    background: #ff8800;
    color: white;
    padding: 12px 25px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #b3541e;
    transform: translateY(-3px);
}

.about-image {
    flex: 1 1 45%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: justify;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* About Us Section Styling Ends */

/* Contact Us Styling Start  */
.contact-section {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Contact Section Container --- */
.contact-container {
    width: 100%;
    /* max-width: 1100px; */
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border: 1px solid var(--form-border);

}

/* --- Left Side: Contact Info --- */
.contact-info {
    background-color: var(--secondary-dark);
    color: var(--light);
    padding: 50px 40px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('https://www.toptal.com/designers/subtlepatterns/uploads/double-bubble-outline.png');
    background-blend-mode: overlay;
}

.contact-info h2 {
    font-family: 'Lora', serif;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 15px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary);
    width: 30px;
    text-align: center;
    margin-right: 15px;
}

/* --- New Decorative Element Style --- */
.closing-quote {
    margin-top: 30px;
    text-align: center;
}

.divider {
    width: 100%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(236, 117, 5, 0), rgba(236, 117, 5, 0.75), rgba(236, 117, 5, 0));
    margin-bottom: 20px;
}

.closing-quote p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--light);
    opacity: 0.8;
    margin: 0;
    /* Override default paragraph margin */
}


/* --- Right Side: Contact Form --- */
.contact-form {
    padding: 50px 40px;
    width: 60%;
}

.contact-form h2 {
    font-family: 'poppins', serif;
    color: var(--text-color);
    font-size: 28px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--form-border);
    border-radius: 8px;
    background-color: #fcfcfc;
    font-size: 16px;
    color: var(--secondary-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(236, 117, 5, 0.2);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #d46804;
    /* Darker shade of primary */
    transform: translateY(-2px);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {

    .contact-info,
    .contact-form {
        width: 100%;
    }

    /* .contact-info {
        border-radius: 20px 20px 0 0;
    } */

    .contact-form {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 576px) {

    .contact-info,
    .contact-form {
        padding: 30px 25px;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 24px;
    }
}

/* Contact Us Styling Ends */



/* Social Medeia Styling Start  */
/* The main section container */
.creative-social-section {
    font-family: "Mozilla Headline", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Takes good vertical space */
    padding: 50px 20px;
    /* A rich, dark, radial gradient background */
    /* background: radial-gradient(circle, #3a2a1a, #1a120a); */
    overflow: hidden;
    /* Ensures no weird overflows */
}

.social-container {
    text-align: center;
}

/* Section Title "FIND US ON" */
.social-section-title {
    font-family: "Mozilla Headline", sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    /* Gold color */
    /* letter-spacing: 3px; */
    margin-top: 0px;
    /* Glowing text effect */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7), 0 0 20px rgba(255, 153, 51, 0.5);
    animation: fadeInDown 1s ease-out;
    margin-bottom: 42px;
}

/* Wrapper for all the social media icons */
.social-icons-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Good for responsiveness */
    gap: 25px;
}

/* Each social media link element */
.social-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Transparent background */
    border: 1px solid var(--dark);
    /* Subtle gold border */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    animation: popIn 0.5s ease-out backwards;
}

/* Staggered animation for icons */
.social-icon:nth-child(1) {
    animation-delay: 0.6s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.7s;
}

.social-icon:nth-child(3) {
    animation-delay: 0.8s;
}

.social-icon:nth-child(4) {
    animation-delay: 0.9s;
}

.social-icon i {
    font-size: 1.8rem;
    color: var(--dark);
    /* Default icon color is gold */
    transition: all 0.3s ease;
}

/* Hover effects for the icon */
.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    /* Lifts up and grows */
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:hover i {
    color: #fff;
    /* Icon turns white on hover */
}

.social-icon:hover .label {
    opacity: 1;
    /* Show label on hover */
    transform: translateY(0);
}

/* Specific brand color backgrounds on hover */
.social-icon.youtube:hover {
    background-color: #FF0000;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
}

.social-icon.google-maps:hover {
    background-color: #34A853;
}

/* Keyframe animations for entrance effects */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .social-section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .social-icon {
        width: 60px;
        height: 60px;
    }

    .social-icon i {
        font-size: 1.6rem;
    }
}

/* Social Medeia Styling Ends */


/* Youtube Custom Embbed Styling Start  */

.yt-lite {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000 center/cover no-repeat;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.yt-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 57px;
    height: 57px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}

.yt-play::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.yt-lite.is-playing .yt-play {
    display: none;
}

/* Youtube Custom Embbed Styling Ends  */


/* Footer Styling Start  */
/* Footer Base */
.site-footer {
    position: relative;
    background: var(--secondary-dark);
    color: var(--light);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    overflow: clip;
}

/* Animated top ribbon */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--text-color), var(--primary));
    background-size: 200% 100%;
    animation: ribbon-move 10s linear infinite;
    opacity: 0.9;
}

@keyframes ribbon-move {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 20px 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px 24px;
}

/* Grid responsive */
@media (min-width: 640px) {
    .footer-wrap {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (min-width: 900px) {
    .footer-wrap {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--light);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
}



.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary-dark);
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: 0 6px 24px -10px rgba(236, 117, 5, 0.65);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(236, 117, 5, 0.45);
    animation: pulse 2.6s ease-in-out infinite;
}

/* @keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    70% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
} */

.tagline {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 42ch;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--light);
    margin: 0 0 12px;
    letter-spacing: 0.2px;
}

.footer-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: var(--primary);
    margin-top: 8px;
    border-radius: 2px;
}

/* Lists and links */
.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    position: relative;
    transition: color .25s ease, opacity .25s ease, transform .25s ease;
}

.site-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width .25s ease;
    border-radius: 1px;
}

.site-footer a:hover {
    color: var(--primary);
}

.site-footer a:hover::after {
    width: 100%;
}

.site-footer a:focus-visible {
    outline: 2px dashed var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Contact */
.contact-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 12px;
}

.contact-list address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.86);
}

/* Map Embed */
.map-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.6);
    aspect-ratio: 16 / 10;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.map-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.75);
    border-color: rgba(236, 117, 5, 0.5);
}

.map-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 120% at 0% 0%, rgba(236, 117, 5, 0.15), transparent 50%);
    opacity: .6;
    transition: opacity .3s ease;
}

.map-wrap:hover::after {
    opacity: .85;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.05) contrast(1.02);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 10px;
    padding: 16px 20px 24px;
    /* max-width: 1200px; */
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
    grid-template-columns: 1fr auto;
}

@media (max-width: 640px) {
    .footer-bottom {
        text-align: center;
        grid-template-columns: auto;
    }
}

.credit {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .site-footer::before,
    .brand-mark::before,
    .reveal,
    .map-wrap {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* Footer Styling Ends */