/**
 * Revel On The Runway - Custom Purple Theme Colors
 * Based on the purple logo aesthetic
 * 
 * Color Palette:
 * - Primary Brand: #7D1CB0 (Royal Purple)
 * - Secondary Accent: #C89BEB (Soft Lavender)
 * - Text: #1A1A1A (Charcoal Black)
 * - Background Light: #FAF8FB (Off-White)
 * - Background Dark: #2B0A3D (Deep Eggplant)
 * - Highlight/CTA: #D4AF37 (Metallic Gold)
 * - Neutral: #F1F1F3 (Cool Gray)
 */

/* ========================================
   SECTION 1: HEADER & NAVIGATION
   ======================================== */

/* Main Header Background */
.qodef-page-header,
.qodef-header-wrapper,
header.qodef-header,
.qodef-mobile-header,
.qodef-header-sticky {
    background-color: #FAF8FB !important;
}

/* Header with transparency - when scrolled */
.qodef-header--standard.qodef-header--transparent {
    background-color: rgba(250, 248, 251, 0.95) !important;
}

/* Navigation Menu Links - Default State */
.qodef-header nav a,
.qodef-header .qodef-menu > li > a,
.qodef-main-menu > ul > li > a,
nav.qodef-header-navigation a,
.qodef-top-bar a {
    color: #1A1A1A !important;
}

/* Navigation Menu Links - Hover State */
.qodef-header nav a:hover,
.qodef-header .qodef-menu > li > a:hover,
.qodef-main-menu > ul > li > a:hover,
nav.qodef-header-navigation a:hover,
.qodef-top-bar a:hover {
    color: #7D1CB0 !important;
    border-bottom: 2px solid #7D1CB0;
    transition: all 0.3s ease;
}

/* Active/Current Menu Item */
.qodef-header .qodef-menu > li.current-menu-item > a,
.qodef-header .qodef-menu > li.current-menu-ancestor > a,
.qodef-main-menu > ul > li.current-menu-item > a,
nav.qodef-header-navigation li.current-menu-item a {
    color: #7D1CB0 !important;
    border-bottom: 2px solid #7D1CB0;
}

/* Dropdown Menu Background */
.qodef-header .qodef-menu ul,
.qodef-header .sub-menu,
.qodef-drop-down-second,
.qodef-header .qodef-menu .sub-menu,
.qodef-main-menu ul ul,
.qodef-main-menu .sub-menu,
nav.qodef-header-navigation .sub-menu,
.qodef-header .qodef-menu .qodef-drop-down-second {
    background-color: #FAF8FB !important;
    border: 1px solid #C89BEB !important;
    border-top: 3px solid #7D1CB0 !important;
    box-shadow: 0 4px 12px rgba(125, 28, 176, 0.15) !important;
    z-index: 9999 !important;
}

/* Dropdown Menu Items */
.qodef-header .qodef-menu ul li a,
.qodef-header .sub-menu li a,
.qodef-header .qodef-menu .sub-menu li a,
.qodef-main-menu ul ul li a,
nav.qodef-header-navigation .sub-menu li a {
    color: #1A1A1A !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #F1F1F3 !important;
    transition: all 0.3s ease !important;
}

.qodef-header .qodef-menu ul li a:hover,
.qodef-header .sub-menu li a:hover,
.qodef-header .qodef-menu .sub-menu li a:hover,
.qodef-main-menu ul ul li a:hover,
nav.qodef-header-navigation .sub-menu li a:hover {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    padding-left: 25px !important;
}

/* Remove border from last dropdown item */
.qodef-header .qodef-menu ul li:last-child a,
.qodef-header .sub-menu li:last-child a,
.qodef-header .qodef-menu .sub-menu li:last-child a {
    border-bottom: none !important;
}

/* Ensure dropdown visibility */
.qodef-header .qodef-menu li:hover > ul,
.qodef-header .qodef-menu li:hover > .sub-menu,
.qodef-main-menu li:hover > ul,
nav.qodef-header-navigation li:hover > .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Mobile Menu */
.qodef-mobile-header-opener,
.qodef-mobile-header-navigation {
    background-color: #FAF8FB !important;
}

.qodef-mobile-header-navigation a {
    color: #1A1A1A !important;
}

.qodef-mobile-header-navigation a:hover {
    color: #7D1CB0 !important;
}

/* Mobile Menu Icon Color */
.qodef-mobile-header-opener span {
    background-color: #7D1CB0 !important;
}

/* Search Icon in Header */
.qodef-search-opener,
.qodef-header .qodef-search-icon {
    color: #7D1CB0 !important;
}

