/* WineScore Custom Styles - Wine Store Theme */

/* Color Variables */
:root {
    --burgundy: #8B1A1A;
    --burgundy-dark: #6B0F0F;
    --burgundy-light: #A52A2A;
    --cream: #F8F6F1;
    --cream-dark: #EAE6DD;
    --gold: #C9A227;
    --gold-light: #D4B44A;
    --red-button: #C13A3A;
    --red-button-hover: #A52A2A;
    --text-dark: #333333;
    --text-light: #666666;
    --border-light: #E5E5E5;
}

body {
    background-color: var(--cream);
}

/* Header gradient pattern */
.header-bar {
    background: linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Navigation bar */
.nav-bar {
    background: linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
}

/* Wine card hover effect */
.wine-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-light);
}

.wine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Rating badge */
.rating-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Red buttons */
.btn-red {
    background: var(--red-button);
    color: white;
    transition: background 0.2s ease;
}

.btn-red:hover {
    background: var(--red-button-hover);
}

/* Navigation active state */
.nav-link.active {
    background: rgba(255,255,255,0.1);
}

/* Hero section */
.hero-section {
    background: linear-gradient(180deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
}

/* Product card */
.product-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

/* Table styles */
.leaderboard-table tr:hover {
    background-color: #FFF9E6;
}

.leaderboard-table thead {
    background: var(--burgundy);
}

/* Footer */
.footer {
    background: #E8E4DB;
    border-top: 3px solid var(--burgundy);
}

/* Decorative pattern overlay */
.pattern-overlay {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
