/* ============================================
   DAC - Delhi Art Community
   Custom Styles — Fully Responsive
   ============================================ */


/* ---------- Google Fonts ---------- */

/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600;700&display=swap'); */

/* ---------- CSS Variables ---------- */

:root {
    --color-cream: #FAF7F2;
    --color-cream-dark: #F0EBE1;
    --color-charcoal: #2C2C2C;
    --color-charcoal-light: #4A4A4A;
    --color-gold: #C8A96E;
    --color-gold-light: #D4BC8B;
    --color-gold-dark: #B8964F;
    --color-white: #FFFFFF;
    --color-muted: #8A8A8A;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1EBE57;

  --font-heading: 'EXOT350B', serif;
    --font-body: 'Champagne & Limousines', sans-serif;
}

@font-face {
    font-family: 'EXOT350B';
    src: url('../fonts/exotc350-bd-bt/EXOT350B.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'EXOT350B-Bold';
    src: url('../fonts/exotc350-bd-bt/Exotc350BdBTBold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Champagne & Limousines';
    src: url('../fonts/champagne-limousines-2/Champagne%20%26%20Limousines.ttf') format('truetype');
}




/* ---------- Base ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
      font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-charcoal);
        letter-spacing: 1.2px;
}

a {
    color: var(--color-gold-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
p,
span,
li,
a {
    font-family: var(--font-body);
    letter-spacing: 1.2px;
}
a:hover {
    color: var(--color-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 50px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-muted);
    max-width: 100%;
    margin: 0 auto 3rem;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    border: none;
    margin: 0 auto 1.5rem;
}


/* ---------- Navbar ---------- */

.navbar-custom {
    background-color: var(--color-cream);
    border-bottom: 1px solid var(--color-cream-dark);
    padding: 18px 0;
    transition: box-shadow 0.3s ease;
    z-index: 1050;
}

.navbar-custom.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: 2px;
}

.navbar-custom .nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-charcoal-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px !important;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--color-gold);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}


/* ---------- Hero ---------- */

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    margin-top: 95px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #fff;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--color-white);
    max-width: 600px;
    animation: heroFadeUp 0.85s ease both;
}

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

.hero-content .tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.25rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-swiper-next,
.hero-swiper-prev {
    color: var(--color-gold-light) !important;
    background: rgba(0, 0, 0, 0.32);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: background 0.3s;
}

.hero-swiper-next:hover,
.hero-swiper-prev:hover {
    background: rgba(179, 142, 79, 0.72);
}

.hero-swiper-next::after,
.hero-swiper-prev::after {
    font-size: 1.1rem !important;
    font-weight: 800;
}

.hero-swiper-pagination {
    bottom: 26px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
    transition: background 0.3s, transform 0.3s;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold-light);
    transform: scale(1.35);
}


/* ---------- Buttons ---------- */

.btn-gold {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-gold:hover {
    background-color: var(--color-gold-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-gold-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 36px;
    border: 1.5px solid var(--color-gold);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-gold-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}


/* ---------- What We Do ---------- */

.whatwedo-section {
    background-color: var(--color-cream);
}

.whatwedo-card {
    padding: 2rem 1.5rem .2rem;
}

.whatwedo-card h5 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.whatwedo-card p {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.2;
}

.whatwedo-icon {
    width: 70px;
    height: 70px;
    border: 1.5px solid #999;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #000;
}


/* ---------- Categories ---------- */

.categories-section {
    background-color: var(--color-white);
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    cursor: pointer;
}

.category-card img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
    width: 100%;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--color-white);
}

.category-overlay h3 {
    font-size: 1.75rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.category-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 1px;
}


/* ---------- Numbers ---------- */

.numbers-section {
    background-color: var(--color-white);
}

.number-card {
    padding: 2rem 1rem 0rem;
}

.number-card h3 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.number-card p {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-muted);
}


/* ---------- Journal ---------- */

.featured-section {
    background-color: var(--color-cream);
}

