/* 
 * Strippers on Demand - Main Stylesheet
 * Converted from WordPress Theme to Static Site
 * Primary Color: #F500EA
 */

/* ========================================
   RESET & NORMALIZE
======================================== */
* {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: 24px;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #8c979e;
    overflow-x: hidden;
    font-weight: 400;
    background-color: #0a0a0a;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 400;
    color: #F500EA;
    margin-bottom: 24px;
    margin-top: 0;
}

h1 { font-size: 60px; line-height: 64px; }
h2 { font-size: 45px; line-height: 48px; }
h3 { font-size: 30px; line-height: 33px; }
h4 { font-size: 25px; line-height: 30px; }
h5 { font-size: 22px; line-height: 28px; }
h6 { font-size: 18px; line-height: 25px; }

p, ul, ol {
    margin-bottom: 24px;
    margin-top: 0;
}

.small-text {
    font-size: 13px;
    line-height: 20px;
}

/* Mobile Typography */
@media (max-width: 767px) {
    h1 { font-size: 32px; line-height: 40px; }
    h2 { font-size: 32px; line-height: 40px; }
    h3 { font-size: 24px; line-height: 32px; }
    h4 { font-size: 18px; line-height: 26px; }
    h5 { font-size: 16px; line-height: 24px; }
    h6 { font-size: 12px; line-height: 24px; }
}

/* ========================================
   LAYOUT & GRID
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4 { width: 33.333%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }
.col-md-7 { width: 58.333%; padding: 0 15px; }
.col-md-8 { width: 66.667%; padding: 0 15px; }
.col-md-12 { width: 100%; padding: 0 15px; }
.col-md-offset-1 { margin-left: 8.333%; }
.col-md-offset-2 { margin-left: 16.667%; }

.col-sm-5 { width: 41.667%; padding: 0 15px; }
.col-sm-6 { width: 50%; padding: 0 15px; }
.col-sm-10 { width: 83.333%; padding: 0 15px; }
.col-sm-offset-1 { margin-left: 8.333%; }

.col-xs-12 { width: 100%; padding: 0 15px; }

/* Mobile Grid */
@media (max-width: 991px) {
    .row { display: block; }
    .col-md-4, .col-md-6, .col-md-7, .col-md-8, .col-sm-5, .col-sm-6, .col-sm-10 {
        width: 100%;
        margin-left: 0;
    }
    .col-md-offset-1, .col-md-offset-2, .col-sm-offset-1 {
        margin-left: 0;
    }
}

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

