/**
 * Bronex Events Theme Styles
 * Modern dark theme with purple accents
 */

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    --color-ink: #060614;
    --color-night: #0b0b19;
    --color-brand-400: #a979ff;
    --color-brand-500: #7c39f6;
    --color-brand-600: #5f2fe6;
    --color-brand-700: #3d1bb5;
    --color-white: #ffffff;
    --color-white-5: rgba(255, 255, 255, 0.05);
    --color-white-10: rgba(255, 255, 255, 0.1);
    --color-white-15: rgba(255, 255, 255, 0.15);
    --color-white-20: rgba(255, 255, 255, 0.2);
    --color-white-40: rgba(255, 255, 255, 0.4);
    --color-white-50: rgba(255, 255, 255, 0.5);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-80: rgba(255, 255, 255, 0.8);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-glow: 0 0 60px rgba(124, 57, 246, 0.35);
    --shadow-soft: 0 25px 60px rgba(6, 6, 20, 0.55);

    --max-width: 80rem;
    --max-width-2xl: 84rem;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
}

.text-gradient {
    background: linear-gradient(to right, var(--color-brand-400), var(--color-brand-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--color-white-70);
}

.text-muted-50 {
    color: var(--color-white-50);
}

.text-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-white-50);
}

.text-sm {
    font-size: 0.875rem;
}

/* ============================================
   Layout
   ============================================ */
.site-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1536px) {
    .container {
        max-width: var(--max-width-2xl);
    }
}

.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Grid utilities */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1023px) {
    .lg\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .sm\:grid-cols-1 {
        grid-template-columns: 1fr;
    }
    .lg\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* ============================================
   Background Elements
   ============================================ */
.bg-stars {
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 120px 120px;
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 10;
}

/* ============================================
   Components: Cards
   ============================================ */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

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

.card-gradient {
    position: absolute;
    right: -8rem;
    top: -8rem;
    width: 420px;
    opacity: 0.7;
    pointer-events: none;
}

/* ============================================
   Components: Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(to right, var(--color-brand-500), var(--color-brand-400), var(--color-brand-600));
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    border: 1px solid var(--color-white-15);
    color: var(--color-white-80);
}

.btn-outline:hover {
    border-color: var(--color-white-40);
    color: var(--color-white);
}

/* ============================================
   Components: Forms
   ============================================ */
.form-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-white-70);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--color-white);
    background-color: var(--color-white-5);
    border: 1px solid var(--color-white-10);
    border-radius: 1rem;
    transition: border-color 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-white-40);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-brand-500);
}

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

/* Contact Form 7 overrides */
.wpcf7-form .form-input,
.wpcf7-form .form-textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--color-white);
    background-color: var(--color-white-5);
    border: 1px solid var(--color-white-10);
    border-radius: 1rem;
}

.wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    background: linear-gradient(to right, var(--color-brand-500), var(--color-brand-400), var(--color-brand-600));
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wpcf7-form input[type="submit"]:hover {
    opacity: 0.9;
}

.wpcf7-response-output {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.wpcf7-mail-sent-ok {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background-color: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.3);
    color: #fda4af;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    border-bottom: 1px solid var(--color-white-10);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.site-logo {
    height: 3.5rem;
    width: auto;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-branding a {
    display: flex;
    align-items: center;
}

.main-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu a {
    font-size: 0.875rem;
    color: var(--color-white-70);
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-white);
}