/* Shopping Cart Icon in Header */
.qodef-header .qodef-shopping-cart-icon,
.qodef-header .qodef-woo-dropdown-cart-icon {
    color: #7D1CB0 !important;
}

/* Header Social Icons */
.qodef-header .qodef-social-icons a {
    color: #7D1CB0 !important;
}

.qodef-header .qodef-social-icons a:hover {
    color: #C89BEB !important;
}

/* Sticky Header - Different styling when scrolled */
.qodef-header--sticky .qodef-header-wrapper {
    background-color: #FAF8FB !important;
    box-shadow: 0 2px 10px rgba(125, 28, 176, 0.1);
}

/* Top Bar (if present) */
.qodef-top-bar {
    background-color: #F1F1F3 !important;
    color: #1A1A1A !important;
}

/* Logo area - ensure it has proper background */
.qodef-header-logo-link {
    background-color: transparent !important;
}

/* ========================================
   SECTION 2: BUTTONS & CALL-TO-ACTIONS
   ======================================== */

/* Primary Buttons - Main CTA Style */
.qodef-button,
.qodef-button--primary,
.qodef-btn,
.qodef-btn--primary,
button[type="submit"],
input[type="submit"],
.qodef-button.qodef-button--filled,
.qodef-btn.qodef-btn--filled,
.wp-block-button__link,
.wp-element-button,
.qodef-widget .qodef-button,
.qodef-widget .qodef-btn,
.elementor-button,
.elementor-button--primary,
.elementor-widget-button .elementor-button {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    border: 2px solid #7D1CB0 !important;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
}

/* Primary Button Hover */
.qodef-button:hover,
.qodef-button--primary:hover,
.qodef-btn:hover,
.qodef-btn--primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.qodef-button.qodef-button--filled:hover,
.qodef-btn.qodef-btn--filled:hover,
.wp-block-button__link:hover,
.wp-element-button:hover,
.qodef-widget .qodef-button:hover,
.qodef-widget .qodef-btn:hover,
.elementor-button:hover,
.elementor-button--primary:hover,
.elementor-widget-button .elementor-button:hover {
    background-color: #C89BEB !important;
    border-color: #C89BEB !important;
    color: #1A1A1A !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(125, 28, 176, 0.3) !important;
}

/* Secondary/Outline Buttons */
.qodef-button--outline,
.qodef-btn--outline,
.qodef-button.qodef-button--outlined,
.qodef-btn.qodef-btn--outlined,
.elementor-button--secondary {
    background-color: transparent !important;
    color: #7D1CB0 !important;
    border: 2px solid #7D1CB0 !important;
}

/* Secondary Button Hover */
.qodef-button--outline:hover,
.qodef-btn--outline:hover,
.qodef-button.qodef-button--outlined:hover,
.qodef-btn.qodef-btn--outlined:hover,
.elementor-button--secondary:hover {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    border-color: #7D1CB0 !important;
}

