
text/css style.css ( ASCII text, with very long lines )
/*
Theme Name: McKinney Pride
Theme URI: https://mckinneypride.org
Description: A custom child theme for McKinney Pride based on Bootscore, featuring rainbow pride colors, blob backgrounds, and a festive design for the annual Pride Fair & Festival
Author: McKinney Pride
Author URI: https://mckinneypride.org
Template: bootscore
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: mckinney-pride
*/

/* ============================================
   CSS CUSTOM PROPERTIES (from front-page.php)
   ============================================ */
:root {
    --pride-pink: #FF6B9D;
    --pride-red: #E63946;
    --pride-orange: #FF9F1C;
    --pride-yellow: #FFD60A;
    --pride-green: #2EC4B6;
    --pride-purple: #9B5DE5;
    --pride-blue: #00BBF9;
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #E0E0E0;
    --neutral-600: #757575;
    --neutral-800: #424242;
    --neutral-900: #212121;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 60px rgba(255,107,157,0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1400px;
}

/* ============================================
   MCCKINNEY PRIDE THEME STYLES
   Based on analysis of mckinneypride.org
   ============================================ */

/* Custom Font Classes */
.ringold {
  font-family: "ringold-soft", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ============================================
   BASE STYLES (from front-page.php)
   ============================================ */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--neutral-800);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* ============================================
   HEADER LOGO STYLES
   ============================================ */
.header-logo {
    height: 50px;
    width: auto;
}

