/* Import Google Fonts for motorcycle club aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

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

:root {
    --brand-green: #2d4a3e;
    --brand-light: #3d5a4e;
    --brand-dark: #1d2a2e;
    --primary-dark: #0f0f0f;
    --secondary-gray: #1a1a1a;
    --tertiary-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --accent-orange: #c17817;
    --accent-gold: #b8860b;
    --rust-orange: #cd853f;
    --success-green: #556b2f;
    --error-red: #8b0000;
    --text-light: #757575;

    /* Clean shadows */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-hard: 0 8px 24px rgba(0, 0, 0, 0.2);

    /* Smooth timing functions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background:
        radial-gradient(ellipse at top left, rgba(14, 152, 72, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(14, 152, 72, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    min-height: 100vh;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Header Section */
.site-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-gray) 100%);
    padding: 30px 0;
    border-bottom: 2px solid var(--brand-green);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    grid-column: 2;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem !important;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.8);
    position: relative;
}


.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
    border-radius: 1px;
}

.logo-image {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    justify-self: start;
}

.logo-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--brand-green), transparent, var(--brand-light));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-image:hover::before {
    opacity: 0.2;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.logo-image-right {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    justify-self: end;
}

.logo-image-right::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--brand-light), transparent, var(--brand-green));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-image-right:hover::before {
    opacity: 0.2;
}

.logo-image-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.logo-image:hover {
    transform: scale(1.15) rotate(-8deg);
    filter: brightness(1.1);
}

.logo-image-right:hover {
    transform: scale(1.15) rotate(8deg);
    filter: brightness(1.1);
}

.logo:hover .logo-text {
    transform: scale(1.05);
    text-shadow: 0 4px 16px rgba(14, 152, 72, 0.4);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--brand-green);
    transform: translateY(-2px);
}

.main-nav a.active {
    color: var(--brand-green);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-green);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Main Content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    position: relative;
}

.hero-image {
    width: 100vw;
    height: 350px;
    margin: 0 0 40px 0;
    position: relative;
    margin-left: calc(-50vw + 50%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(14, 152, 72, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--brand-green);
    border-bottom: 2px solid var(--brand-green);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s var(--ease-out-expo);
    filter:
        brightness(1.1)
        contrast(1.1)
        saturate(1.2);
}

.hero-image:hover img {
    transform: scale(1.08) rotate(0.5deg);
    filter:
        brightness(1.2)
        contrast(1.2)
        saturate(1.3)
        hue-rotate(5deg);
}


.hero-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--brand-green);
    border-radius: 2px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}


.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 25px auto 35px;
    max-width: 600px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.event-description {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 15px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--brand-light);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.event-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
    position: relative;
}

.event-highlights::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background:
        linear-gradient(90deg, transparent, var(--brand-green), var(--accent-electric), var(--brand-green), transparent);
    border-radius: 3px;
    box-shadow:
        0 0 20px rgba(14, 152, 72, 0.8),
        0 0 40px rgba(14, 152, 72, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(14, 152, 72, 0.8),
            0 0 40px rgba(14, 152, 72, 0.4);
    }
    50% {
        box-shadow:
            0 0 30px rgba(14, 152, 72, 1),
            0 0 60px rgba(14, 152, 72, 0.6),
            0 0 100px rgba(0, 255, 255, 0.3);
    }
}

.highlight-item {
    text-align: center;
    padding: 30px 25px;
    background: rgba(45, 74, 62, 0.2);
    border-radius: 12px;
    border: 1px solid var(--brand-green);
    min-width: 160px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        conic-gradient(from 0deg, var(--brand-green), var(--accent-electric), var(--accent-gold), var(--brand-light), var(--brand-green));
    border-radius: 20px;
    padding: 2px;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: all 0.4s ease;
    animation: rotate-border 8s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.highlight-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 150px;
    height: 150px;
    background:
        radial-gradient(circle,
            rgba(14, 152, 72, 0.4) 0%,
            rgba(0, 255, 255, 0.2) 30%,
            transparent 70%);
    border-radius: 50%;
    transition: all 0.7s var(--ease-elastic);
    z-index: -1;
    filter: blur(10px);
}

