/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4169E1;
    --primary-dark: #1E40AF;
    --primary-light: #6495ED;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.3rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.nav-brand .logo {
    height: 72px;
    width: auto;
    max-width: none;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.25rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 8s ease infinite;
}

/* Store button styling with gradient box */
.nav-menu a[href*="etsy.com"] {
    color: white !important;
    -webkit-text-fill-color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 6.67s ease infinite;
    transition: transform 0.2s ease, filter 0.3s ease;
}

.nav-menu a[href*="etsy.com"]:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 200% 100%;
    animation: waterFlow 5.33s ease infinite;
}

/* Main Content */
main {
    flex: 1;
}

/* Animated Gradient Animation */
@keyframes waterFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 10s ease infinite;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.featured-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-item {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.featured-image,
.featured-image-placeholder {
    width: 100%;
    height: 300px;
    overflow: hidden;
    padding: 10px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
    box-sizing: border-box;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-image-placeholder {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.featured-item-info {
    padding: 1.5rem;
}

.featured-item-info h3 {
    text-align: center;
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.featured-item-info p {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Past Events Section */
.past-events-section {
    padding: 2rem 0 1rem 0;
    background-color: var(--bg-light);
    overflow: visible;
    min-height: calc(100vh - 150px);
}

.past-events-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.events-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem 1rem 1rem 1rem;
    height: calc(100vh - 200px);
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for cleaner look */
.events-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.events-scroll-container::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.events-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.events-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.event-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-item {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 800px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item-link:hover .event-item {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-item-image,
.event-item-image-placeholder {
    width: 100%;
    height: 450px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-item-image {
    padding: 10px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
}

.event-item-image img {
    border-radius: 8px;
}

.event-item-image-placeholder {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.event-item-info {
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.event-item-info h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.event-item-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2;
    flex-grow: 1;
    min-height: 200px;
}

.event-date,
.event-location {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
}

.event-date strong,
.event-location strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.event-view-details {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
    pointer-events: none;
}

.event-item-link:hover .event-view-details {
    color: var(--primary-dark);
}

/* Gallery Section */
.gallery-section {
    padding: 2rem 0 4rem 0;
}

.gallery-section-header {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-section-header > div {
    text-align: center;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.gallery-subtitle,
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.jump-to-events-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: white !important;
    -webkit-text-fill-color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 6.67s ease infinite;
    transition: transform 0.2s ease, filter 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-block;
}

.jump-to-events-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-item {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-image,
.gallery-image-placeholder {
    width: 100%;
    height: 220px;
    overflow: hidden;
    padding: 10px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
    box-sizing: border-box;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-image-placeholder {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.gallery-item-info {
    padding: 1rem;
}

.gallery-item-info h3 {
    color: var(--text-color);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.gallery-item-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Gallery Events Section */
.gallery-events-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.gallery-events-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.gallery-event-link {
    text-decoration: none;
    color: inherit;
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-event-item {
    background-color: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-event-image,
.gallery-event-image-placeholder {
    width: 100%;
    height: 500px;
    overflow: hidden;
    padding: 10px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
    box-sizing: border-box;
}

.gallery-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.gallery-event-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

.gallery-event-info {
    padding: 2rem;
    text-align: center;
}

.gallery-event-info h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.gallery-event-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-info h3 {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-item a {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 8s ease infinite;
    text-decoration: none;
    display: inline-block;
}

.contact-item a:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 6.67s ease infinite;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 10s ease infinite;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

footer p {
    opacity: 0.9;
}

/* Item Detail Page */
.item-detail-section {
    padding: 1.5rem 0 4rem 0;
    min-height: 60vh;
}

.item-detail-header {
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-dark);
}

.item-info-section .item-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 10s ease infinite;
}

.item-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.item-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.item-images-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
}

.item-main-image img {
    width: 100%;
    height: auto;
    min-height: 500px;
    display: block;
    border-radius: 8px;
    object-fit: contain;
    background-color: var(--bg-light);
}

.item-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    padding: 5px;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 8s ease infinite;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #20B2AA;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.item-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.item-description {
    margin-bottom: 1rem;
}

.short-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.item-specifications {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.specs-list {
    display: grid;
    gap: 0.75rem;
}

.specs-list dt {
    font-weight: 600;
    color: var(--text-color);
}

.specs-list dd {
    color: var(--text-light);
    margin: 0;
    margin-left: 1rem;
}

.item-price {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-color);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterFlow 8s ease infinite;
}

.item-actions {
    margin-top: 1rem;
}

.inquiry-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(-45deg, #4169E1, #6495ED, #20B2AA, #40E0D0, #4169E1);
    background-size: 400% 400%;
    animation: waterFlow 6.67s ease infinite;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s ease, filter 0.3s ease;
}

.inquiry-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.item-not-found {
    text-align: center;
    padding: 4rem 2rem;
}

.item-not-found h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.item-not-found p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-section h2,
    .featured-section h2,
    .gallery-section h2,
    .past-events-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .item-detail-content {
        grid-template-columns: 1fr;
    }
    
    .item-info-section .item-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .about-section,
    .featured-section,
    .gallery-section,
    .past-events-section,
    .contact-section,
    .item-detail-section {
        padding: 2rem 0;
    }
    
    .events-scroll-container {
        height: calc(100vh - 180px);
        padding: 0.5rem;
        gap: 1.5rem;
    }
    
    .event-item {
        min-height: 700px;
    }
    
    .event-item-info {
        min-height: 300px;
    }
    
    .event-item-info p {
        min-height: 150px;
    }
    
    .event-item-image,
    .event-item-image-placeholder {
        height: 400px;
    }
    
    .event-item-info {
        padding: 2rem;
    }
    
    .event-item-info h3 {
        font-size: 1.75rem;
    }
    
    .event-item-info p {
        font-size: 1.1rem;
    }
    
    .item-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .item-info-section .item-title {
        font-size: 2rem;
    }
    
    .item-thumbnails {
        justify-content: center;
    }
}
