:root { 
    --primary-gold: #D4A574;
    --dark-brown: #2B1810;
    --rust: #8B4513;
    --asphalt: #1a1a1a;
    --cream: #F5F1E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-brown);
    background-color: var(--cream);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: var(--dark-brown);
    text-transform: uppercase;
}

.container { width:90%; }
/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--rust) 100%);
    border: none;
    border-bottom: 4px solid var(--primary-gold);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--primary-gold) !important;
    font-weight: bold;
}

.navbar-nav > li > a {
    color: var(--cream) !important;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.navbar-nav > li > a:hover {
    background-color: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    text-shadow: 0 0 8px rgba(212, 165, 116, 0.5);
}

.navbar-toggle {
    background-color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
}

.navbar-toggle .icon-bar {
    background-color: var(--dark-brown) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--rust) 0%, var(--asphalt) 100%);
    color: var(--cream);
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-gold);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: var(--cream);
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--rust) 0%, var(--asphalt) 100%);
    color: var(--cream);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(43, 24, 16, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 56px;
    color: var(--primary-gold);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero .event-meta {
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-register {
    background-color: var(--primary-gold);
    border: none;
    color: var(--dark-brown);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    padding: 18px 50px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-register:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    color: var(--dark-brown);
}

.btn-stripe {
    background-color: var(--primary-gold);
    border: none;
    color: var(--dark-brown);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    padding: 14px 30px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    margin-top: auto;
}

.btn-stripe:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(212, 165, 116, 0.4);
    text-decoration: none;
    color: var(--dark-brown);
}

/* Event Details Section */
.event-details {
    padding: 60px 20px;
    background-color: var(--cream);
}

.event-details h2 {
    font-size: 44px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--rust);
}

.detail-card {
    background: white;
    border-left: 6px solid var(--primary-gold);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateX(8px);
}

.detail-card h3 {
    font-size: 24px;
    color: var(--rust);
    margin-bottom: 15px;
}

.detail-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Highlights Section */
.highlights {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--rust) 100%);
    color: var(--cream);
    padding: 60px 20px;
    text-align: center;
}

.highlights h2 {
    font-size: 44px;
    color: var(--primary-gold);
    margin-bottom: 50px;
}

.highlight-item {
    margin-bottom: 30px;
}

.highlight-item h4 {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 16px;
    color: var(--cream);
}

/* Photo Gallery Preview */
.gallery-section {
    padding: 60px 20px;
    background-color: var(--cream);
}

.gallery-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--rust);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #ddd;
    border: 3px solid var(--primary-gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-weight: bold;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Container */
.gallery-container {
    padding: 60px 20px;
    background-color: var(--cream);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 250px;
    max-width: 400px;
    aspect-ratio: 1;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vendor-image{
    width: auto;
    max-width:80%;

    height: 200px;
    max-height:auto;
    object-fit: cover;
    padding: 10px;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--rust);
    font-weight: bold;
    text-decoration: none;
}

.back-link:hover {
    color: var(--primary-gold);
}

/* Register Container */
.register-container {
    padding: 60px 20px;
    background-color: var(--cream);
}

.register-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.register-intro h2 {
    font-size: 36px;
    color: var(--rust);
    margin-bottom: 20px;
}

.register-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.event-info {
    background: white;
    border-left: 6px solid var(--primary-gold);
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.event-info p {
    margin: 5px 0;
    font-size: 14px;
}

.event-info strong {
    color: var(--rust);
}

/* Payment Grid */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    justify-content: center;
}

.payment-card {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: white;
    border: 3px solid var(--primary-gold);
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(212, 165, 116, 0.3);
}

.payment-card h3 {
    font-size: 24px;
    color: var(--rust);
    margin-bottom: 15px;
    line-height: 1.3;
}

.payment-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    font-size: 48px;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary-gold);
    font-weight: bold;
    letter-spacing: 1px;
    margin: 20px 0;
}

.price small {
    font-size: 18px;
    display: block;
    color: #999;
}

.badge-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--rust);
    color: var(--cream);
    padding: 8px 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 2px;
}

.payment-card.featured {
    border-color: var(--rust);
    border-width: 4px;
}

/* Register Notes */
.register-notes {
    max-width: 700px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--rust) 100%);
    color: var(--cream);
    padding: 30px;
    border-radius: 4px;
    border-left: 6px solid var(--primary-gold);
}

.register-notes h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.register-notes ul {
    margin: 0;
    padding-left: 20px;
}

.register-notes li {
    margin-bottom: 8px;
    font-size: 14px;
}

.register-notes a {
    color: var(--primary-gold);
    text-decoration: none;
}

.register-notes a:hover {
    color: var(--cream);
}

/* Modal */
.modal-content {
    background: var(--dark-brown);
    border: 3px solid var(--primary-gold);
}

.modal-header {
    border-bottom: 2px solid var(--primary-gold);
}

.modal-header h4 {
    color: var(--primary-gold);
}

.modal-header .close {
    color: var(--primary-gold);
    opacity: 1;
}

.modal-header .close:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    height: auto;
}

/* Footer */
footer {
    background: var(--dark-brown);
    color: var(--cream);
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid var(--primary-gold);
}

footer h4 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

footer p {
    font-size: 14px;
    margin-bottom: 10px;
}

footer a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--cream);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
 
    .hero h1 {
        font-size: 36px;
    }

    .hero .tagline {
        font-size: 18px;
    }

    .btn-register {
        font-size: 16px;
        padding: 14px 35px;
    }

    .event-details h2,
    .highlights h2,
    .gallery-section h2,
    .register-intro h2 {
        font-size: 32px;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }

    .payment-card {
        min-width: 100%;
        max-width: 100%;
    }

    .price {
        font-size: 36px;
    }

    .payment-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
    }
}