/* Mobile menu toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 1px solid var(--color-white-15);
    border-radius: 9999px;
    color: var(--color-white-80);
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    border-color: var(--color-white-40);
    color: var(--color-white);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: currentColor;
    transition: all 0.2s ease;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--color-white-10);
    background-color: var(--color-night);
    padding: 1rem 1.5rem;
}

.mobile-menu.is-active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu a {
    font-size: 0.875rem;
    color: var(--color-white-80);
    transition: color 0.2s ease;
}

.mobile-menu a:hover {
    color: var(--color-white);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    border-top: 1px solid var(--color-white-10);
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-brand .site-logo {
    height: 5rem;
}

.footer-description {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-white-70);
    max-width: 400px;
}

.footer-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-white-50);
}

.footer-social-links {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social-links a {
    font-size: 0.875rem;
    color: var(--color-white-70);
    transition: color 0.2s ease;
}

.footer-social-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-white-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-white-50);
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom a {
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    padding: 4rem 0 5rem;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 0 7rem;
    }
}

.hero-grid {
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    animation: fadeUp 0.8s ease both;
}

.hero-image-wrapper {
    position: relative;
}

.hero-gradient {
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    opacity: 0.7;
    pointer-events: none;
}

.hero-image-card {
    position: relative;
    border-radius: 1.5rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    padding: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.hero-image-card img {
    width: 100%;
    border-radius: 1rem;
}

.hero-partners {
    margin-top: 4rem;
}

.hero-partners-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-white-40);
}

.hero-partners-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-partners-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
}

.partner-card img {
    height: 1.5rem;
    width: auto;
    opacity: 0.8;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    position: relative;
    padding: 5rem 0;
}

.features-header {
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

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

.feature-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    flex-shrink: 0;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    box-shadow: inset 0 0 0 1px var(--color-white-15);
}

.feature-icon img {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--color-brand-400), var(--color-brand-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-white-70);
}

.feature-images {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .feature-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.feature-images img {
    height: 10rem;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid var(--color-white-10);
}

@media (min-width: 640px) {
    .feature-images img {
        height: 13rem;
    }
}

/* Decorative stars */
.star-decoration {
    position: absolute;
    width: 14rem;
    opacity: 0.5;
    pointer-events: none;
    display: none;
}

@media (min-width: 1024px) {
    .star-decoration {
        display: block;
    }
}

.star-right {
    right: 0;
    top: 2.5rem;
}

.star-left {
    left: 0;
    top: 6rem;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    position: relative;
    padding: 6rem 0;
}

.about-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .about-card {
        grid-template-columns: 2fr 1fr;
    }
}

.about-item {
    position: relative;
}

.about-item h3 {
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.875rem;
}

@media (min-width: 768px) {
    .about-item h3 {
        font-size: 2.25rem;
    }
}

.about-item p {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--color-white-80);
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-page {
    padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
    .gallery-page {
        padding: 4rem 0;
    }
}

.gallery-header {
    max-width: 42rem;
}

.gallery-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--color-white-20);
    transform: translateY(-4px);
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 6, 20, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
}

.lightbox.is-active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 80vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--color-white-20);
    background-color: var(--color-white-10);
    color: var(--color-white-80);
    font-size: 1.25rem;
    transition: all 0.2s ease;
    z-index: 1010;
}

.lightbox-close:hover {
    color: var(--color-white);
    border-color: var(--color-white-40);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    border: 1px solid var(--color-white-20);
    background-color: var(--color-white-10);
    color: var(--color-white-80);
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

@media (min-width: 640px) {
    .lightbox-nav {
        display: flex;
    }
}

.lightbox-nav:hover {
    color: var(--color-white);
    border-color: var(--color-white-40);
}

.lightbox-prev {
    left: 1rem;
}

@media (min-width: 640px) {
    .lightbox-prev {
        left: 2rem;
    }
}

.lightbox-next {
    right: 1rem;
}

@media (min-width: 640px) {
    .lightbox-next {
        right: 2rem;
    }
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
    .contact-page {
        padding: 4rem 0;
    }
}

.contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.contact-form-card {
    border-radius: 1.5rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 2rem;
    }
}

.contact-form-title {
    margin-top: 0.75rem;
}

.contact-form-subtitle {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-white-70);
}

.contact-form {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-sidebar {
    border-radius: 1.5rem;
    border: 1px solid var(--color-white-10);
    background-color: var(--color-white-5);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .contact-sidebar {
        padding: 2rem;
    }
}

.contact-sidebar-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.contact-sidebar-subtitle {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-white-70);
}

.contact-details {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    font-size: 0.875rem;
}

.contact-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-white-50);
}

.contact-detail-value {
    margin-top: 0.5rem;
    color: var(--color-white);
    display: inline-flex;
}

.contact-detail-value a {
    transition: color 0.2s ease;
}

.contact-detail-value a:hover {
    color: var(--color-white-80);
}

/* ============================================
   404 Page
   ============================================ */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.error-404-content {
    max-width: 32rem;
}

.error-404-title {
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--color-brand-400), var(--color-brand-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-404-message {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--color-white-70);
}

.error-404-link {
    margin-top: 2rem;
    display: inline-flex;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-up {
    animation: fadeUp 0.8s ease both;
}

.animate-float {
    animation: float 10s ease-in-out infinite;
}

/* ============================================
   Utilities
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hidden {
    display: none;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* WordPress specific */
.wp-block-image {
    margin: 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

