@font-face {
    font-family: 'GT Pressura';
    src: url('fonts/GT-Pressura-Standard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GT Pressura';
    src: url('fonts/GT-Pressura-Standard-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'GT Pressura Extended';
    src: url('fonts/GT-Pressura-Extended-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #3e5a3c; /* Forest green from logo */
    --secondary-color: #F2E5D2; /* Darker secondary for reference site feel */
    --accent-color: #ffcc00; /* Yellow accent often seen in comedy branding */
    --text-color: #333;
    --header-bg: #3B5433;
    --footer-bg: #395030;
    --body-bg: #F2E5D2;
    --white: #ffffff;
}

body {
    font-family: 'GT Pressura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    background-color: var(--body-bg);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h2, .product-title, .product-details h2 {
    font-family: 'GT Pressura', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 900;
}

.main-content {
    flex: 1;
}

/* Navbar */
.navbar {
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: center;
}

.navbar-brand img {
    max-height: 60px;
}

/* Page Heading */
h2 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: none;
    border-radius: 0; /* Boxy look often used in modern festival sites */
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: transparent;
    padding: 5px;
    will-change: transform;
}

.product-card .card-body {
    text-align: center;
    padding: 1rem 0.5rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-title {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 0.75rem; /* Reduced from 0.85rem */
}

/* Modal Gallery Styling */
.modal-content {
    border-radius: 7px;
    border: none;
    background: #F2E5D2;
}

.modal-header {
    border-bottom: 2px solid var(--primary-color);
    background-color: var(--primary-color);
    color: var(--white);
}
.modal-header .modal-title{
    color: var(--secondary-color);
}
.modal-header .btn-close {
    filter: invert(1);
}

.main-img-container {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.main-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid transparent;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
}

.thumbnail-img:hover, .thumbnail-img.active {
    border-color: var(--primary-color);
}

.product-details {
    padding: 20px;
}

.product-details h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
    text-transform: uppercase;
}

.product-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-color);
}


/* Footer Styling */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 60px 0;
    margin-top: 50px;
}

footer p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

footer .container {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}