.highlight-item:hover {
    transform: translateY(-12px) rotateX(10deg) scale(1.05);
    background:
        linear-gradient(145deg, rgba(14, 152, 72, 0.3) 0%, rgba(14, 152, 72, 0.5) 100%),
        radial-gradient(circle at center, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    box-shadow:
        0 30px 60px rgba(14, 152, 72, 0.4),
        0 0 0 1px rgba(14, 152, 72, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 100px rgba(14, 152, 72, 0.3);
    border-color: rgba(14, 152, 72, 0.6);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.highlight-item:hover .highlight-number {
    transform: scale(1.15) rotateY(5deg);
    text-shadow:
        0 0 30px rgba(14, 152, 72, 0.8),
        0 0 60px rgba(0, 255, 255, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 20px rgba(14, 152, 72, 0.6));
}

.highlight-item:hover .highlight-text {
    transform: translateY(-4px) scale(1.02);
    color: var(--accent-electric);
    text-shadow:
        0 0 10px rgba(0, 255, 255, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    display: block;
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Special styling for time numbers */
.highlight-item:nth-child(2) .highlight-number,
.highlight-item:nth-child(3) .highlight-number {
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.highlight-item:nth-child(2) {
    background:
        linear-gradient(145deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.25) 100%),
        radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    border-color: rgba(255, 215, 0, 0.4);
}

.highlight-item:nth-child(2):hover {
    background:
        linear-gradient(145deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.5) 100%),
        radial-gradient(circle at center, rgba(255, 255, 0, 0.2) 0%, transparent 70%);
    box-shadow:
        0 30px 60px rgba(255, 215, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 100px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.7);
}

.highlight-item:nth-child(3) {
    background:
        linear-gradient(145deg, rgba(255, 87, 34, 0.15) 0%, rgba(255, 87, 34, 0.25) 100%),
        radial-gradient(circle at top right, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    border-color: rgba(255, 87, 34, 0.4);
}

.highlight-item:nth-child(3):hover {
    background:
        linear-gradient(145deg, rgba(255, 87, 34, 0.3) 0%, rgba(255, 87, 34, 0.5) 100%),
        radial-gradient(circle at center, rgba(255, 69, 0, 0.2) 0%, transparent 70%);
    box-shadow:
        0 30px 60px rgba(255, 87, 34, 0.4),
        0 0 0 1px rgba(255, 87, 34, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 100px rgba(255, 87, 34, 0.3);
    border-color: rgba(255, 87, 34, 0.7);
}

.event-details {
    background: rgba(45, 74, 62, 0.3);
    border: 1px solid var(--brand-green);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    color: var(--white);
}

.event-details h3 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.detail-item {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    border-left: 3px solid var(--brand-green);
    color: var(--white);
}

.detail-item strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 5px;
}

.event-features, .requirements {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.event-features h4, .requirements h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--brand-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-features ul, .requirements ul {
    list-style: none;
    padding-left: 0;
}

.event-features li, .requirements li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(14, 152, 72, 0.2);
    color: var(--white);
    position: relative;
    padding-left: 20px;
}

.event-features li::before, .requirements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: bold;
}

.requirements li::before {
    content: "⚙";
}

/* Payment QR Section */
.payment-section {
    background: rgba(45, 74, 62, 0.3);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    color: var(--white);
}

.payment-section h3 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    margin-bottom: 25px;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.qr-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.qr-code img {
    width: 80%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.qr-info {
    text-align: center;
    max-width: 400px;
}

.qr-info h4 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.qr-info p {
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.5;
}

.qr-note {
    background: rgba(14, 152, 72, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    border-left: 3px solid var(--brand-green);
}

/* Payment Metadata */
.payment-metadata {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--brand-green);
}

.payment-metadata h4 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.payment-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.payment-item {
    background: rgba(45, 74, 62, 0.3);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--brand-green);
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.payment-item strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.amount {
    color: var(--brand-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: rgba(45, 74, 62, 0.3);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    padding: 35px;
    margin: 40px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-light), var(--brand-green));
}

.contact-section h3 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    margin-bottom: 30px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 4px solid var(--brand-green);
    min-width: 250px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 152, 72, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 152, 72, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item strong {
    display: block;
    color: #26c362;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.contact-item a:hover {
    color: var(--brand-light);
    transform: scale(1.05);
}

/* Invitation Text Styling */
.invitation-text {
    background: rgba(45, 74, 62, 0.3);
    border: 1px solid var(--brand-green);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.invitation-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-light), var(--brand-green));
}

.invitation-text h4 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.invitation-text p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Rock Section Styling */
.rock-section {
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.3) 0%, rgba(45, 74, 62, 0.2) 100%);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    padding: 35px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.rock-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--brand-green), var(--accent-orange));
}