.art-card {
    background: var(--color-white);
    border: none;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.art-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.art-card img {
    height: 320px;
    object-fit: contain;
    width: 100%;
}

.art-card .card-body {
    padding: 1.5rem;
}

.art-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.art-card .card-text {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}


/* ---------- Gallery ---------- */

.gallery-section {
    background-color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background: #f2eeee;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    /* inset: 0; */
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
    bottom: 0;
    left: 0;
    right: 0;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.gallery-item:hover .gallery-overlay span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}


/* ---------- About ---------- */

.about-section {
    background-color: var(--color-cream);
}

.about-section .about-text {
    font-size: 1.05rem;
    color: var(--color-charcoal-light);
    line-height: 1.9;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-muted);
}


/* ---------- Seasons ---------- */

.seasons-section {
    background-color: var(--color-cream-dark);
}


/* ---------- Team ---------- */

.team-section {
    background-color: var(--color-white);
}

.team-card {
    text-align: center;
    background: transparent;
    border: none;
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--color-cream-dark);
    transition: border-color 0.3s ease;
}

.team-card:hover img {
    border-color: var(--color-gold);
}

.team-card h5 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--color-muted);
    max-width: 260px;
    margin: 0 auto;
}


/* ---------- Testimonials ---------- */

.testimonials-section {
    background-color: var(--color-cream);
}

.testimonial-card {
    background-color: var(--color-white);
    border: none;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
    height: 100%;
}
.testimonial-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
        object-position: top;
}
.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-card .stars {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-charcoal-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-card .client-name {
    font-weight: 600;
    font-size: 0.95rem;
    
    color: var(--color-charcoal);
    margin-bottom: 0px ;
}

.testimonial-card .client-location {
    font-size: 0.8rem;
    color: var(--color-muted);
    letter-spacing: 1px;
}


/* ---------- Newsletter ---------- */

.newsletter-section {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.newsletter-section .section-title {
    color: var(--color-white);
}

.newsletter-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 0;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .form-control:focus {
    border-color: var(--color-gold);
    box-shadow: none;
}


/* ---------- Contact ---------- */

.contact-section {
    background-color: var(--color-cream);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-info-item .icon-box {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--color-cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-info-item h6 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--color-charcoal);
    margin: 0;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--color-white);
    border: 1px solid var(--color-cream-dark);
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: 0;
    color: var(--color-charcoal);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: none;
}

.contact-form textarea {
    min-height: 140px;
}


/* ---------- WhatsApp Button ---------- */

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}


/* ---------- Footer ---------- */

.footer {
    background-color: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

.footer h5 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.65rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
    font-size: 0.85rem;
}

.footer .social-icons a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: var(--color-gold);
}


/* ---------- Back to Top ---------- */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--color-gold-dark);
}

.back-to-top.show {
    display: flex;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */


/* Large Tablets / Small Desktops (≤1199px) */

@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.4rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .navbar-custom .nav-link {
        padding: 8px 11px !important;
        font-size: 0.78rem;
    }
}