/* Special CTA Buttons (like "Get Tickets") */
.qodef-button--large,
.qodef-btn--large,
.qodef-button.qodef-button--large,
.qodef-btn.qodef-btn--large,
.get-tickets-btn,
.ticket-btn,
.qodef-header .qodef-button,
.qodef-header .qodef-btn {
    background: linear-gradient(135deg, #7D1CB0 0%, #C89BEB 100%) !important;
    color: #FAF8FB !important;
    border: none !important;
    padding: 15px 35px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(125, 28, 176, 0.2) !important;
}

/* Special CTA Button Hover */
.qodef-button--large:hover,
.qodef-btn--large:hover,
.qodef-button.qodef-button--large:hover,
.qodef-btn.qodef-btn--large:hover,
.get-tickets-btn:hover,
.ticket-btn:hover,
.qodef-header .qodef-button:hover,
.qodef-header .qodef-btn:hover {
    background: linear-gradient(135deg, #C89BEB 0%, #7D1CB0 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(125, 28, 176, 0.4) !important;
}

/* Form Buttons */
.contact-form button,
.wpcf7-submit,
.gravity-form button,
.form-submit button,
.qodef-contact-form button,
.qodef-contact-form input[type="submit"] {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    border: 2px solid #7D1CB0 !important;
    padding: 14px 28px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.contact-form button:hover,
.wpcf7-submit:hover,
.gravity-form button:hover,
.form-submit button:hover,
.qodef-contact-form button:hover,
.qodef-contact-form input[type="submit"]:hover {
    background-color: #C89BEB !important;
    border-color: #C89BEB !important;
    color: #1A1A1A !important;
}

/* WooCommerce Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce .cart .button,
.woocommerce .cart input.button,
.woocommerce .single_add_to_cart_button,
.woocommerce .checkout-button {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    border: 2px solid #7D1CB0 !important;
    border-radius: 4px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce .cart .button:hover,
.woocommerce .cart input.button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .checkout-button:hover {
    background-color: #C89BEB !important;
    border-color: #C89BEB !important;
    color: #1A1A1A !important;
}

/* Button Focus States (Accessibility) */
.qodef-button:focus,
.qodef-btn:focus,
button:focus,
input[type="submit"]:focus,
.wp-block-button__link:focus,
.elementor-button:focus {
    outline: 3px solid rgba(125, 28, 176, 0.5) !important;
    outline-offset: 2px !important;
}

/* Remove any conflicting button styles */
.qodef-button *,
.qodef-btn * {
    color: inherit !important;
}

/* ========================================
   SECTION 3: LINKS & ACCENTS
   ======================================== */

/* General Links - Default State */
a,
.qodef-content a,
.qodef-content-area a,
.content a,
.entry-content a,
.post-content a,
.page-content a,
.elementor-widget-text-editor a,
.wp-block-paragraph a,
.wp-block-quote a,
.wp-block-heading a,
.widget a,
.qodef-widget a,
.sidebar a,
.footer a,
.qodef-footer a {
    color: #7D1CB0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

/* General Links - Hover State */
a:hover,
.qodef-content a:hover,
.qodef-content-area a:hover,
.content a:hover,
.entry-content a:hover,
.post-content a:hover,
.page-content a:hover,
.elementor-widget-text-editor a:hover,
.wp-block-paragraph a:hover,
.wp-block-quote a:hover,
.wp-block-heading a:hover,
.widget a:hover,
.qodef-widget a:hover,
.sidebar a:hover,
.footer a:hover,
.qodef-footer a:hover {
    color: #C89BEB !important;
    text-decoration: underline !important;
    text-decoration-color: #C89BEB !important;
    text-underline-offset: 3px !important;
}

/* Content Area Links - Special Styling */
.qodef-content a,
.qodef-content-area a,
.entry-content a,
.post-content a,
.page-content a {
    border-bottom: 1px solid rgba(125, 28, 176, 0.3) !important;
    padding-bottom: 1px !important;
}

.qodef-content a:hover,
.qodef-content-area a:hover,
.entry-content a:hover,
.post-content a:hover,
.page-content a:hover {
    border-bottom-color: #C89BEB !important;
    background-color: rgba(200, 155, 235, 0.1) !important;
    padding: 2px 4px !important;
    margin: -2px -4px !important;
    border-radius: 3px !important;
}

/* Post/Page Titles as Links */
.qodef-content h1 a,
.qodef-content h2 a,
.qodef-content h3 a,
.qodef-content h4 a,
.qodef-content h5 a,
.qodef-content h6 a,
.qodef-content-area h1 a,
.qodef-content-area h2 a,
.qodef-content-area h3 a,
.qodef-content-area h4 a,
.qodef-content-area h5 a,
.qodef-content-area h6 a,
.entry-title a,
.post-title a,
.page-title a {
    color: #1A1A1A !important;
    text-decoration: none !important;
}

.qodef-content h1 a:hover,
.qodef-content h2 a:hover,
.qodef-content h3 a:hover,
.qodef-content h4 a:hover,
.qodef-content h5 a:hover,
.qodef-content h6 a:hover,
.qodef-content-area h1 a:hover,
.qodef-content-area h2 a:hover,
.qodef-content-area h3 a:hover,
.qodef-content-area h4 a:hover,
.qodef-content-area h5 a:hover,
.qodef-content-area h6 a:hover,
.entry-title a:hover,
.post-title a:hover,
.page-title a:hover {
    color: #7D1CB0 !important;
}

/* Read More Links */
.read-more,
.read-more-link,
.qodef-read-more,
.qodef-read-more-link,
.more-link,
.excerpt-more,
.qodef-excerpt-more {
    color: #7D1CB0 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 14px !important;
    text-decoration: none !important;
    border-bottom: 2px solid #7D1CB0 !important;
    padding-bottom: 2px !important;
    transition: all 0.3s ease !important;
}

.read-more:hover,
.read-more-link:hover,
.qodef-read-more:hover,
.qodef-read-more-link:hover,
.more-link:hover,
.excerpt-more:hover,
.qodef-excerpt-more:hover {
    color: #C89BEB !important;
    border-bottom-color: #C89BEB !important;
}

/* Breadcrumb Links */
.qodef-breadcrumbs a,
.breadcrumb a,
.qodef-breadcrumbs .qodef-breadcrumbs-link {
    color: #7D1CB0 !important;
    text-decoration: none !important;
}

.qodef-breadcrumbs a:hover,
.breadcrumb a:hover,
.qodef-breadcrumbs .qodef-breadcrumbs-link:hover {
    color: #C89BEB !important;
    text-decoration: underline !important;
}

/* Widget Links */
.widget a,
.qodef-widget a,
.sidebar .widget a,
.qodef-sidebar .qodef-widget a,
.widget ul li a,
.qodef-widget ul li a {
    color: #7D1CB0 !important;
    text-decoration: none !important;
}

.widget a:hover,
.qodef-widget a:hover,
.sidebar .widget a:hover,
.qodef-sidebar .qodef-widget a:hover,
.widget ul li a:hover,
.qodef-widget ul li a:hover {
    color: #C89BEB !important;
    text-decoration: underline !important;
}

/* Tag and Category Links */
.tag-links a,
.category-links a,
.post-tags a,
.post-categories a,
.qodef-tag-links a,
.qodef-category-links a,
.tags a,
.categories a {
    background-color: rgba(125, 28, 176, 0.1) !important;
    color: #7D1CB0 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border: 1px solid rgba(125, 28, 176, 0.2) !important;
    transition: all 0.3s ease !important;
}

.tag-links a:hover,
.category-links a:hover,
.post-tags a:hover,
.post-categories a:hover,
.qodef-tag-links a:hover,
.qodef-category-links a:hover,
.tags a:hover,
.categories a:hover {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    border-color: #7D1CB0 !important;
    transform: translateY(-1px) !important;
}

/* Pagination Links */
.page-numbers,
.qodef-pagination .page-numbers,
.pagination .page-numbers,
.qodef-pagination a,
.pagination a {
    background-color: transparent !important;
    color: #7D1CB0 !important;
    border: 2px solid #7D1CB0 !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.page-numbers:hover,
.qodef-pagination .page-numbers:hover,
.pagination .page-numbers:hover,
.qodef-pagination a:hover,
.pagination a:hover {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    border-color: #7D1CB0 !important;
}

.page-numbers.current,
.qodef-pagination .page-numbers.current,
.pagination .page-numbers.current {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    border-color: #7D1CB0 !important;
}

/* Social Media Links */
.social-links a,
.qodef-social-links a,
.qodef-social-icons a,
.social-icons a {
    color: #7D1CB0 !important;
    transition: all 0.3s ease !important;
}

.social-links a:hover,
.qodef-social-links a:hover,
.qodef-social-icons a:hover,
.social-icons a:hover {
    color: #C89BEB !important;
    transform: translateY(-2px) !important;
}

/* Remove underline from specific link types */
.qodef-header a,
.qodef-footer a,
.qodef-navigation a,
.widget-title a,
.qodef-widget-title a {
    text-decoration: none !important;
}

/* Focus states for accessibility */
a:focus,
.qodef-content a:focus,
.widget a:focus {
    outline: 2px solid #7D1CB0 !important;
    outline-offset: 2px !important;
    border-radius: 2px !important;
}

/* ========================================
   SECTION 4: HERO SECTIONS & TYPOGRAPHY
   ======================================== */

/* Hero Section Backgrounds */
.qodef-page-title,
.qodef-page-title-inner,
.qodef-page-title-content,
.qodef-hero-section,
.qodef-hero-content,
.qodef-hero-slider,
.qodef-slider,
.qodef-slider-content,
.elementor-section[data-element_type="section"]:first-child,
.hero-section,
.main-hero,
.qodef-fullscreen-menu-holder,
.qodef-content-slider {
    background: linear-gradient(120deg, #FAF8FB 0%, #F1F1F3 50%, #FAF8FB 100%) !important;
    position: relative !important;
}

/* Revolution Slider hero section should keep its native background */
.elementor-section.elementor-element-fbd0906,
.elementor-section.elementor-element-fbd0906::before {
    background: transparent !important;
    box-shadow: none !important;
}

.elementor-section.elementor-element-fbd0906::before {
    content: none !important;
}

/* Hero Section with Purple Gradient Overlay */
.qodef-page-title::before,
.qodef-hero-section::before,
.qodef-hero-content::before,
.qodef-slider::before,
.hero-section::before,
.main-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(125, 28, 176, 0.05) 0%, rgba(200, 155, 235, 0.03) 100%) !important;
    z-index: 1 !important;
}

/* Hero Content Positioning */
.qodef-page-title-content,
.qodef-hero-content,
.qodef-slider-content,
.hero-content,
.main-hero-content {
    position: relative !important;
    z-index: 2 !important;
}

/* Hero Section Typography - Main Headlines */
.qodef-page-title h1,
.qodef-hero-section h1,
.qodef-hero-content h1,
.qodef-slider h1,
.hero-section h1,
.main-hero h1,
.qodef-page-title .qodef-m-title,
.qodef-hero-section .qodef-m-title,
.qodef-slider .qodef-m-title {
    color: #1A1A1A !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 4px rgba(26, 26, 26, 0.1) !important;
}

/* Hero Section Typography - Subheadings */
.qodef-page-title h2,
.qodef-hero-section h2,
.qodef-hero-content h2,
.qodef-slider h2,
.hero-section h2,
.main-hero h2,
.qodef-page-title .qodef-m-subtitle,
.qodef-hero-section .qodef-m-subtitle,
.qodef-slider .qodef-m-subtitle {
    color: #7D1CB0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.5rem !important;
    line-height: 1.4 !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* Hero Section Typography - Descriptions */
.qodef-page-title p,
.qodef-hero-section p,
.qodef-hero-content p,
.qodef-slider p,
.hero-section p,
.main-hero p,
.qodef-page-title .qodef-m-description,
.qodef-hero-section .qodef-m-description,
.qodef-slider .qodef-m-description {
    color: #1A1A1A !important;
    font-family: 'Lora', serif !important;
    font-weight: 400 !important;
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
    max-width: 600px !important;
}

/* Hero Section Buttons in Hero */
.qodef-page-title .qodef-button,
.qodef-hero-section .qodef-button,
.qodef-hero-content .qodef-button,
.qodef-slider .qodef-button,
.hero-section .qodef-button,
.main-hero .qodef-button,
.qodef-page-title .qodef-btn,
.qodef-hero-section .qodef-btn,
.qodef-hero-content .qodef-btn,
.qodef-slider .qodef-btn,
.hero-section .qodef-btn,
.main-hero .qodef-btn {
    background: linear-gradient(135deg, #7D1CB0 0%, #C89BEB 100%) !important;
    color: #FAF8FB !important;
    border: none !important;
    padding: 18px 40px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-radius: 6px !important;
    box-shadow: 0 6px 20px rgba(125, 28, 176, 0.3) !important;
    transition: all 0.4s ease !important;
}

.qodef-page-title .qodef-button:hover,
.qodef-hero-section .qodef-button:hover,
.qodef-hero-content .qodef-button:hover,
.qodef-slider .qodef-button:hover,
.hero-section .qodef-button:hover,
.main-hero .qodef-button:hover,
.qodef-page-title .qodef-btn:hover,
.qodef-hero-section .qodef-btn:hover,
.qodef-hero-content .qodef-btn:hover,
.qodef-slider .qodef-btn:hover,
.hero-section .qodef-btn:hover,
.main-hero .qodef-btn:hover {
    background: linear-gradient(135deg, #C89BEB 0%, #7D1CB0 100%) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(125, 28, 176, 0.4) !important;
}

/* Hero Section with Background Images */
.qodef-page-title.qodef-has-background,
.qodef-hero-section.qodef-has-background,
.qodef-slider.qodef-has-background {
    background-blend-mode: overlay !important;
}

/* Hero Section with Background Images - Text Overlay */
.qodef-page-title.qodef-has-background::after,
.qodef-hero-section.qodef-has-background::after,
.qodef-slider.qodef-has-background::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(125, 28, 176, 0.15) 0%, rgba(200, 155, 235, 0.1) 100%) !important;
    z-index: 1 !important;
}

/* Hero Section Content with Background Images */
.qodef-page-title.qodef-has-background .qodef-page-title-content,
.qodef-hero-section.qodef-has-background .qodef-hero-content,
.qodef-slider.qodef-has-background .qodef-slider-content {
    position: relative !important;
    z-index: 2 !important;
}

/* Responsive Hero Typography */
@media only screen and (max-width: 1024px) {
    .qodef-page-title h1,
    .qodef-hero-section h1,
    .qodef-hero-content h1,
    .qodef-slider h1 {
        font-size: 2.8rem !important;
    }
    
    .qodef-page-title h2,
    .qodef-hero-section h2,
    .qodef-hero-content h2,
    .qodef-slider h2 {
        font-size: 1.3rem !important;
    }
}

@media only screen and (max-width: 768px) {
    .qodef-page-title h1,
    .qodef-hero-section h1,
    .qodef-hero-content h1,
    .qodef-slider h1 {
        font-size: 2.2rem !important;
    }
    
    .qodef-page-title h2,
    .qodef-hero-section h2,
    .qodef-hero-content h2,
    .qodef-slider h2 {
        font-size: 1.1rem !important;
    }
    
    .qodef-page-title p,
    .qodef-hero-section p,
    .qodef-hero-content p,
    .qodef-slider p {
        font-size: 1.1rem !important;
    }
}

/* Section Backgrounds - Alternating Pattern */
.qodef-content-section:nth-child(even),
.qodef-section:nth-child(even),
.elementor-section:nth-child(even) {
    background-color: #FAF8FB !important;
}

.qodef-content-section:nth-child(odd),
.qodef-section:nth-child(odd),
.elementor-section:nth-child(odd) {
    background-color: #F1F1F3 !important;
}

/* Section Dividers */
.qodef-section-divider,
.section-divider,
.qodef-separator {
    background: linear-gradient(90deg, transparent 0%, #7D1CB0 50%, transparent 100%) !important;
    height: 2px !important;
    margin: 60px 0 !important;
}

/* Page Title Specific Styling */
.qodef-page-title {
    padding: 120px 0 80px 0 !important;
    text-align: center !important;
}

.qodef-page-title .qodef-m-content {
    max-width: 800px !important;
    margin: 0 auto !important;
}

/* ========================================
   SECTION 5: BODY & CONTENT SECTIONS
   (Targeted selectors to avoid UI conflicts)
   ======================================== */

/* Main Body Background - Only for main content areas */
body:not(.admin-bar):not(.wp-admin),
#qodef-page-outer:not(.qodef-content-slider):not(.qodef-hero-section):not(.qodef-slider) {
    background-color: #FAF8FB !important;
}

/* Content Area Background - Only main content, not hero/slider */
.qodef-main-content:not(.qodef-hero-section):not(.qodef-slider):not(.qodef-page-title),
.entry-content:not(.hero-content):not(.slider-content),
.post-content:not(.hero-content):not(.slider-content),
.page-content:not(.hero-content):not(.slider-content) {
    background-color: #FAF8FB !important;
    color: #1A1A1A !important;
}

/* Content Cards and Boxes - Only specific card elements */
.qodef-blog-card,
.qodef-portfolio-card,
.qodef-team-card,
.qodef-testimonial-card,
.qodef-content-box,
.qodef-info-box {
    background-color: #FAF8FB !important;
    border: 1px solid rgba(125, 28, 176, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(125, 28, 176, 0.08) !important;
    transition: all 0.3s ease !important;
}

/* Content Cards Hover Effect */
.qodef-blog-card:hover,
.qodef-portfolio-card:hover,
.qodef-team-card:hover,
.qodef-testimonial-card:hover,
.qodef-content-box:hover,
.qodef-info-box:hover {
    border-color: rgba(125, 28, 176, 0.2) !important;
    box-shadow: 0 8px 25px rgba(125, 28, 176, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Card Headers and Titles - Only for card content */
.qodef-blog-card .qodef-blog-title,
.qodef-portfolio-card .qodef-portfolio-title,
.qodef-team-card .qodef-team-title,
.qodef-testimonial-card .qodef-testimonial-title,
.qodef-content-box .qodef-content-title,
.qodef-info-box .qodef-info-title,
.qodef-content-box h1,
.qodef-content-box h2,
.qodef-content-box h3,
.qodef-content-box h4,
.qodef-content-box h5,
.qodef-content-box h6,
.qodef-info-box h1,
.qodef-info-box h2,
.qodef-info-box h3,
.qodef-info-box h4,
.qodef-info-box h5,
.qodef-info-box h6 {
    color: #1A1A1A !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

/* Card Content Text - Only for card content */
.qodef-blog-card .qodef-blog-content,
.qodef-portfolio-card .qodef-portfolio-content,
.qodef-team-card .qodef-team-content,
.qodef-testimonial-card .qodef-testimonial-content,
.qodef-content-box .qodef-content-text,
.qodef-info-box .qodef-info-text,
.qodef-content-box p,
.qodef-content-box span,
.qodef-content-box div,
.qodef-info-box p,
.qodef-info-box span,
.qodef-info-box div {
    color: #1A1A1A !important;
    line-height: 1.6 !important;
}

/* Form Styling - Only for specific form elements */
.qodef-contact-form,
.contact-form,
.wpcf7-form,
.gravity-form {
    background-color: #FAF8FB !important;
}

/* Form Input Fields - Only for form inputs */
.qodef-contact-form input[type="text"],
.qodef-contact-form input[type="email"],
.qodef-contact-form input[type="tel"],
.qodef-contact-form textarea,
.qodef-contact-form select,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select,
.gravity-form input[type="text"],
.gravity-form input[type="email"],
.gravity-form input[type="tel"],
.gravity-form textarea,
.gravity-form select {
    background-color: #FAF8FB !important;
    border: 2px solid rgba(125, 28, 176, 0.2) !important;
    border-radius: 4px !important;
    color: #1A1A1A !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

/* Form Input Focus States */
.qodef-contact-form input:focus,
.qodef-contact-form textarea:focus,
.qodef-contact-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus,
.gravity-form input:focus,
.gravity-form textarea:focus,
.gravity-form select:focus {
    border-color: #7D1CB0 !important;
    box-shadow: 0 0 0 3px rgba(125, 28, 176, 0.1) !important;
    outline: none !important;
}

/* Form Labels */
.qodef-contact-form label,
.contact-form label,
.wpcf7-form label,
.gravity-form label {
    color: #1A1A1A !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Form Validation Messages */
.qodef-contact-form .qodef-form-message,
.contact-form .form-message,
.wpcf7-form .wpcf7-response-output,
.gravity-form .gform_message {
    background-color: rgba(125, 28, 176, 0.1) !important;
    border: 1px solid rgba(125, 28, 176, 0.3) !important;
    color: #7D1CB0 !important;
    padding: 12px 16px !important;
    border-radius: 4px !important;
    margin-top: 16px !important;
}

/* Form Error Messages */
.qodef-contact-form .qodef-form-error,
.contact-form .form-error,
.wpcf7-form .wpcf7-validation-errors,
.gravity-form .gform_error {
    background-color: rgba(207, 46, 46, 0.1) !important;
    border: 1px solid rgba(207, 46, 46, 0.3) !important;
    color: #cf2e2e !important;
}

/* Form Success Messages */
.qodef-contact-form .qodef-form-success,
.contact-form .form-success,
.wpcf7-form .wpcf7-mail-sent-ok,
.gravity-form .gform_confirmation {
    background-color: rgba(0, 208, 130, 0.1) !important;
    border: 1px solid rgba(0, 208, 130, 0.3) !important;
    color: #00d084 !important;
}

/* Sidebar Styling - Only for sidebar areas */
.qodef-sidebar,
.qodef-widget-area {
    background-color: #F1F1F3 !important;
    border-radius: 8px !important;
    padding: 30px !important;
}

/* Widget Styling - Only for specific widgets */
.qodef-widget {
    background-color: #FAF8FB !important;
    border: 1px solid rgba(125, 28, 176, 0.1) !important;
    border-radius: 6px !important;
    padding: 25px !important;
    margin-bottom: 30px !important;
    box-shadow: 0 2px 8px rgba(125, 28, 176, 0.05) !important;
}

/* Widget Titles */
.qodef-widget .qodef-widget-title {
    color: #1A1A1A !important;
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #7D1CB0 !important;
}

/* Widget Content */
.qodef-widget .qodef-widget-content {
    color: #1A1A1A !important;
    line-height: 1.6 !important;
}

/* Search Widget */
.qodef-widget .qodef-search-form,
.qodef-widget input[type="search"] {
    background-color: #FAF8FB !important;
    border: 2px solid rgba(125, 28, 176, 0.2) !important;
    border-radius: 4px !important;
    color: #1A1A1A !important;
}

.qodef-widget .qodef-search-form:focus,
.qodef-widget input[type="search"]:focus {
    border-color: #7D1CB0 !important;
    box-shadow: 0 0 0 3px rgba(125, 28, 176, 0.1) !important;
}

/* Recent Posts Widget */
.qodef-widget .qodef-recent-posts,
.qodef-widget .qodef-recent-posts li {
    border-bottom: 1px solid rgba(125, 28, 176, 0.1) !important;
    padding: 12px 0 !important;
}

.qodef-widget .qodef-recent-posts li:last-child {
    border-bottom: none !important;
}

/* Categories Widget */
.qodef-widget .qodef-categories,
.qodef-widget .qodef-categories li {
    border-bottom: 1px solid rgba(125, 28, 176, 0.1) !important;
    padding: 8px 0 !important;
}

/* Archive Widget */
.qodef-widget .qodef-archive,
.qodef-widget .qodef-archive li {
    border-bottom: 1px solid rgba(125, 28, 176, 0.1) !important;
    padding: 8px 0 !important;
}

/* Tag Cloud Widget */
.qodef-widget .qodef-tagcloud,
.qodef-widget .qodef-tagcloud a {
    background-color: rgba(125, 28, 176, 0.1) !important;
    color: #7D1CB0 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    margin: 4px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.qodef-widget .qodef-tagcloud a:hover {
    background-color: #7D1CB0 !important;
    color: #FAF8FB !important;
    transform: translateY(-1px) !important;
}

/* ========================================
   SECTION 6: FOOTER
   (Minimal enhancements - preserves existing format)
   ======================================== */

/* Footer Background - Only if footer exists */
.qodef-page-footer,
.qodef-footer,
#qodef-page-footer,
footer {
    background-color: #2B0A3D !important;
}

/* Footer Text - Only enhance text colors */
.qodef-footer,
footer {
    color: #C89BEB !important;
}

/* Footer Links - Only enhance link colors */
.qodef-footer a,
footer a {
    color: #C89BEB !important;
    transition: color 0.3s ease !important;
}

.qodef-footer a:hover,
footer a:hover {
    color: #D4AF37 !important;
}

/* Footer Headings - Only enhance heading colors */
.qodef-footer h1,
.qodef-footer h2,
.qodef-footer h3,
.qodef-footer h4,
.qodef-footer h5,
.qodef-footer h6,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: #FAF8FB !important;
}

/* Footer Social Icons - Only enhance social icon colors */
.qodef-footer .qodef-social-icons a,
footer .social-icons a {
    color: #C89BEB !important;
    transition: color 0.3s ease !important;
}

.qodef-footer .qodef-social-icons a:hover,
footer .social-icons a:hover {
    color: #D4AF37 !important;
}


/* ========================================
   Custom Layout Enhancements
   ======================================== */

/* Fix content being hidden under sticky header */
#qodef-page-outer {
    padding-top: 0 !important;
}

body:not(.qodef-header--transparent) #qodef-page-content,
body:not(.qodef-header--transparent) #qodef-page-outer > div:first-child {
    margin-top: 0 !important;
}

/* Ensure first section on pages accounts for header height */
.qodef-content-full-width .elementor-top-section:first-child,
.qodef-page-content-section > .elementor:first-child > .elementor-section:first-child {
    padding-top: 180px !important;
}

/* Allow home hero slider to remain flush with header */
.qodef-content-full-width .elementor-top-section.elementor-element-fbd0906:first-child,
.qodef-page-content-section > .elementor:first-child > .elementor-section.elementor-element-fbd0906:first-child {
    padding-top: 0 !important;
}

/* Fix for pages with headers that are not transparent */
body.qodef-header--standard #qodef-page-inner {
    margin-top: 0;
}

/* Hero slider button layout */
.rot-hero-btn-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}

.rot-hero-btn-group .qodef-button {
    margin: 0 !important;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .rot-hero-btn-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .rot-hero-btn-group .qodef-button {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .rot-hero-btn-group .qodef-button {
        max-width: 100%;
    }
}

.qodef-header-navigation + .qodef-widget-holder.qodef--one {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.qodef-header-navigation + .qodef-widget-holder.qodef--one .qodef-get-tickets-cta {
    display: flex;
    flex-shrink: 0;
}

.qodef-header-navigation + .qodef-widget-holder.qodef--one .qodef-get-tickets-cta a {
    margin: 0;
    padding: 12px 24px;
    border-radius: 4px;
    background-color: #d4af37 !important;
    color: #000000 !important;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.qodef-header-navigation + .qodef-widget-holder.qodef--one .widget {
    margin: 0;
    display: flex;
    align-items: center;
}

.qodef-header-sticky .qodef-header-navigation + .qodef-widget-holder.qodef--one {
    gap: 14px;
}

.qodef-header-sticky .qodef-header-navigation + .qodef-widget-holder.qodef--one .qodef-get-tickets-cta a {
    padding: 10px 20px !important;
    font-size: 14px;
}

/* Footer navigation wraps gracefully when there are many items */
#menu-footer-bottom-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    list-style: none;
}

#menu-footer-bottom-custom > li {
    margin: 0;
}

@media (max-width: 768px) {
    #menu-footer-bottom-custom {
        justify-content: center;
    }
}

.qodef-get-tickets-btn {
    background-color: #d4af37 !important;
    color: #000000 !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 12px 24px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.qodef-get-tickets-btn:hover,
.qodef-header-sticky .qodef-get-tickets-btn:hover {
    background-color: #f1c857 !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