@media (max-width: 576px) {
    .header-logo {
        height: 40px;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 576px) {
    .section-container {
        padding: 0 2rem;
    }
}

@media (min-width: 992px) {
    .section-container {
        padding: 0 3rem;
    }
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .section-heading {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.375rem;
    }
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .section-title-wrapper {
        margin-bottom: 2.5rem;
    }
}

/* ============================================
   RAINBOW GRADIENTS
   ============================================ */
.rainbow-gradient {
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-red), var(--pride-orange), var(--pride-yellow), var(--pride-green), var(--pride-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rainbow-gradient-full {
    background: linear-gradient(90deg, var(--pride-pink), var(--pride-red), var(--pride-orange), var(--pride-yellow), var(--pride-green), var(--pride-blue), var(--pride-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rainbow-border {
    position: relative;
}

.rainbow-border::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--pride-pink), var(--pride-red), var(--pride-orange), var(--pride-yellow), var(--pride-green), var(--pride-blue), var(--pride-purple));
    border-radius: 2px;
}

/* ============================================
   RAINBOW PRIDE BAR
   ============================================ */
.rainbow-row {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  height: 12px;
}

.rainbow-col {
  flex: 1;
  min-width: 12.5%;
}

.bg-pink { background-color: #F0609F; }
.bg-red { background-color: #E01F26; }
.bg-orange { background-color: #fd7e14; }
.bg-yellow { background-color: #ffc107; }
.bg-green { background-color: #037C3F; }
.bg-turquoise { background-color: #1FBBB1; }
.bg-indigo { background-color: #6610f2; }
.bg-violet { background-color: #9E3995; }

/* ============================================
    FESTIVAL HEADER
    ============================================ */
#masthead-festival {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.bg-dark-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a2e 50%, #16213e 100%);
}

#masthead-festival .nav-link {
  text-transform: uppercase;
  letter-spacing: -0.25px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 99px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

#masthead-festival .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

#festival-logo-img {
  height: 80px;
  transition: height 0.3s ease;
}

.scrolled #festival-logo-img {
  height: 50px;
}

#festival-logo-link {
  font-size: 1.5rem;
  font-weight: 700;
  transition: font-size 0.3s ease;
}

.scrolled #festival-logo-link {
  font-size: 1rem;
}

/* ============================================
   HERO SECTION (from front-page.php)
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neutral-900) 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255,107,157,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(155,93,229,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(46,196,182,0.08) 0%, transparent 60%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.5;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
}

.hero-logo {
    max-width: 100%;
    width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: fadeInUp 1s ease-out;
}

@media (min-width: 576px) {
    .hero-logo {
        width: 350px;
    }
}

@media (min-width: 768px) {
    .hero-logo {
        width: 450px;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .hero-logo {
        width: 550px;
    }
}

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

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@media (min-width: 576px) {
    .hero-tagline {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

.hero-details-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@media (min-width: 576px) {
    .hero-details-card {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-details-card {
        padding: 2.5rem 3rem;
    }
}

.hero-date {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-date i {
    color: var(--pride-pink);
}

@media (min-width: 576px) {
    .hero-date {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .hero-date {
        font-size: 2rem;
    }
}

.hero-time {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.hero-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-location strong {
    color: #fff;
    font-weight: 600;
}

.hero-location i {
    color: var(--pride-green);
}

.hero-countdown {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ============================================
   BLOB BACKGROUNDS
   ============================================ */
.turquoise-blob {
  background-color: rgba(31, 187, 177, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cpath fill='%231FBBB1' fill-opacity='0.1' d='M198.8,-168.2C247.6,-142.1,277.3,-90.4,287.9,-38.2C298.5,14,290,66.7,266.1,110.2C242.2,153.7,202.9,188,160.5,203.3C118.1,218.6,72.6,214.9,29.8,199.4C-13,183.9,-53.1,156.6,-88.4,130.7C-123.7,104.8,-154.2,80.3,-175.8,47.8C-197.4,15.3,-210.1,-25.2,-197.8,-59.4C-185.5,-93.6,-148.2,-121.5,-110.8,-147.8C-73.4,-174.1,-35.9,-198.8,5.3,-206.8C46.5,-214.8,93,-206.1,150,-168.2Z' transform='translate(200 150)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.purple-blob {
  background-color: rgba(158, 57, 149, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cpath fill='%239E3995' fill-opacity='0.1' d='M198.8,-168.2C247.6,-142.1,277.3,-90.4,287.9,-38.2C298.5,14,290,66.7,266.1,110.2C242.2,153.7,202.9,188,160.5,203.3C118.1,218.6,72.6,214.9,29.8,199.4C-13,183.9,-53.1,156.6,-88.4,130.7C-123.7,104.8,-154.2,80.3,-175.8,47.8C-197.4,15.3,-210.1,-25.2,-197.8,-59.4C-185.5,-93.6,-148.2,-121.5,-110.8,-147.8C-73.4,-174.1,-35.9,-198.8,5.3,-206.8C46.5,-214.8,93,-206.1,150,-168.2Z' transform='translate(200 150)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.green-blob {
  background-color: rgba(3, 124, 63, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cpath fill='%23037C3F' fill-opacity='0.1' d='M198.8,-168.2C247.6,-142.1,277.3,-90.4,287.9,-38.2C298.5,14,290,66.7,266.1,110.2C242.2,153.7,202.9,188,160.5,203.3C118.1,218.6,72.6,214.9,29.8,199.4C-13,183.9,-53.1,156.6,-88.4,130.7C-123.7,104.8,-154.2,80.3,-175.8,47.8C-197.4,15.3,-210.1,-25.2,-197.8,-59.4C-185.5,-93.6,-148.2,-121.5,-110.8,-147.8C-73.4,-174.1,-35.9,-198.8,5.3,-206.8C46.5,-214.8,93,-206.1,150,-168.2Z' transform='translate(200 150)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pink-blob {
  background-color: rgba(240, 96, 159, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cpath fill='%23F0609F' fill-opacity='0.1' d='M198.8,-168.2C247.6,-142.1,277.3,-90.4,287.9,-38.2C298.5,14,290,66.7,266.1,110.2C242.2,153.7,202.9,188,160.5,203.3C118.1,218.6,72.6,214.9,29.8,199.4C-13,183.9,-53.1,156.6,-88.4,130.7C-123.7,104.8,-154.2,80.3,-175.8,47.8C-197.4,15.3,-210.1,-25.2,-197.8,-59.4C-185.5,-93.6,-148.2,-121.5,-110.8,-147.8C-73.4,-174.1,-35.9,-198.8,5.3,-206.8C46.5,-214.8,93,-206.1,150,-168.2Z' transform='translate(200 150)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.red-blob {
  background-color: rgba(224, 31, 38, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cpath fill='%23E01F26' fill-opacity='0.1' d='M198.8,-168.2C247.6,-142.1,277.3,-90.4,287.9,-38.2C298.5,14,290,66.7,266.1,110.2C242.2,153.7,202.9,188,160.5,203.3C118.1,218.6,72.6,214.9,29.8,199.4C-13,183.9,-53.1,156.6,-88.4,130.7C-123.7,104.8,-154.2,80.3,-175.8,47.8C-197.4,15.3,-210.1,-25.2,-197.8,-59.4C-185.5,-93.6,-148.2,-121.5,-110.8,-147.8C-73.4,-174.1,-35.9,-198.8,5.3,-206.8C46.5,-214.8,93,-206.1,150,-168.2Z' transform='translate(200 150)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-container {
  font-family: 'Bellota Text', sans-serif;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

@media (min-width: 576px) {
    .countdown-timer {
        gap: 1rem;
    }
}

.countdown-item {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  min-width: 80px;
}

.countdown-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    min-width: 70px;
    text-align: center;
}

@media (min-width: 576px) {
    .countdown-item {
        padding: 1rem 1.25rem;
        min-width: 80px;
    }
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

@media (min-width: 576px) {
    .countdown-number {
        font-size: 2rem;
    }
}

.countdown-unit {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-top: 0.25rem;
    display: block;
}

@media (min-width: 576px) {
    .countdown-unit {
        font-size: 0.7rem;
    }
}

/* ============================================
   VENDOR TABS
   ============================================ */
.nav-pills .nav-link {
  border-radius: 99px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.nav-pills .nav-link.active {
  background-color: #000;
}

/* ============================================
   WHAT TO EXPECT SECTION
   ============================================ */
.what-to-expect-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(240,96,159,0.08) 0%, rgba(224,31,38,0.05) 25%, rgba(253,126,20,0.05) 50%, rgba(255,193,7,0.05) 75%, rgba(3,124,63,0.08) 100%);
}

@media (min-width: 768px) {
    .what-to-expect-section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 992px) {
    .what-to-expect-section {
        padding: 4rem 0;
    }
}

.what-to-expect-section .section-heading {
    color: var(--neutral-900);
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pride-pink), var(--pride-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255,107,157,0.1), rgba(155,93,229,0.1));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    transform: scale(1.1);
}

.feature-icon {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card:hover .feature-icon {
    color: #fff;
    -webkit-text-fill-color: initial;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .feature-card h3 {
        font-size: 1.75rem;
    }
}

.feature-card p {
    color: var(--neutral-600);
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .feature-card p {
        font-size: 1.1rem;
    }
}

/* ============================================
   VENDORS SECTION
   ============================================ */
.vendors-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(240,96,159,0.08) 0%, rgba(224,31,38,0.05) 25%, rgba(253,126,20,0.05) 50%, rgba(255,193,7,0.05) 75%, rgba(3,124,63,0.08) 100%);
}

@media (min-width: 768px) {
    .vendors-section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 992px) {
    .vendors-section {
        padding: 4rem 0;
    }
}

.vendors-section .section-heading {
    color: var(--neutral-900);
}

.vendor-tabs {
    margin-bottom: 2rem;
}

.vendor-tabs .nav-pills {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (min-width: 576px) {
    .vendor-tabs .nav-pills {
        gap: 0.75rem;
    }
}

.vendor-tabs .nav-pills .nav-link {
    background: var(--neutral-100);
    color: var(--neutral-600);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .vendor-tabs .nav-pills .nav-link {
        padding: 0.875rem 1.75rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .vendor-tabs .nav-pills .nav-link {
        padding: 1rem 2.25rem;
        font-size: 1.25rem;
    }
}

.vendor-tabs .nav-pills .nav-link.active {
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,107,157,0.35);
}

.vendor-tabs .nav-pills .nav-link:hover:not(.active) {
    background: var(--neutral-200);
    color: var(--neutral-800);
}

.partner-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--neutral-200);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--pride-pink);
}

.partner-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
}

.partner-card h4 {
    font-size: 1.25rem;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.partner-card p {
    color: var(--neutral-600);
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
}

.call-for-vendors-cta {
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 576px) {
    .call-for-vendors-cta {
        padding: 2.5rem;
    }
}

.call-for-vendors-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.call-for-vendors-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.call-for-vendors-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .call-for-vendors-cta h3 {
        font-size: 2rem;
    }
}

.call-for-vendors-cta p {
    opacity: 0.9;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.call-for-vendors-cta .btn {
    background: #fff;
    color: var(--pride-pink);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.call-for-vendors-cta .btn:hover {
    background: var(--neutral-900);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.partner-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.bootscore-footer {
  background-color: #f8f9fa;
  padding: 3rem 0 1rem;
}

.bootscore-footer-info {
  font-family: 'Bellota Text', sans-serif;
}

.footer-logo {
  max-width: 200px;
  height: auto;
}

.copyright-bar {
  background-color: #212529;
  color: #fff;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* ============================================
    DARK MODE SUPPORT
    ============================================ */
[data-bs-theme="dark"] {
  --bs-body-bg: #1a1a1a;
  --bs-body-color: #dee2e6;
}

/* ============================================
    DARK THEME FOR POSTS AND PAGES
    ============================================ */
body.single-post,
body.page,
body.single-post.page,
body.archive,
body.blog {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.single #content,
body.page #content,
body.single-post #content,
.single-post .site-content,
.single .site-content,
.page .site-content,
body.single .site-content,
body.page .site-content,
.blog .site-content,
.single-post .content,
.single .content,
.page .content,
.single-post .content-area,
.page .content-area,
.single .content-area,
body.single-post .bootstrap-wrapper,
body.page .bootstrap-wrapper,
body.single .bootstrap-wrapper,
body.page .bootstrap-wrapper,
.single-post .main-content,
.page .main-content,
.single .main-content {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.single-post .container,
body.page .container,
body.single .container,
body.single-post .container-fluid,
body.page .container-fluid,
body.single .container-fluid,
body.single-post .container .row,
body.page .container .row,
body.single .container .row,
body.single-post .container-fluid .row,
body.page .container-fluid .row,
body.single .container-fluid .row,
.single-post .container .row,
.page .container .row,
.single .container .row,
.single-post .container-fluid .row,
.page .container-fluid .row,
.single .container-fluid .row {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}

body.single-post .container,
body.page .container,
body.single-post .container-fluid,
body.page .container-fluid {
    background-color: transparent;
}

body.single-post .entry-content,
body.page .entry-content,
body.single-post article,
body.page article,
body.single-post .post-content,
body.page .post-content {
    color: #e0e0e0 !important;
    background-color: transparent;
}

body.single-post .entry-content p,
body.page .entry-content p,
body.single-post article p,
body.page article p {
    color: #e0e0e0 !important;
}

body.single-post .site-content *,
body.page .site-content *,
body.single .site-content *,
body.page .site-content *,
.single-post #content *,
.page #content *,
.single #content *,
body.single-post .bootstrap-wrapper *,
body.page .bootstrap-wrapper * {
    background-color: transparent;
    color: #e0e0e0 !important;
}

body.single-post h1, body.single-post h2, body.single-post h3, 
body.single-post h4, body.single-post h5, body.single-post h6,
body.page h1, body.page h2, body.page h3, 
body.page h4, body.page h5, body.page h6,
.single h1, .single h2, .single h3, 
.single h4, .single h5, .single h6,
.page h1, .page h2, .page h3, 
.page h4, .page h5, .page h6 {
    color: #ffffff;
}

body.single-post a,
body.page a,
.single a,
.page a,
body.single-post article a,
body.page article a {
    color: #00BBF9;
}

body.single-post a:hover,
body.page a:hover,
.single a:hover,
.page a:hover {
    color: #FF6B9D;
}

body.single-post .entry-title,
body.page .entry-title,
.single .entry-title,
.page .entry-title,
.single-post article .entry-title,
.page article .entry-title {
    color: #ffffff;
}

body.single-post .post-meta,
body.page .post-meta,
.single .post-meta,
.page .post-meta {
    color: #aaaaaa;
}

[data-bs-theme="dark"] .bg-light-subtle {
  background-color: #2d2d2d !important;
}

[data-bs-theme="dark"] .bootscore-footer {
  background-color: #2d2d2d;
}

[data-bs-theme="dark"] .partner-card {
  background-color: #2d2d2d;
  border-color: #444;
}

[data-bs-theme="dark"] .countdown-item {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  #festival-logo-img {
    height: 50px;
  }
  
  #festival-logo-link {
    font-size: 1rem;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 0.5rem;
  }
}

@media (max-width: 767px) {
    .row.g-4 > [class*="col-"] {
        margin-bottom: 1rem;
    }
    
    .feature-card,
    .info-card,
    .partner-card,
    .location-card,
    .partner-store-card {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .row.g-4 {
        margin: 0;
    }
    
    .row.g-4 > [class*="col-"] {
        padding: 0;
    }
}

/* ============================================
   WORDPRESS BLOCK OVERRIDES
   ============================================ */
.wp-block-group {
  margin-bottom: 1.5rem;
}

.wp-block-columns {
  gap: 2rem;
}

.wp-block-media-text__media img {
  border-radius: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background-color: #000;
  border-color: #000;
}

.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   SECTION SPACING
   ============================================ */
.section-py {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-pt {
  padding-top: 4rem;
}

/* ============================================
   WAVY DIVIDER
   ============================================ */
.wavy-div-bg {
  position: relative;
}

.wavy-div-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* ============================================
   GIVEAWAY STAMP CARDS
   ============================================ */
.stamp-card {
  border: 2px dashed #000;
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
}

.giveaway-section {
    padding: 3rem 0;
    background-color: #FFF0F5;
}

@media (min-width: 768px) {
    .giveaway-section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 992px) {
    .giveaway-section {
        padding: 4rem 0;
    }
}

.giveaway-section .section-heading {
    color: var(--neutral-900);
}

.giveaway-section h3:not(.section-heading):not(.stamp-card h3) {
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .giveaway-section h3:not(.section-heading):not(.stamp-card h3) {
        font-size: 2rem;
    }
}

.stamp-card {
    background: #fff;
    border: 3px dashed var(--pride-pink);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

@media (min-width: 576px) {
    .stamp-card {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .stamp-card {
        padding: 3rem;
    }
}

.stamp-card h3 {
    font-size: 1.75rem;
    color: var(--pride-pink);
    margin-bottom: 0.75rem;
}

.stamp-card p {
    color: var(--neutral-600);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .stamp-card h3 {
        font-size: 2rem;
    }
    
    .stamp-card p {
        font-size: 1.375rem;
    }
}

.stamp-slots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.stamp-slot {
    width: 50px;
    height: 50px;
    border: 2px dashed var(--neutral-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-50);
    transition: all 0.3s ease;
    position: relative;
}

@media (min-width: 576px) {
    .stamp-slot {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 768px) {
    .stamp-slot {
        width: 70px;
        height: 70px;
    }
}

.stamp-slot i {
    font-size: 1.25rem;
    color: var(--neutral-300);
}

@media (min-width: 576px) {
    .stamp-slot i {
        font-size: 1.5rem;
    }
}

.stamp-slot:not(:last-child)::after {
    content: '+';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-300);
    font-size: 1rem;
    font-weight: 700;
}

@media (min-width: 576px) {
    .stamp-slot:not(:last-child)::after {
        right: -14px;
        font-size: 1.25rem;
    }
}

.stamp-slot.filled {
    background: var(--pride-pink);
    border-color: var(--pride-pink);
}

.stamp-slot.filled i {
    color: #fff;
}

.partner-store-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    border-left: 4px solid var(--pride-pink);
    transition: all 0.3s ease;
}

.partner-store-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.partner-store-card h4 {
    font-size: 1.25rem;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.partner-store-card .address {
    color: var(--neutral-600);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.partner-store-card .address i {
    color: var(--pride-pink);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.partner-store-card .cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pride-pink), #ff8ab5);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   TABLEPRESS STYLES
   ============================================ */
.tablepress {
  margin-bottom: 1rem;
}

.tablepress th,
.tablepress td {
  padding: 0.75rem;
}

.tablepress .row-hover:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links a {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #000;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #F0609F;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--neutral-900) 0%, #1a1a2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .social-section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 992px) {
    .social-section {
        padding: 4rem 0;
    }
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(255,107,157,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(155,93,229,0.12) 0%, transparent 50%);
}

.social-section .section-heading {
    color: #fff;
    position: relative;
    z-index: 1;
}

.social-section .section-subtitle {
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

.btn-social {
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-red), var(--pride-orange));
    background-size: 200% 200%;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(255,107,157,0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,107,157,0.45);
    color: #fff;
}

.btn-social i {
    font-size: 1.25rem;
}

.social-hashtag {
    margin-top: 1.5rem;
    font-size: 1.375rem;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
}

.social-hashtag strong {
    color: var(--pride-pink);
    font-size: 1.75rem;
}

/* ============================================
   LOCATION/PARKING INFO
   ============================================ */
.location-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.location-section {
    padding: 3rem 0;
    background-color: #FFF5F5;
}

@media (min-width: 768px) {
    .location-section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 992px) {
    .location-section {
        padding: 4rem 0;
    }
}

.location-section .section-heading {
    color: var(--neutral-900);
}

.location-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 576px) {
    .location-card {
        padding: 2.5rem;
    }
}

.location-card h3 {
    font-size: 1.75rem;
    color: var(--pride-red);
    margin-bottom: 1rem;
}

.location-card .address-block p {
    color: var(--neutral-600);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.location-card .address-block strong {
    color: var(--neutral-900);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.map-placeholder {
    width: 100%;
    background: linear-gradient(135deg, var(--neutral-200), var(--neutral-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--neutral-200);
}

.amenity-item:last-child {
    border-bottom: none;
}

.amenity-icon {
    width: 44px;
    height: 44px;
    background: rgba(230,57,70,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.amenity-icon i {
    font-size: 1.25rem;
    color: var(--pride-red);
}

.amenity-content strong {
    color: var(--neutral-900);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.amenity-content p {
    color: var(--neutral-600);
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   SPINNER FOR LOADING STATES
   ============================================ */
.loading-spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 3px solid #000;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

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

/* FORCE DARK THEME FOR POSTS AND PAGES */
body.single, body.page, body.single-post, body.blog, body.archive {
    background-color: #1a1a1a !important;
}

body.single .site, body.page .site, body.single-post .site, body.blog .site {
    background-color: #1a1a1a !important;
}

body.single .site-content, body.page .site-content, body.single-post .site-content, body.blog .site-content,
body.single #content, body.page #content, body.single-post #content, body.blog #content {
    background-color: #1a1a1a !important;
}

body.single .container, body.page .container, body.single-post .container,
body.single .container-fluid, body.page .container-fluid, body.single-post .container-fluid {
    background-color: #1a1a1a !important;
}

body.single, body.single p, body.single div, body.single span,
body.page, body.page p, body.page div, body.page span {
    color: #e0e0e0 !important;
}

body.single h1, body.single h2, body.single h3, body.single h4, body.single h5, body.single h6,
body.page h1, body.page h2, body.page h3, body.page h4, body.page h5, body.page h6,
body.single-post h1, body.single-post h2, body.single-post h3, body.single-post h4, body.single-post h5, body.single-post h6 {
    color: #ffffff !important;
}

body.single a, body.page a, body.single-post a {
    color: #00BBF9 !important;
}

/* ============================================
   OUT OF THIS WORLD PRIDE ENHANCEMENTS
   ============================================ */

/* ------------------------------------------
   1. ANIMATED FLOWING RAINBOW BORDERS
   ------------------------------------------ */
.rainbow-border-animated {
    position: relative;
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 3px;
}

.rainbow-border-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    padding: 3px;
    background: linear-gradient(
        45deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5, #FF6B9D
    );
    background-size: 400% 400%;
    animation: rainbowFlow 8s ease infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes rainbowFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.rainbow-border-glow {
    position: relative;
    border-radius: var(--radius-lg);
}

.rainbow-border-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(
        135deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5
    );
    background-size: 300% 300%;
    animation: rainbowGlow 4s ease infinite;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.7;
}

@keyframes rainbowGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Rainbow divider line */
.rainbow-divider {
    height: 4px;
    background: linear-gradient(
        90deg,
        #FF6B9D 0%, #E63946 14%, #FF9F1C 28%, #FFD60A 42%, 
        #2EC4B6 57%, #00BBF9 71%, #9B5DE5 85%, #FF6B9D 100%
    );
    background-size: 200% 100%;
    animation: rainbowSlide 3s linear infinite;
    border-radius: 2px;
}

@keyframes rainbowSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ------------------------------------------
   2. SPARKLE & SHIMMER EFFECTS
   ------------------------------------------ */
.sparkle {
    position: relative;
    overflow: hidden;
}

.sparkle::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.3) 50%,
        transparent 70%
    );
    animation: sparkleShine 3s ease-in-out infinite;
}

@keyframes sparkleShine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

/* Shimmer effect for buttons */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    animation: shimmerSlide 2s infinite;
}

@keyframes shimmerSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Star/sparkle dots */
.sparkle-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.sparkle-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle-dot:nth-child(2) { top: 60%; left: 80%; animation-delay: 0.5s; }
.sparkle-dot:nth-child(3) { top: 30%; left: 70%; animation-delay: 1s; }
.sparkle-dot:nth-child(4) { top: 70%; left: 20%; animation-delay: 1.5s; }
.sparkle-dot:nth-child(5) { top: 40%; left: 50%; animation-delay: 0.3s; }

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ------------------------------------------
   3. GLOWING NEON CARD STYLES
   ------------------------------------------ */
.neon-card {
    position: relative;
    background: rgba(30,30,30,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.4s ease;
}

.neon-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: 
        0 0 20px rgba(255,107,157,0.3),
        0 0 40px rgba(155,93,229,0.2),
        0 20px 40px rgba(0,0,0,0.3);
}

.neon-card-pink:hover {
    border-color: var(--pride-pink);
    box-shadow: 
        0 0 30px rgba(255,107,157,0.5),
        0 20px 40px rgba(0,0,0,0.3);
}

.neon-card-purple:hover {
    border-color: var(--pride-purple);
    box-shadow: 
        0 0 30px rgba(155,93,229,0.5),
        0 20px 40px rgba(0,0,0,0.3);
}

.neon-card-rainbow:hover {
    border-color: transparent;
    box-shadow: 
        0 0 30px rgba(255,107,157,0.4),
        0 0 60px rgba(230,57,70,0.3),
        0 0 90px rgba(255,159,28,0.2),
        0 20px 40px rgba(0,0,0,0.3);
}

/* Rainbow border on hover */
.rainbow-hover {
    position: relative;
}

.rainbow-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        135deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rainbow-hover:hover::before {
    opacity: 1;
}

/* ------------------------------------------
   4. FLOATING PARTICLE BACKGROUND
   ------------------------------------------ */
.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.particle-1 {
    width: 6px;
    height: 6px;
    background: var(--pride-pink);
    top: 20%;
    left: 10%;
    animation-duration: 15s;
    opacity: 0.6;
}

.particle-2 {
    width: 4px;
    height: 4px;
    background: var(--pride-purple);
    top: 60%;
    left: 80%;
    animation-duration: 20s;
    opacity: 0.5;
}

.particle-3 {
    width: 8px;
    height: 8px;
    background: var(--pride-yellow);
    top: 40%;
    left: 30%;
    animation-duration: 18s;
    opacity: 0.4;
}

.particle-4 {
    width: 5px;
    height: 5px;
    background: var(--pride-green);
    top: 80%;
    left: 60%;
    animation-duration: 22s;
    opacity: 0.5;
}

.particle-5 {
    width: 3px;
    height: 3px;
    background: var(--pride-blue);
    top: 10%;
    left: 70%;
    animation-duration: 16s;
    opacity: 0.7;
}

.particle-6 {
    width: 7px;
    height: 7px;
    background: var(--pride-orange);
    top: 50%;
    left: 20%;
    animation-duration: 19s;
    opacity: 0.4;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* ------------------------------------------
   5. ANIMATED RAINBOW TEXT
   ------------------------------------------ */
.rainbow-text-animated {
    background: linear-gradient(
        90deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5, #FF6B9D
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 4s ease infinite;
}

@keyframes rainbowText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Rainbow text with glow */
.rainbow-text-glow {
    background: linear-gradient(
        90deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 4s ease infinite;
    filter: drop-shadow(0 0 10px rgba(255,107,157,0.5));
}

/* Pulsing glow text */
.text-glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255,107,157,0.5);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(255,107,157,0.8),
            0 0 30px rgba(230,57,70,0.6),
            0 0 40px rgba(155,93,229,0.4);
    }
}

/* ------------------------------------------
   6. ENHANCED HERO SECTION
   ------------------------------------------ */
.hero-section-enhanced {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a2e 30%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Nebula background effect */
.hero-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255,107,157,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(155,93,229,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(46,196,182,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 10%, rgba(0,187,249,0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 10% 90%, rgba(255,214,10,0.08) 0%, transparent 40%);
}

/* Animated stars */
.stars-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.star:nth-child(2) { top: 25%; left: 85%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 45%; left: 5%; animation-delay: 1s; }
.star:nth-child(4) { top: 65%; left: 95%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 85%; left: 25%; animation-delay: 2s; }
.star:nth-child(6) { top: 30%; left: 60%; animation-delay: 0.3s; }
.star:nth-child(7) { top: 70%; left: 40%; animation-delay: 0.8s; }
.star:nth-child(8) { top: 15%; left: 75%; animation-delay: 1.2s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Hero logo with enhanced effects */
.hero-logo-enhanced {
    max-width: 100%;
    width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: fadeInUp 1s ease-out, logoGlow 3s ease-in-out infinite;
}

@media (min-width: 576px) {
    .hero-logo-enhanced {
        width: 350px;
    }
}

@media (min-width: 768px) {
    .hero-logo-enhanced {
        width: 450px;
        margin-bottom: 2rem;
    }
}

@media (min-width: 992px) {
    .hero-logo-enhanced {
        width: 550px;
    }
}

@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)) 
                drop-shadow(0 0 20px rgba(255,107,157,0.2));
    }
    50% { 
        filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3)) 
                drop-shadow(0 0 40px rgba(155,93,229,0.4));
    }
}

/* Hero content with glassmorphism */
.hero-content-glass {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 1rem;
    background: rgba(30,30,30,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .hero-content-glass {
        padding: 4rem 3rem;
    }
}

/* Floating animation for hero elements */
.hero-float {
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ------------------------------------------
   7. BUTTON STYLES
   ------------------------------------------ */
.btn-pride {
    background: linear-gradient(
        135deg,
        #FF6B9D 0%, #E63946 25%, #FF9F1C 50%, #FFD60A 75%, #2EC4B6 100%
    );
    background-size: 300% 300%;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    animation: btnGradient 4s ease infinite;
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-pride:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(255,107,157,0.4),
        0 0 20px rgba(230,57,70,0.3);
    color: #fff;
}

.btn-pride-outline {
    background: transparent;
    border: 2px solid transparent;
    background-image: linear-gradient(#1a1a1a, #1a1a1a), 
                      linear-gradient(135deg, #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.4rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-pride-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,157,0.3);
    color: #fff;
}

/* ------------------------------------------
   8. SECTION BACKGROUNDS
   ------------------------------------------ */
.section-rainbow-bg {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
}

.section-rainbow-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5
    );
    background-size: 200% 100%;
    animation: rainbowSlide 3s linear infinite;
}

.section-rainbow-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #9B5DE5, #00BBF9, #2EC4B6, #FFD60A, #FF9F1C, #E63946, #FF6B9D
    );
    background-size: 200% 100%;
    animation: rainbowSlide 3s linear infinite reverse;
}

/* ------------------------------------------
   9. INFO CARDS ENHANCED
   ------------------------------------------ */
.info-card-enhanced {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent, var(--pride-pink), var(--pride-purple), transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card-enhanced:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,107,157,0.3);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 30px rgba(255,107,157,0.15);
}

.info-card-enhanced:hover::before {
    opacity: 1;
}

.info-card-enhanced .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255,107,157,0.2), rgba(155,93,229,0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.info-card-enhanced:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(255,107,157,0.4);
}

.info-card-enhanced .icon-wrapper i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card-enhanced:hover .icon-wrapper i {
    color: #fff;
    -webkit-text-fill-color: initial;
}

/* ------------------------------------------
   10. FOOTER ENHANCED
   ------------------------------------------ */
.footer-rainbow-top {
    position: relative;
    padding-top: 3rem;
}

.footer-rainbow-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5
    );
    animation: rainbowSlide 4s linear infinite;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: linear-gradient(135deg, var(--pride-pink), var(--pride-purple));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255,107,157,0.4);
}

/* ------------------------------------------
   11. COUNTDOWN ENHANCED
   ------------------------------------------ */
.countdown-enhanced {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-block {
    text-align: center;
    min-width: 90px;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.countdown-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--pride-pink), var(--pride-purple)
    );
}

.countdown-block .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(
        135deg,
        var(--pride-pink), var(--pride-purple), var(--pride-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-block .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
}

/* ------------------------------------------
   12. ENHANCED DARK MODE FOR POSTS/PAGES
   ------------------------------------------ */
body.single-post .rainbow-text-animated,
body.page .rainbow-text-animated {
    background: linear-gradient(
        90deg,
        #FF6B9D, #E63946, #FF9F1C, #FFD60A, #2EC4B6, #00BBF9, #9B5DE5, #FF6B9D
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowText 4s ease infinite;
}

/* Entry content enhancements */
body.single-post .entry-content,
body.page .entry-content {
    background: transparent;
    color: #e0e0e0 !important;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--pride-pink);
}

body.single-post .entry-content:hover,
body.page .entry-content:hover {
    border-left-color: var(--pride-purple);
    box-shadow: -4px 0 20px rgba(255,107,157,0.2);
}

/* ------------------------------------------
   13. MOBILE RESPONSIVE ENHANCEMENTS
   ------------------------------------------ */
@media (max-width: 768px) {
    .hero-content-glass {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .countdown-block {
        min-width: 70px;
        padding: 1rem 0.75rem;
    }
    
    .countdown-block .number {
        font-size: 1.75rem;
    }
    
    .neon-card {
        padding: 1.5rem;
    }
    
    .info-card-enhanced {
        padding: 1.5rem;
    }
    
    .info-card-enhanced .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .info-card-enhanced .icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* ------------------------------------------
   14. ACCESSIBILITY & REDUCED MOTION
   ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .rainbow-border-animated::before,
    .rainbow-border-glow::before,
    .rainbow-divider,
    .sparkle::after,
    .btn-shimmer::after,
    .particle,
    .star {
        animation: none !important;
    }
}

/* ============================================
   END OF OUT OF THIS WORLD PRIDE ENHANCEMENTS
   ============================================ */