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

:root {
    --primary-color: #9ACD32;
    --secondary-color: #ADFF2F;
    --accent-color: #FFC107;
    --dark-color: #7CB342;
    --light-color: #F1F8E9;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
    min-height: 140px;
}

.navbar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/picklefest/sponsor-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.navbar-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: 0.9;
}

.navbar-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem;
    min-height: 140px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    gap: 2rem;
    overflow: visible;
}

.nav-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4.5rem;
    position: absolute;
    left: 2rem;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1002;
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 440px;
    object-fit: contain;
    display: block;
}

.sponsor-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.presenting-sponsor-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.sponsor-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.sponsor-logo-link:hover {
    opacity: 0.85;
}

.sponsor-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.sponsor-logo-link:hover .sponsor-logo {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.3px;
    background: var(--primary-color);
    border-radius: 50px 20px 50px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.nav-menu a:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 0;
    overflow: visible;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 50%;
}

.nav-social:hover {
    color: var(--dark-color);
    background: rgba(154, 205, 50, 0.2);
    transform: scale(1.1);
}

.nav-social svg {
    width: 60px;
    height: 60px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1003;
    position: relative;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--dark-color);
}

.hamburger-dropdown-wrapper {
    position: relative;
    display: flex;
    order: 99;
}

.hamburger {
    order: unset;
}

.hamburger-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateY(-10px) translateX(-50%);
    right: auto;
    order: 100;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.hamburger-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

.hamburger-menu-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hamburger-menu-dropdown li {
    margin: 0;
}

.hamburger-menu-dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px 20px 50px 20px;
    margin: 0.25rem 0.5rem;
    background: var(--primary-color);
    color: var(--white);
}

.hamburger-menu-dropdown a:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding: 142px 0 3rem;
    color: var(--white);
    margin-top: 140px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    width: 100%;
    padding: 0 3rem;
}

/* Paddy + countdown centered below full-width title */
.hero-paddy-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    margin-top: 1rem;
}

.hero-paddy-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    margin-left: -4rem;
}

