/*
Theme Name: NOLA Holi
Theme URI: https://nolaholi.org
Author: NOLA Holi Team
Author URI: https://nolaholi.org
Description: A vibrant WordPress theme for the NOLA Holi Festival celebrating the Indian festival of colors in New Orleans with Mardi Gras flair
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nolaholi
Tags: festival, events, custom-colors, custom-menu, featured-images, full-width-template, responsive-layout

This theme, like WordPress, is licensed under the GPL.
*/

/* ===========================
   CSS Variables - Mardi Gras Colors
   =========================== */
:root {
    --mardi-gras-purple: #5E2B7A;
    --mardi-gras-green: #00843D;
    --mardi-gras-gold: #FFC107;
    --light-purple: #8B5BA8;
    --light-green: #4CAF50;
    --dark-purple: #3D1A4F;
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --text-dark: #333333;
    --text-light: #666666;
    --gradient-festival: linear-gradient(135deg, var(--mardi-gras-purple) 0%, var(--mardi-gras-green) 50%, var(--mardi-gras-gold) 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--mardi-gras-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--mardi-gras-green);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

.btn-primary {
    background: var(--mardi-gras-purple);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--mardi-gras-green);
    color: var(--white);
}

.btn-secondary:hover {
    background: #006930;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: var(--mardi-gras-gold);
    color: var(--text-dark);
}

.btn-gold:hover {
    background: #FFB300;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--mardi-gras-purple);
    border: 2px solid var(--mardi-gras-purple);
}

.btn-outline:hover {
    background: var(--mardi-gras-purple);
    color: var(--white);
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--gradient-festival);
    padding: 10px 0;
    text-align: center;
}

.header-top p {
    color: var(--white);
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.header-main {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-festival);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.site-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-festival);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.current::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: var(--mardi-gras-purple);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-festival);
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--off-white);
    animation: fadeInUp 1.2s ease;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

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

/* ===========================
   Event Info Bar
   =========================== */
.event-info-bar {
    background: var(--mardi-gras-gold);
    padding: 30px 20px;
    text-align: center;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-purple);
}

/* ===========================
   Content Sections
   =========================== */
.content-section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-festival);
    margin: 20px auto;
    border-radius: 2px;
}

/* Alternating Background Colors */
.bg-white {
    background: var(--white);
}

.bg-light {
    background: var(--off-white);
}

.bg-purple {
    background: var(--mardi-gras-purple);
    color: var(--white);
}

.bg-purple .section-title {
    color: var(--white);
}

.bg-purple p {
    color: var(--off-white);
}

/* ===========================
   Feature Cards
   =========================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.feature-title {
    font-size: 1.5rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   Sponsor Tiers
   =========================== */
.sponsor-tiers {
    padding: 60px 20px;
}

.tier-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.sponsor-tier {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid;
}

.tier-event {
    border-top-color: var(--mardi-gras-purple);
}

.tier-diamond {
    border-top-color: #B9F2FF;
}

.tier-platinum {
    border-top-color: #E5E4E2;
}

.tier-gold {
    border-top-color: var(--mardi-gras-gold);
}

.tier-silver {
    border-top-color: #C0C0C0;
}

.tier-friends {
    border-top-color: var(--mardi-gras-green);
}

.tier-header {
    text-align: center;
    margin-bottom: 30px;
}

.tier-name {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tier-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mardi-gras-green);
}

.tier-benefits {
    list-style: none;
    margin-top: 20px;
}

.tier-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.tier-benefits li:before {
    content: '✓ ';
    color: var(--mardi-gras-green);
    font-weight: bold;
    margin-right: 10px;
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sponsor-logo-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

/* ===========================
   Gallery
   =========================== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ===========================
   Team/Board
   =========================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--mardi-gras-gold);
    box-shadow: var(--shadow-md);
}

.member-name {
    font-size: 1.3rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 5px;
}

.member-role {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.member-bio {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===========================
   Vendor Section
   =========================== */
.vendor-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vendor-type-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.vendor-type-title {
    font-size: 1.8rem;
    color: var(--mardi-gras-purple);
    margin-bottom: 20px;
}

.vendor-policy {
    background: var(--off-white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.vendor-policy h3 {
    color: var(--mardi-gras-green);
    margin-bottom: 20px;
}

.vendor-policy ul {
    list-style-position: inside;
    color: var(--text-light);
}

.vendor-policy li {
    padding: 8px 0;
}

/* ===========================
   Contact Form
   =========================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mardi-gras-purple);
}

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

.contact-info {
    background: var(--off-white);
    padding: 40px;
    border-radius: 15px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    color: var(--mardi-gras-purple);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    color: var(--mardi-gras-gold);
    margin-bottom: 20px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--off-white);
}

.footer-section a:hover {
    color: var(--mardi-gras-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--mardi-gras-purple);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--mardi-gras-gold);
    color: var(--text-dark);
}

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

.footer-bottom p {
    color: var(--off-white);
    margin: 0;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .vendor-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
    text-align: center;
}

.text-purple {
    color: var(--mardi-gras-purple);
}

.text-green {
    color: var(--mardi-gras-green);
}

.text-gold {
    color: var(--mardi-gras-gold);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

