/* Papa Giovanni's Restaurant - Main Stylesheet */

:root {
    --dark-green: #134F19;
    --accent-green: #2d8a3e;
    --light-green: #1a5c22;
    --logo-green: #2a6b31;
    --black: #0a0a0a;
    --off-black: #111111;
    --white: #ffffff;
    --off-white: #f8f8f6;
    --cream: #f5f3ef;
    --gray: #e8e6e1;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f5f8f5 0%, #ffffff 100%);
}

/* Header & Navigation */
header {
    background-color: rgba(248, 248, 246, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

.hamburger svg {
    width: 28px;
    height: 28px;
    stroke: var(--dark-green);
    stroke-width: 2;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--dark-green);
}

/* Elegant underline animation */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Active/Current page */
nav a.active {
    color: var(--dark-green);
    font-weight: 500;
}

nav a.active::after {
    width: 100%;
}

/* CTA Button */
.nav-cta {
    background: var(--dark-green);
    border: 1px solid var(--dark-green);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: transparent;
    border-color: #8b0000;
    color: #8b0000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(200, 230, 200, 0.5) 0%, rgba(200, 230, 200, 0.5) 50%, rgba(80, 20, 20, 0.8) 100%), url('/papascene.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Subtle green glow */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(19, 79, 25, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative vertical line */
.hero-decorative-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8rem;
    background: linear-gradient(to bottom, transparent, rgba(19, 79, 25, 0.4));
    animation: fadeInDown 1.2s ease-out;
}

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

/* Logo styling */
.hero-logo {
    width: 900px;
    height: auto;
    margin: 2rem auto 0;
    display: block;
    filter: brightness(0) saturate(100%) invert(24%) sepia(23%) saturate(1497%) hue-rotate(85deg) brightness(97%) contrast(91%);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Top accent line */
.hero-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideFromTop 1s ease-out;
}

.hero-line {
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-green), transparent);
}

.hero-year {
    color: var(--dark-green);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1rem;
}

/* Main title */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-title-line {
    display: block;
}

.hero-title-line:last-child {
    margin-top: -0.5rem;
}

/* Tagline */
.hero-tagline {
    font-size: 2.5rem;
    color: #333333;
    margin-top: 2rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.05em;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

.tagline {
    font-size: 1.6rem;
    color: #000000;
    font-style: italic;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 2rem;
    border-radius: 4px;
}

/* Decorative diamond */
.hero-diamond {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin: 3rem auto 0;
    animation: scaleIn 0.8s ease-out 0.7s backwards;
}

.diamond-outer,
.diamond-inner {
    position: absolute;
    border: 1px solid rgba(19, 79, 25, 0.35);
    transform: rotate(45deg);
}

.diamond-outer {
    inset: 0;
}

.diamond-inner {
    inset: 0.5rem;
    border-color: rgba(19, 79, 25, 0.2);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 1s backwards, float 1.5s ease-in-out 1s infinite;
}

.scroll-text {
    color: #4a6b4d;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, rgba(19, 79, 25, 0.6), transparent);
}

/* Animations */
@keyframes slideFromTop {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(3rem, 15vw, 6rem);
    }
    
    .hero-diamond {
        width: 3rem;
        height: 3rem;
    }
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    padding: 5rem 2rem;
    margin-bottom: 0;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 3rem;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
    display: block;
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
}

h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Menu Items */
.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark-green);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(19, 79, 25, 0.2);
}

.menu-items {
    display: grid;
    gap: 1rem;
}

.menu-item {
    border-bottom: 1px solid var(--gray);
    padding-bottom: 1rem;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.menu-item-price {
    font-size: 1.1rem;
    color: var(--dark-green);
    font-weight: 600;
}

.menu-item-description {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-section {
    text-align: center;
}

.gallery-intro {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Gallery Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-green);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Events Section */
.events-section {
    text-align: left;
}

.events-intro {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.event-card {
    background: linear-gradient(135deg, #f5f8f5 0%, #e8f0e8 100%);
    padding: 2rem;
    border-top: 3px solid var(--dark-green);
    display: flex;
    flex-direction: column;
    text-align: center;
}



.event-card h3 {
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.event-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.event-frequency {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
    padding: 0.3rem 0.75rem;
    margin-top: auto;
    align-self: center;
}

.event-social {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    justify-content: center;
}

.event-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #8b0000;
    border: none;
    color: var(--white);
    text-decoration: none;
}

.event-social a svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
}

.event-social a:hover {
    background: #a52a2a;
    color: var(--white);
}

.event-social a:hover svg {
    stroke: var(--white);
}

/* Weekly Specials - Fancy Adverts */
.specials-section {
    text-align: center;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .specials-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.special-advert {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9f8 100%);
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(19, 79, 25, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    width: 100%;
}

.special-advert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-green), #8b0000);
}

.special-advert.featured {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9f8 100%);
    color: var(--text-dark);
}

.special-advert.featured .special-desc {
    color: inherit;
}

.special-advert.featured h3 {
    color: var(--dark-green);
}

.special-advert.featured .special-day {
    color: #8b0000;
}

.special-advert.featured .special-price {
    color: var(--dark-green);
}

.special-day {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8b0000;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.special-advert h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
}

.special-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-green);
    display: block;
}