.align-children {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .align-children {
        display: block !important;
    }
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-xs-24 { margin-bottom: 24px; }
.mb32 { margin-bottom: 32px; }
.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.img-responsive {
    max-width: 100%;
    height: auto;
}

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

/* ========================================
   COLORS & BACKGROUNDS
======================================== */
.bg-secondary {
    background: #000000;
}

.bg-dark {
    background: #0e1015;
    color: #fefefe;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, 
.bg-dark h4, .bg-dark h5, .bg-dark h6 {
    color: #fff;
}

.bg-dark p, .bg-dark span, .bg-dark li {
    color: #fefefe;
}

.image-bg {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.image-bg.bg-loaded {
    animation: fadeInBg 0.8s ease-in-out;
}

@keyframes fadeInBg {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-bg h1, .image-bg h2, .image-bg h3 {
    color: #fff;
}

.image-bg p, .image-bg li {
    color: #fff;
}

/* ========================================
   SECTIONS
======================================== */
section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    clear: both;
    z-index: 1;
}

.main-content {
    background: #0e1015;
    z-index: 2;
    color: #fefefe;
}

.main-content h1, .main-content h2, .main-content h3, 
.main-content h4, .main-content h5, .main-content h6 {
    color: #F500EA;
}

.main-content p, .main-content span, .main-content li {
    color: #fefefe;
}

.services-section {
    z-index: 2;
}

.availability-section {
    background: #0e1015;
    z-index: 2;
    color: #fefefe;
}

.availability-section h1, .availability-section h2, .availability-section h3, 
.availability-section h4, .availability-section h5, .availability-section h6 {
    color: #F500EA;
}

.availability-section p, .availability-section span, .availability-section li {
    color: #fefefe;
}

@media (max-width: 767px) {
    section {
        padding: 80px 0;
    }
}

.fullscreen {
    height: 100vh;
}

/* Ensure sections stack properly */
.hero-parallax {
    z-index: 2;
    position: relative;
}

.hero-parallax {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 400px;
    padding: 80px 0;
}

/* ========================================
   NAVIGATION
======================================== */
.site-header {
    position: relative;
    z-index: 999;
}

.nav-container {
    background: rgba(255,255,255,1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-bar {
    line-height: 53px;
    min-height: 56px;
}

.site-title {
    font-size: 24px;
    line-height: 52px;
    color: #666;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-title:hover,
.site-title:focus {
    color: #333;
    text-decoration: none;
}

.main-navigation .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation .menu li {
    margin-right: 40px;
    position: relative;
}

.main-navigation .menu li:last-child {
    margin-right: 0;
}

.main-navigation .menu li.dropdown {
    margin-right: 45px;
}

.main-navigation .menu li a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -1px;
    color: #4c4c4c;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 16px 0;
}

.main-navigation .menu li a:hover,
.main-navigation .menu li a:focus,
.main-navigation .menu li.active a {
    color: #F500EA;
}

.main-navigation .menu .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #fff;
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 999;
    display: block !important;
    float: none !important;
    border-radius: 4px;
    border: none;
    margin-top: 5px;
}

.main-navigation .menu li:hover .dropdown-menu,
.main-navigation .menu li:focus-within .dropdown-menu,
.main-navigation .menu li.open .dropdown-menu,
.main-navigation .menu li.show .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.main-navigation .dropdown-menu li {
    margin: 0;
    width: 100%;
}

.main-navigation .dropdown-menu a {
    padding: 12px 20px;
    color: #4c4c4c;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.main-navigation .dropdown-menu a:hover,
.main-navigation .dropdown-menu a:focus,
.main-navigation .dropdown-menu .active a {
    background: #f8f8f8;
    color: #F500EA;
    padding-left: 24px;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 18px;
    color: #4c4c4c;
    cursor: pointer;
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }
    
    .main-navigation .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        padding: 20px;
    }
    
    .main-navigation .menu.active {
        display: flex;
    }
    
    .main-navigation .menu li {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .main-navigation .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        display: none;
    }
    
    .main-navigation .dropdown-menu.active {
        display: block;
    }
}

/* Search Widget */
.search-widget-handle {
    position: relative;
}

.search-form {
    position: relative;
    width: 300px;
}

.search-form input[type="text"] {
    width: 70%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.search-form .searchsubmit {
    width: 28%;
    margin-left: 2%;
    background: #F500EA;
    border: 1px solid #F500EA;
    color: white;
    cursor: pointer;
}

.search-form .searchsubmit:hover {
    background: #d400d3;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 0 26px;
    min-width: 150px;
    line-height: 36px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    border: 2px solid #F500EA;
    color: #F500EA;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
    margin-bottom: 24px;
}

.btn:hover,
.btn:focus {
    background: #F500EA;
    color: #fff;
    text-decoration: none;
}

.btn-filled {
    background: #F500EA;
    color: #fff;
}

.btn-filled:hover,
.btn-filled:focus {
    background: #d400d3;
    border-color: #d400d3;
    color: #fff;
}

.btn-lg {
    line-height: 50px;
    min-width: 200px;
    padding: 0 30px;
}

.btn-sm {
    line-height: 30px;
    font-size: 11px;
    min-width: 120px;
}

.btn-white {
    color: #fff;
    border-color: #fff;
}

.btn-white:hover,
.btn-white:focus {
    background: #fff;
    color: #222;
}

/* ========================================
   FORMS
======================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #EEE;
    background: #f5f5f5;
    font-size: 14px;
    font-family: inherit;
    margin-bottom: 24px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus {
    outline: none;
    border-color: #F500EA;
}

input[type="submit"],
button[type="submit"] {
    background: #F500EA;
    border: 2px solid #F500EA;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    height: 50px;
    letter-spacing: 1px;
    line-height: 46px;
    padding: 0 30px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
    background: #d400d3;
    border-color: #d400d3;
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-section {
    position: relative;
    height: calc(100vh - 56px);
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    z-index: 1;
}

.video-widget {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0e1015;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-widget video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-section:hover .video-controls {
    opacity: 1;
}

.video-controls button {
    background: rgba(245, 0, 234, 0.9);
    color: #fff;
    border: none;
    padding: 10px 14px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-controls button:hover {
    background: rgba(212, 0, 211, 1);
    transform: translateY(-1px);
}

.video-controls button:last-child {
    margin-right: 0;
}

/* Hide pause button initially */
.video-controls .pause-button {
    display: none;
}

@media (max-width: 768px) {
    .video-section {
        height: 60vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .video-controls {
        opacity: 1; /* Always show on mobile */
        bottom: 10px;
        left: 10px;
    }
    
    .video-controls button {
        padding: 8px 12px;
        font-size: 12px;
        margin-right: 8px;
    }
}

/* ========================================
   PARALLAX SECTIONS
======================================== */
.hero-parallax,
.cta-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.parallax-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
}

.top-parallax-section {
    position: relative;
    z-index: 2;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-parallax .container {
    position: relative;
    z-index: 2;
}

/* Mobile Parallax */
@media (max-width: 768px) {
    .hero-parallax,
    .cta-section,
    .parallax-window {
        background-attachment: scroll;
    }
    
    .hero-parallax,
    .cta-section {
        padding: 80px 0;
        min-height: 400px;
    }
    
    .top-parallax-section {
        min-height: 300px;
    }
}

/* ========================================
   CONTENT SECTIONS
======================================== */
.main-content,
.services-section,
.availability-section {
    position: relative;
}

.content-block h3 {
    margin-bottom: 20px;
}

.content-block p {
    line-height: 1.6;
}

.services-section .content-block strong {
    color: #F500EA;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    padding: 72px 0;
    background: #0e1015;
    color: #fefefe;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.copyright-text {
    color: #fefefe;
    margin-bottom: 10px;
}

.footer-credits {
    color: #fff;
    font-size: 12px;
}

.social-icons {
    background: transparent;
}

.social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.social-list li {
    margin-left: 20px;
}

.social-list li:first-child {
    margin-left: 0;
}

.social-list a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-list a:hover,
.social-list a:focus {
    color: #F500EA;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: rgba(245, 0, 234, 0.9);
    border: 2px solid #F500EA;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-size: 18px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    backdrop-filter: blur(5px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    background: rgba(212, 0, 211, 1);
    border-color: #d400d3;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 0, 234, 0.4);
}

@media (max-width: 767px) {
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        margin-top: 20px;
    }
}

/* ========================================
   EMAIL POPUP
======================================== */
.email-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.email-popup.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.popup-content h3 {
    color: #F500EA;
    margin-bottom: 10px;
}

.popup-content p {
    color: #666;
    margin-bottom: 20px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.close-popup:hover {
    color: #333;
}

.email-form {
    display: flex;
    gap: 10px;
}

.email-form input[type="email"] {
    flex: 1;
    margin-bottom: 0;
}

.email-form button {
    background: #F500EA;
    border: 2px solid #F500EA;
    color: white;
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    background: #d400d3;
    border-color: #d400d3;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .main-navigation .menu li {
        margin-right: 20px;
    }
    
    h1 { font-size: 48px; line-height: 52px; }
    h2 { font-size: 36px; line-height: 40px; }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    .video-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-parallax,
    .cta-section {
        padding: 60px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .social-list {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .popup-content {
        padding: 30px 20px;
    }
}

/* ========================================
   BOOKING FORM ENHANCEMENTS
======================================== */
.booking-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-form-container h2 {
    color: #F500EA;
    margin-bottom: 15px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.booking-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 0;
}

.booking-form .form-control:focus {
    border-color: #F500EA;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(245, 0, 234, 0.25);
}

.booking-form .form-control.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.booking-form .form-control.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.booking-form select.form-control {
    height: 46px;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.booking-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.booking-form .checkbox {
    margin: 20px 0;
}

.booking-form .checkbox label {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    cursor: pointer;
    line-height: 1.4;
}

.booking-form .checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #F500EA;
}

.booking-form .btn {
    min-width: 200px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 30px;
    transition: all 0.3s ease;
}

.booking-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.booking-form .btn .fa-spinner {
    animation: spin 1s linear infinite;
}

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

.booking-form .alert {
    padding: 15px;
    margin: 20px 0;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
}

.booking-form .alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.booking-form .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Page Header Styles */
.page-header {
    padding: 80px 0 60px;
    position: relative;
}

.page-header h1 {
    color: #F500EA;
    margin-bottom: 10px;
    font-size: 48px;
    font-weight: 300;
}

.page-header .page-subtitle,
.page-header .lead {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info h2,
.booking-highlights h2 {
    color: #F500EA;
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    color: #F500EA;
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.contact-text h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-text p {
    margin-bottom: 5px;
    color: #666;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #333;
}

.highlights-list i {
    color: #28a745;
    margin-right: 15px;
    margin-top: 2px;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: #F500EA url('../images/party-bg.jpg') center center/cover no-repeat; /* Direct background image */
    color: #fff;
    text-align: center;
    position: relative;
    min-height: 600px;
    padding: 80px 0;
    z-index: 2;
}

.cta-section.image-bg {
    background: #F500EA url('../images/party-bg.jpg') center center/cover no-repeat;
}

.cta-section .parallax-window {
    display: none; /* Disable parallax for now to ensure content shows */
}

.cta-section .container {
    position: relative;
    z-index: 5;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for better text contrast */
    z-index: 3;
}

.cta-section .row {
    position: relative;
    z-index: 6;
}

.cta-section h1 {
    color: #fff !important;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 7;
}

.cta-section p {
    color: #fff !important;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-section .payment-options {
    margin: 30px 0;
    position: relative;
    z-index: 7;
}

.cta-section .payment-options img {
    margin: 10px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.cta-section .btn {
    background: #fff !important;
    color: #F500EA !important;
    border-color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 7;
    margin-top: 20px;
}

.cta-section .btn:hover {
    background: #f8f9fa !important;
    color: #d400d3 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .cta-section {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .cta-section h1 {
        font-size: 36px;
    }
    
    .cta-section .payment-options img {
        max-width: 90%;
        margin: 5px;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
======================================== */
.fade-half {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.fade-half:hover,
.fade-half:focus {
    opacity: 1;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #F500EA;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .video-section,
    .video-controls,
    .email-popup,
    .back-to-top {
        display: none;
    }
}