/* Tablets (≤991px) */

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.1rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .hero-section {
        height: 70vh;
        min-height: 440px;
        margin-top: 78px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-swiper-next,
    .hero-swiper-prev {
        width: 40px !important;
        height: 40px !important;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-item-wide {
        grid-column: span 1;
    }
    .about-section img {
        height: 360px !important;
    }
    .seasons-section .col-lg-6 img {
        height: 320px !important;
    }
    .team-card img {
        width: 170px;
        height: 170px;
    }
    .number-card h3 {
        font-size: 2.25rem;
    }
    .stat-item h3 {
        font-size: 2rem;
    }
    /* Mobile navbar */
    .navbar-collapse {
        padding: 12px 0 16px;
        border-top: 1px solid var(--color-cream-dark);
        margin-top: 10px;
    }
    .navbar-custom {
        padding: 14px 0;
    }
}


/* Mobile (≤767px) */

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 4px;
    }
    .hero-section {
        height: auto;
        min-height: 300px;
        margin-top: 70px;
    }
    .hero-swiper .swiper-slide img {
        object-fit: cover;
        min-height: 300px;
        max-height: 60vw;
    }
    .hero-content h1 {
        font-size: 1.85rem;
    }
    .hero-content .tagline {
        font-size: 0.68rem;
        letter-spacing: 2px;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .hero-swiper-next,
    .hero-swiper-prev {
        width: 34px !important;
        height: 34px !important;
    }
    .hero-swiper-next::after,
    .hero-swiper-prev::after {
        font-size: 0.8rem !important;
    }
    .whatwedo-card {
        padding: 0rem 1rem;
    }
    .whatwedo-icon {
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }
    .category-card img {
        height: 220px;
    }
    .category-overlay h3 {
        font-size: 1.35rem;
    }
    .number-card {
        padding: 1.25rem 0.5rem;
    }
    .number-card h3 {
        font-size: 1.9rem;
    }
    .number-card p {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    .art-card img {
        height: 230px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 155px;
        gap: 8px;
    }
    .gallery-item-tall {
        grid-row: span 1;
    }
    .gallery-item-wide {
        grid-column: span 2;
    }
    .gallery-overlay span {
        font-size: 1rem;
    }
    .about-section img {
        height: 260px !important;
        margin-top: 1.5rem;
    }
    .stat-item h3 {
        font-size: 1.7rem;
    }
    .stat-item p {
        font-size: 0.75rem;
    }
    .seasons-section .col-lg-6 img {
        height: 230px !important;
    }
    .seasons-section .ps-lg-4 {
        padding-left: 0 !important;
        margin-top: 1.5rem;
    }
    .team-card img {
        width: 145px;
        height: 145px;
    }
    .team-card h5 {
        font-size: 1.1rem;
    }
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    .testimonial-card blockquote {
        font-size: 1rem;
    }
    /* Newsletter stacks vertically */
    .newsletter-form {
        flex-direction: column;
        gap: 12px !important;
    }
    .newsletter-form .form-control {
        width: 100%;
    }
    .newsletter-form .btn-gold {
        width: 100%;
        text-align: center;
    }
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    .footer {
        padding: 45px 0 0;
    }
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-top: 36px;
        padding: 18px 0;
    }
    .back-to-top {
        bottom: 18px;
        right: 14px;
        width: 38px;
        height: 38px;
    }
}


/* Small phones (≤479px) */

@media (max-width: 479.98px) {
    .section-title {
        font-size: 1.5rem;
    }
    .hero-section {
        margin-top: 64px;
    }
    .hero-swiper .swiper-slide img {
        max-height: 55vw;
    }
    .navbar-custom .navbar-brand img {
        height: 34px !important;
    }
    .category-card img {
        height: auto;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
    }
    .number-card h3 {
        font-size: 1.65rem;
    }
    /* Hero CTA buttons go full-width */
    .hero-content .btn-gold,
    .hero-content .btn-gold-outline {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        margin-right: 0 !important;
    }
    .team-card img {
        width: 130px;
        height: 130px;
    }
    .team-card p {
        font-size: 0.82rem;
    }
}


/* Touch device improvements */

@media (hover: none) {
    .gallery-item .gallery-overlay {
        background: rgba(0, 0, 0, 0.3);
    }
    .gallery-item .gallery-overlay span {
        opacity: 1;
        transform: translateY(0);
    }
    .art-card:hover {
        transform: none;
        box-shadow: none;
    }
    .category-card:hover img {
        transform: none;
    }
}


/* ---------- Responsive inline-height overrides ---------- */

@media (max-width: 991.98px) {
    .about-img-resp {
        height: 360px !important;
    }
}

@media (max-width: 767.98px) {
    .about-img-resp {
        height: 260px !important;
    }
    /* Seasons image */
    .seasons-section img.w-100 {
        height: 230px !important;
    }
}

@media (max-width: 479.98px) {
    .about-img-resp {
        height: 220px !important;
    }
    .seasons-section img.w-100 {
        height: 200px !important;
    }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .hero-section,
    .hero-swiper .swiper-slide img {
        min-height: auto;
        height: auto;
        object-fit: fill;
    }
    .hero-section {
        margin-top: 75px;
    }
}




p.role {
    color: black !important;
}