.special-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: -0.5rem;
}

/* Menu Section with Tabs */
.menu-section {
    text-align: center;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    border-bottom: 1px solid rgba(19, 79, 25, 0.2);
    padding-bottom: 1rem;
}

.menu-tab {
    background: transparent;
    border: 1px solid var(--dark-green);
    color: var(--dark-green);
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

.menu-tab.active {
    background: rgba(139, 0, 0, 0.15);
    border-color: #8b0000;
    color: #8b0000;
}

.menu-content {
    position: relative;
    min-height: 400px;
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

.menu-items-grid {
    display: grid;
    gap: 0;
}

@media (min-width: 768px) {
    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .menu-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-section .menu-item {
    background: transparent;
    padding: 1.25rem 0.5rem;
    text-align: left;
    border-left: none;
    border-bottom: 1px solid rgba(19, 79, 25, 0.15);
}

/* Contact Section - Columns on Desktop */
.contact-section {
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid .info-card:nth-child(4) {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid .info-card:nth-child(4) {
        grid-column: 1 / -1;
    }
}

.contact-grid .info-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f8f5 0%, #e8f0e8 100%);
    border-left: none;
    border-top: 3px solid var(--dark-green);
}

.contact-grid .info-card h3 {
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-grid .info-card h3 i,
.contact-grid .info-card h3 svg {
    width: 48px;
    height: 48px;
    color: var(--dark-green);
}

.contact-footer {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.contact-footer p {
    margin-bottom: 0.5rem;
}

/* Newsletter Subscription */
.newsletter {
    background: linear-gradient(135deg, #f5f8f5 0%, #e8f0e8 100%);
    color: var(--text-dark);
    padding: 4rem 2rem;
    text-align: center;
    margin: 0;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-green), transparent);
}

.newsletter h3 {
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(19, 79, 25, 0.3);
    border-radius: 0;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--dark-green);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
    border-radius: 0;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.newsletter-form button:hover {
    background: var(--dark-green);
    color: var(--white);
}

/* Contact Form */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f8f5 0%, #e8f0e8 100%);
    border-left: 3px solid var(--dark-green);
}

.info-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark-green);
}

.info-card a {
    color: var(--dark-green);
    text-decoration: none;
}

.info-card a:hover {
    color: #8b0000;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn {
    background: transparent;
    color: var(--dark-green);
    padding: 1rem 2.5rem;
    border: 2px solid var(--dark-green);
    border-radius: 0;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.specials-intro {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-align: center;
}

.btn:hover {
    background: var(--dark-green);
    color: var(--white);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #f5f8f5 0%, #e8f0e8 100%);
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dark-green), transparent);
}

footer a {
    color: var(--dark-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-green);
}

.websiteworks-link {
    color: #8b0000;
    text-decoration: none;
    font-weight: 700;
}

.websiteworks-link:hover {
    color: #a52a2a;
    text-decoration: underline;
}

/* About Section */
.about {
    position: relative;
}

.about-content {
    display: block;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    margin-top: 3rem;
    text-align: center;
}

.about-image img {
    max-width: 380px;
    width: 100%;
    height: auto;
    display: inline-block;
    border: 3px solid var(--dark-green);
    padding: 8px;
    background: linear-gradient(135deg, #f5f8f5 0%, #e8f0e8 100%);
    box-shadow: 0 12px 30px rgba(19, 79, 25, 0.25);
    filter: grayscale(100%) contrast(1.1);
}

.hours {
    background: linear-gradient(135deg, #f5f8f5 0%, #e8f0e8 100%);
    padding: 2.5rem;
    border-left: 3px solid var(--dark-green);
    color: var(--text-dark);
}

.hours h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-green);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hours p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (min-width: 1200px) {
    .hero-logo {
        width: 600px;
    }
    
    .hero-tagline {
        font-size: 2.2rem;
    }
}

@media (max-width: 1200px) {
    main {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-logo {
        width: 500px;
    }
    
    .hero-tagline {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    nav ul {
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
        min-height: 60px;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
        display: block;
        max-width: none;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        text-align: left;
        gap: 1.5rem;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        width: clamp(280px, 55vw, 450px);
        margin-top: -2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
    
    main {
        padding: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .special-card,
    .event-card,
    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        min-height: 60px;
        padding: 0.75rem 0;
    }
    
    .hamburger {
        right: 0.75rem;
    }
    
    nav ul li a {
        font-size: 0.95rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem !important;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-year {
        font-size: 0.65rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .modal-prev,
    .modal-next {
        padding: 0.5rem;
        font-size: 1.5rem;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-content {
        max-width: 95%;
    }
}