.rock-section h3 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.rock-section h4 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.rock-description {
    color: var(--white);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.rock-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.rock-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-orange);
    color: var(--white);
    transition: all 0.3s ease;
}

.rock-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.rock-item strong {
    color: #26c362;
    display: block;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.rock-warning {
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    color: var(--white);
    text-align: center;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
}

/* Form Section */
.form-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-light), var(--brand-green));
}

.form-header {
    background: linear-gradient(135deg, var(--secondary-gray) 0%, var(--primary-dark) 100%);
    padding: 30px 40px;
    text-align: center;
}

.form-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--brand-green);
    font-size: 1.1rem;
    font-weight: 300;
}

.registration-form {
    padding: 50px;
    background: var(--white);
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--secondary-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.required::after {
    content: ' *';
    color: var(--accent-orange);
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
    color: var(--primary-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: var(--brand-green);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(14, 152, 72, 0.1);
    transform: translateY(-2px);
}

input[type="text"]:valid,
input[type="email"]:valid,
input[type="tel"]:valid {
    border-color: var(--success-green);
}

/* Checkbox Styling */
.checkbox-group {
    margin: 40px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--brand-green);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-gray);
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border: 3px solid #e0e0e0;
    border-radius: 6px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: var(--brand-green);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 152, 72, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled::before {
    display: none;
}

/* Messages */
.message {
    padding: 20px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
    font-weight: 500;
    border-left: 5px solid;
    font-family: 'Roboto', sans-serif;
}

.message.success {
    background-color: #e8f5e8;
    color: #2e7d32;
    border-left-color: var(--success-green);
}

.message.error {
    background-color: #ffebee;
    color: #c62828;
    border-left-color: var(--error-red);
}

.hidden {
    display: none;
}

/* QR Code Canvas Styling */
#qrCanvas {
    border: 3px solid var(--brand-green);
    border-radius: 12px;
    background: var(--white);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(14, 152, 72, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

#qrCanvas:hover {
    transform: scale(1.02);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(14, 152, 72, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Payment Section Styling */
.payment-section {
    margin-top: 40px;
    background:
        linear-gradient(135deg, rgba(45, 74, 62, 0.2) 0%, rgba(45, 74, 62, 0.1) 100%),
        rgba(28, 28, 28, 0.95);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    padding: 35px;
    color: var(--white);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(14, 152, 72, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.payment-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #26c362;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* QR Payment Layout */
.qr-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.qr-code {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(14, 152, 72, 0.3);
}

.qr-info {
    text-align: center;
    max-width: 500px;
}

.qr-info h4 {
    font-family: 'Oswald', sans-serif;
    color: #26c362;
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-info p {
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.qr-note {
    background: rgba(14, 152, 72, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
    border-left: 3px solid var(--brand-green);
    margin: 15px 0;
}

/* Payment confirmation note styling */
.payment-confirmation-note {
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    color: var(--white);
    box-shadow:
        0 8px 24px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.payment-confirmation-note strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.payment-confirmation-note a {
    color: #26c362;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.payment-confirmation-note a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(184, 134, 11, 0.6);
}

/* Payment button styling */
.payment-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%) !important;
    color: var(--white) !important;
    margin-top: 25px !important;
    font-size: 1.1rem !important;
    padding: 18px 30px !important;
    border-radius: 12px !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
    box-shadow:
        0 8px 24px rgba(193, 120, 23, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.payment-btn:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--rust-orange) 100%) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 12px 35px rgba(193, 120, 23, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.payment-btn:active {
    transform: translateY(-1px) scale(1.01) !important;
}

/* Success message styling */
.success-message {
    text-align: center;
    padding: 40px 25px;
    background:
        linear-gradient(135deg, rgba(14, 152, 72, 0.15) 0%, rgba(14, 152, 72, 0.05) 100%),
        rgba(28, 28, 28, 0.95);
    border: 2px solid var(--brand-green);
    border-radius: 16px;
    color: var(--white);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(14, 152, 72, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.success-message h3 {
    color: #26c362;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.success-message p {
    margin: 18px 0;
    line-height: 1.7;
    font-size: 1.1rem;
}

.success-message strong {
    color: var(--accent-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.success-message a {
    color: #26c362;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.success-message a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(184, 134, 11, 0.6);
}

/* Footer */
.site-footer {
    background: var(--secondary-gray);
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    color: var(--text-light);
    border-top: 1px solid #333;
}

.site-footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 20px 0;
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
        text-align: center;
    }

    .logo-image {
        width: 80px;
        height: 80px;
        order: 1;
    }

    .logo {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 5px 0;
    }

    .logo::before {
        content: '▬▬▬';
        color: var(--accent-gold);
        font-size: 1.2rem;
        letter-spacing: 4px;
        opacity: 0.7;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }

    .logo-text {
        font-size: 2rem;
        letter-spacing: 3px;
        margin: 0;
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(184, 134, 11, 0.2),
            inset 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .logo-text::after {
        display: none;
    }

    .logo-image-right {
        display: none;
    }

    .logo::after {
        display: none;
    }

    .container {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 20px auto 30px;
    }

    .hero-image {
        height: 250px;
        margin-bottom: 25px;
    }

    .event-highlights {
        flex-direction: column;
        gap: 15px;
        margin: 25px 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .highlight-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: auto;
        width: 100%;
        padding: 25px;
        text-align: left;
        background: linear-gradient(145deg, rgba(14, 152, 72, 0.25) 0%, rgba(14, 152, 72, 0.4) 100%);
        border: 2px solid var(--brand-green);
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .highlight-item::before {
        opacity: 0.3;
    }

    .highlight-item:hover {
        transform: translateX(15px) scale(1.02);
        box-shadow: 0 12px 30px rgba(14, 152, 72, 0.4);
    }

    .highlight-number {
        font-size: 2.8rem;
        margin-right: 25px;
        flex-shrink: 0;
    }

    .highlight-text {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.3;
        text-align: left;
        letter-spacing: 1.2px;
    }

    /* Mobile emoji sizing */
    .highlight-item:nth-child(2) .highlight-number,
    .highlight-item:nth-child(3) .highlight-number {
        font-size: 2.4rem;
    }

    /* Mobile color variants */
    .highlight-item:nth-child(2) {
        background: linear-gradient(145deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.4) 100%);
        border-color: rgba(255, 215, 0, 0.6);
    }

    .highlight-item:nth-child(3) {
        background: linear-gradient(145deg, rgba(255, 87, 34, 0.25) 0%, rgba(255, 87, 34, 0.4) 100%);
        border-color: rgba(255, 87, 34, 0.6);
    }

    .event-details {
        padding: 20px;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-section {
        padding: 25px 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact-item {
        min-width: auto;
        padding: 20px;
    }

    .contact-section h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .rock-section {
        padding: 25px 20px;
    }

    .rock-section h3 {
        font-size: 1.5rem;
    }

    .rock-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .invitation-text {
        padding: 20px;
    }

    .invitation-text h4 {
        font-size: 1.2rem;
    }

    .payment-section {
        padding: 25px 20px;
        margin: 30px 0;
    }

    .payment-details {
        grid-template-columns: 1fr;
    }

    .payment-metadata {
        padding: 20px 15px;
    }

    .registration-form {
        padding: 30px 25px;
    }

    .form-header {
        padding: 25px 30px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-image {
        height: 200px;
        margin-bottom: 20px;
    }


    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .registration-form {
        padding: 25px 20px;
    }

    .form-header {
        padding: 20px 25px;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 18px;
    }
}

/* Loading animation for submit button */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}