.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Lato', sans-serif;
}

.font-didot {
    font-family: 'Didot', 'Times New Roman', serif;
    font-weight: 700;
}

.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.nav-sticky {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover h3 {
    color: #C19A6B;
}
/* /dc2626 red old/ */
.gallery-item:hover p {
    color: #C19A6B;
}

.gallery-item:hover span {
    color: #C19A6B;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C19A6B 0%, #b91c1c 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #C19A6B;
    border-color: #C19A6B;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.text-accent {
    color: #ffffff;
}

.text-maroon {
    color: #ffffff;
}

.bg-maroon {
    background-color: #000000;
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #C19A6B !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #C19A6B;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.exhibition-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    border-color: #C19A6B;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

.exhibition-card:hover h3 {
    color: #C19A6B;
}

.exhibition-card:hover p {
    color: #C19A6B;
}

.exhibition-card:hover span {
    color: #C19A6B;
}

.artisan-quote {
    position: relative;
    font-style: italic;
    padding-left: 2rem;
}

.artisan-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #ffffff;
    line-height: 1;
}

/* Red border hover effect for all images */
img {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

img:hover {
    border-color: #C19A6B;
    transform: scale(1.02);
}