/* Color System */
:root {
    --primary-red: #E31E24;
    --dark-burgundy: #4A1115;
    --olive-dark: #2C2A1C;
    --brown-accent: #8B4513;
    --light-overlay: rgba(255, 255, 255, 0.95);
    --hover-red: #C41920;
    --light-burgundy: #6A1D22;
    --light-gray: #F5F5F5;
}

body {
    background-color: var(--light-gray);
}

/* Links */
a {
    color: var(--primary-red);
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--hover-red);
    /* transform: translateY(-1px); */
}

/* Buttons and Interactive Elements */
.btn-primary {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    padding: 0.6rem 1.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(227, 30, 36, 0.2) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--hover-red) !important;
    border-color: var(--hover-red) !important;
    /* transform: translateY(-2px) !important; */
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3) !important;
}

.btn-primary:active {
    background-color: var(--dark-burgundy) !important;
    border-color: var(--dark-burgundy) !important;
    /* transform: translateY(0) !important; */
}

.btn-outline-primary {
    color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: white !important;
}

/* Navigation Menu - Update hover effects */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--hover-red);
}

.navbar-nav .nav-link::after {
    background-color: var(--hover-red);
    height: 2px;
    opacity: 0.8;
}

.navbar-nav .current-menu-item .nav-link {
    color: var(--primary-red);
}

/* Buttons and Interactive Elements */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
}

/* Footer */
.site-footer {
    background-color: var(--olive-dark);
    color: #FFFFFF;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
    color: var(--primary-red);
}

/* Links */
a {
    color: var(--primary-red);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-burgundy);
    text-decoration: none;
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: white;
}

::-moz-selection {
    background: var(--primary-red);
    color: white;
}

/* Logo Styling */
.custom-logo-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-logo {
    max-height: 40px;
    width: auto;
    height: auto;
}

/* Responsive Logo */
@media (min-width: 576px) {
    .custom-logo {
        max-height: 45px;
    }
}

@media (min-width: 768px) {
    .custom-logo {
        max-height: 50px;
    }
}

@media (min-width: 992px) {
    .custom-logo {
        max-height: 55px;
    }
}
/* Hero Section */
.hero {
    margin-top: -1.5rem;
}

.hero-image {
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero {
        height: 500px !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.min-vh-75 {
    min-height: 75vh;
}

/* Artwork Cards */
/* .artwork-card {
    transition: transform 0.3s ease;
} */

/* .artwork-card:hover {
    transform: translateY(-8px);
} */

.artwork-image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.artwork-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-image-wrapper:hover .artwork-overlay {
    opacity: 1;
}

/* Gallery and Images */
.gallery-zoom .zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2rem;
}

.gallery-zoom:hover .zoom-overlay {
    opacity: 1;
}

.main-artwork-image {
    height: 500px;
    object-fit: cover;
}

.gallery-thumb img {
    height: 150px;
    object-fit: cover;
}

/* Artist Thumbnail */
.thumbnail-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    padding-bottom: 0;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Category Cards */
.category-card {
    aspect-ratio: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Styles */
.footer-links li a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 4px 0;
}

.footer-links li a:hover {
    color: #212529;
}

.social-links a {
    font-size: 1.25rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.footer-contact li {
    color: #6c757d;
}

.footer-contact i {
    color: #212529;
}

/* Archive and Category Pages */
.archive-header hr,
.entry-header hr {
    width: 100px;
}

/* Card Styles */
.card {
    /* transition: box-shadow 0.3s ease; */
}

.card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; */
}
.view-details {
    color: white;
    font-size: 0.9rem;
    padding: 12px 24px;
    border: 1.5px solid white;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.artwork-image-wrapper:hover .view-details {
    transform: translateY(0);
}

/* Filter Styles */
.form-select {
    height: 50px;
    border-radius: 12px;
}

.form-select:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

/* Pagination Styles */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    margin: 0 4px;
    text-decoration: none;
    color: #212529;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: #212529;
    color: white;
    border-color: #212529;
}

.artist-name {
    font-size: 0.95rem;
}

.artwork-meta {
    font-size: 0.85rem;
}
