/* Global Styles */
:root {
    --primary-color: #2C5F2D;
    --secondary-color: #B8860B;
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Tickets Hero Section */
.tickets-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/sponsorship-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: var(--white);
    text-align: center;
}

.tickets-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #946c08;
    transform: translateY(-2px);
}

/* Tickets Grid */
.tickets-grid {
    padding: 5rem 0;
    background: var(--light-bg);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product .price {
    font-size: 1.75rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product .add_to_cart_button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product .add_to_cart_button:hover {
    background: #1e3e1f;
}

/* Checkout Page */
.woocommerce-checkout {
    padding: 5rem 0;
}

.woocommerce-checkout h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .checkout-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-checkout .checkout-button:hover {
    background: #946c08;
}/* Checkout Hero Section */
.checkout-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/sponsorship-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: var(--white);
    text-align: center;
}

.checkout-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Checkout Content */
.checkout-content {
    padding: 5rem 0;
    background: var(--light-bg);
}

.woocommerce-checkout {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    margin-top: 2rem;
}

.woocommerce-checkout .woocommerce-checkout-payment {
    margin-top: 2rem;
}

.woocommerce-checkout .place-order {
    margin-top: 2rem;
    text-align: center;
}

.woocommerce-checkout .checkout-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.woocommerce-checkout .checkout-button:hover {
    background: #946c08;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-hero h1 {
        font-size: 2.5rem;
    }

    .woocommerce-checkout {
        padding: 1rem;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Page Content */
.page-content {
    padding: 5rem 0;
    background: var(--light-bg);
}

.page-content .container {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-content .container {
        padding: 1rem;
    }
}

/* Products Hero Section */
.products-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/sponsorship-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    color: var(--white);
    text-align: center;
}

.products-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Products Grid */
.products-grid {
    padding: 5rem 0;
    background: var(--light-bg);
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product .price {
    font-size: 1.75rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product .add_to_cart_button {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product .add_to_cart_button:hover {
    background: #1e3e1f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.5rem;
    }

    .products {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    background: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links.active a {
    margin: 0.5rem 0;
}

/* Sticky Header */
.main-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Form Validation Error */
input.error,
textarea.error {
    border: 1px solid red !important;
}

/* Scrolled Body (Optional) */
body.scrolled .main-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    padding: 5rem 0;
    background: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Post Styling */
article {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.entry-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.entry-title a {
    text-decoration: none;
    color: inherit;
}

.entry-title a:hover {
    color: var(--secondary-color);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
}

.post-meta .posted-on,
.post-meta .byline {
    margin-right: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination .page-numbers {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--secondary-color);
}