.paddy-hero-img {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.paddy-caption {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-style: italic;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.paddy-speech-bubble {
    position: relative;
    background: #fff;
    color: #2d5a27;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    border-radius: 20px;
    padding: 0.9rem 1.2rem;
    max-width: 240px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.paddy-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 18px 12px 0 12px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-quote {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.countdown-container {
    background: rgba(76, 139, 34, 0.9);
    color: var(--white);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.countdown-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.countdown {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.countdown-item {
    background: rgba(56, 109, 24, 0.6);
    color: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.countdown-number {
    display: block;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.countdown-label {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* About Section */
.about {
    background: var(--light-color);
    position: relative;
    overflow: visible;
}

.about-side-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-side-image {
    position: absolute;
    width: 280px;
    height: 350px;
    overflow: hidden;
    transform: translateY(-50%);
}

.about-side-image-left {
    left: 0;
}

.about-side-image-right {
    right: 0;
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1600px) {
    .about-side-image {
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 1400px) {
    .about-side-image {
        width: 180px;
        height: 230px;
    }
}

@media (max-width: 1200px) {
    .about-side-image {
        display: none;
    }
}

.side-image-inline {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.who-founder-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.who-founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.founder-name {
    font-size: 1.1rem;
    color: var(--text-color);
}

.monica-founder-img {
    width: 180px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Vendors Section */
.vendors {
    background: var(--white);
}

.vendors-content {
    max-width: 900px;
    margin: 0 auto;
}

.vendor-info {
    text-align: center;
}

.vendor-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.vendor-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.category-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.category-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

/* Sponsors Section */
.sponsors {
    background: var(--white);
}

.sponsors-content {
    max-width: 900px;
    margin: 0 auto;
}

.sponsor-info {
    text-align: center;
}

.sponsor-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.sponsor-benefits-page {
    margin: 0 0 2rem;
}

.sponsors-page .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.sponsors-page .sponsor-benefits-page {
    width: 100%;
    max-width: 1000px;
}

/* Narrow, centered card; column flex so title + QR sit in viewport center */
.sponsors-page .content-block.sponsor-qr-feature {
    text-align: center;
    align-self: center;
    width: min(100%, 720px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.sponsors-page .sponsor-qr-heading {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-self: stretch;
}

.sponsors-page .sponsor-qr-feature .content-text {
    width: 100%;
    text-align: center;
}

.sponsors-page .sponsor-qr-feature .sponsor-qr-intro,
.sponsors-page .sponsor-qr-feature .sponsor-qr-lead {
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sponsors-page .sponsor-qr-feature .sponsor-qr-intro {
    margin-bottom: 1rem;
}

.sponsors-page .sponsor-qr-feature .sponsor-qr-lead {
    margin-bottom: 1rem;
}

.sponsor-clover-cta {
    margin: 0 0 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sponsor-clover-btn {
    white-space: normal;
    max-width: 320px;
    text-align: center;
}

.sponsor-qr-image-link {
    display: block;
    width: fit-content;
    max-width: min(320px, 85vw);
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    border-radius: 12px;
}

.sponsor-qr-image-link:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.sponsor-qr-image-link .sponsor-qr-image {
    margin: 0;
}

.sponsor-qr-row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-qr-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.sponsor-qr-col-image {
    flex: 0 1 auto;
    width: 100%;
    max-width: 360px;
}

.sponsor-qr-col-cta {
    flex: 0 1 auto;
    width: 100%;
    max-width: 320px;
    min-width: unset;
}

.sponsor-qr-cta-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.sponsor-packet-btn {
    white-space: normal;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.sponsor-qr-image {
    max-width: min(320px, 85vw);
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-qr-caption {
    margin-top: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: var(--light-color);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Merch Section */
.merch {
    background: var(--light-color);
}

.merch-content {
    max-width: 900px;
    margin: 0 auto;
}

.merch-info {
    text-align: center;
}

.merch-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.merch-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.merch-feature {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.merch-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.merch-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.merch-feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.merch-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.merch-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.merch-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Activities Section */
.activities {
    background: var(--light-color);
}

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

.activity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.activity-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-card p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    width: 100%;
}

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

.gallery-placeholder {
    width: 100%;
    height: 300px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    object-fit: unset;
    border-radius: 10px;
    transition: transform 0.3s ease;
    display: block;
}

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

/* Contact Section */
.contact {
    background: var(--light-color);
}

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

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    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;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section .contact-details {
    margin-top: 0;
}

.footer-section .contact-item {
    margin-bottom: 1rem;
}

.footer-section .contact-item strong {
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section .contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .contact-item a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Touch Optimization */
.btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

a, button {
    -webkit-tap-highlight-color: rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-hamburger {
        display: flex;
    }

    .logo-img {
        height: 65px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
    }

    .presenting-sponsor-label {
        font-size: 0.7rem;
    }

    .sponsor-logo {
        height: 40px;
        width: auto;
        max-width: 90px;
        object-fit: contain;
    }

    .nav-brand {
        gap: 1rem;
        margin-left: 0.5rem;
        left: 0.5rem;
    }

    .navbar-container {
        padding: 1.5rem 1.5rem;
        min-height: 120px;
        gap: 1rem;
    }
    
    .navbar {
        min-height: 120px;
    }

    .navbar-background {
        opacity: 0.08;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        padding: 1.5rem 0;
        gap: 0;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 1rem 1.5rem;
        display: block;
        width: 100%;
        border-radius: 50px 20px 50px 20px;
        margin: 0.25rem 0;
    }

    .nav-menu a:hover {
        background: var(--dark-color);
        transform: translateY(-2px);
    }

    .nav-actions {
        gap: 0.5rem;
        padding-right: 0.5rem;
        right: 0.25rem;
    }

    .nav-social {
        width: 40px;
        height: 40px;
    }

    .nav-social svg {
        width: 22px;
        height: 22px;
    }

    .hero {
        padding: 125px 0 2rem;
        margin-top: 120px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .countdown-container {
        padding: 2rem 1rem;
        margin: 1.5rem 0.5rem;
    }

    .countdown-container h2 {
        font-size: 2rem;
    }

    .countdown {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1.25rem 0.75rem;
        max-width: 85px;
        flex: 1 1 70px;
    }

    .countdown-number {
        font-size: 2.75rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features,
    .activities-grid,
    .vendor-categories {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 0 0.5rem;
    }

    .about-text p,
    .about-text h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .who-founder-section {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .who-founder-left {
        align-items: center;
        width: 100%;
    }

    .founder-name {
        text-align: center;
        font-size: 1rem;
    }

    .monica-founder-img {
        width: 150px;
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .logo-img {
        height: 50px;
        width: auto;
        max-width: 140px;
        object-fit: contain;
    }

    .presenting-sponsor-label {
        font-size: 0.65rem;
    }

    .sponsor-logo {
        height: 32px;
        width: auto;
        max-width: 70px;
        object-fit: contain;
    }

    .nav-brand {
        gap: 0.6rem;
        margin-left: 0;
        left: 0.5rem;
    }

    .navbar-container {
        padding: 1rem 1rem;
        min-height: 100px;
        gap: 0.5rem;
    }
    
    .navbar {
        min-height: 100px;
    }

    .hero {
        padding: 108px 0 1.5rem;
        margin-top: 100px;
    }

    .page-content {
        margin-top: 105px !important;
    }

    .nav-actions {
        gap: 0.35rem;
        padding-right: 0.35rem;
        right: 0.25rem;
    }

    .nav-social {
        width: 36px;
        height: 36px;
    }

    .nav-social svg {
        width: 20px;
        height: 20px;
    }

    .hero-title {
        font-size: 2rem;
        white-space: normal;
    }

    .hero-paddy-layout {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .hero-paddy-wrapper {
        margin-left: 0;
    }

    .paddy-hero-img {
        width: 180px;
    }

    .paddy-speech-bubble {
        max-width: 200px;
        font-size: 0.9rem;
    }

    .hamburger-menu-dropdown {
        position: fixed;
        top: 110px;
        left: 50%;
        transform: translateY(-10px) translateX(-50%);
        right: auto;
        width: calc(100vw - 2rem);
        max-width: 320px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 1005;
    }

    .hamburger-menu-dropdown.active {
        transform: translateY(0) translateX(-50%);
    }

    .hamburger-menu-dropdown a {
        padding: 0.85rem 1.25rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .countdown-container {
        padding: 1.5rem 0.75rem;
        margin: 1rem 0.5rem;
    }

    .countdown-container h2 {
        font-size: 1.5rem;
    }

    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .countdown-item {
        min-width: 65px;
        padding: 1rem 0.5rem;
        max-width: 80px;
        flex: 1 1 65px;
    }

    .countdown-number {
        font-size: 2.25rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 2.5rem 0 2rem;
    }

    .page-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }

    .content-headline {
        font-size: 1.8rem;
    }

    .content-subheadline {
        font-size: 1.4rem;
    }

    .content-section {
        padding: 2.5rem 0;
    }

    .content-block {
        padding: 1.5rem;
    }

    .image-placeholder {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-brand {
        max-width: calc(100vw - 200px);
    }

    .logo-img {
        max-width: 120px;
    }

    .sponsor-logo {
        max-width: 65px;
    }

    .merch-buttons,
    .hero-buttons {
        gap: 0.75rem;
    }

    .merch-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .sponsor-benefits,
    .merch-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .founder-name {
        font-size: 0.95rem;
    }

    .monica-founder-img {
        width: 130px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 12px;
    }
}

/* Page Content Styles */
.page-content {
    min-height: calc(100vh - 200px);
    margin-top: 140px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.carshow-page-hero .carshow-hero-feature-img {
    display: block;
    width: 100%;
    max-width: min(720px, 92vw);
    height: auto;
    margin: 2rem auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.content-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.content-block {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.content-headline {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-subheadline {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-color);
    border: 2px dashed rgba(154, 205, 50, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(154, 205, 50, 0.05);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.02);
}

/* Live Music page: show full image without any cropping */
.livemusic-images .content-image {
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    max-width: 100% !important;
    object-fit: unset !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Car Show page: entry QR */
.carshow-entry-qr-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carshow-entry-qr-block .content-subheadline,
.carshow-entry-qr-block .content-text {
    width: 100%;
    text-align: center;
}

.carshow-entry-qr-block .content-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 36rem;
}

.carshow-entry-qr-link {
    display: block;
    width: fit-content;
    max-width: min(320px, 85vw);
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
    border-radius: 12px;
}

.carshow-entry-qr-link:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.carshow-entry-cta {
    margin-top: 1.25rem;
    margin-bottom: 0;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
}

.carshow-entry-btn {
    flex: 1 1 0;
    min-width: min(100%, 200px);
    max-width: 100%;
    white-space: normal;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carshow-entry-qr {
    max-width: min(320px, 85vw);
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    margin: 0.5rem 0 0;
}

/* Car Show page: show full image without any cropping */
.carshow-images .content-image {
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    max-width: 100% !important;
    object-fit: unset !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 5K Run page: show full image without any cropping */
.fivek-images .content-image {
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    max-width: 100% !important;
    object-fit: unset !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.activity-card,
.gallery-item {
    animation: fadeIn 0.6s ease-out;
}

