/* THE FOCUS - Theme Specific Styles */

/* Import all modular CSS files */
@import './variables.css';
@import './base.css';
@import './typography-focus.css';
@import './atmospheric.css';
@import './sidebar.css';
@import './buttons-focus.css';
@import './forms-focus.css';
@import './images.css';
@import './account-ui.css';
@import './clinton-house.css';
@import './service-selection.css';

/* ===== Enhanced Equipment Selection ===== */
.equipment-card.clickable-card,
.equipment-item-compact.clickable-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.equipment-card.clickable-card:hover,
.equipment-item-compact.clickable-item:hover {
    background: rgba(33, 150, 243, 0.05);
    border-color: #2196f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.equipment-card.selected,
.equipment-item-compact.selected {
    background: rgba(33, 150, 243, 0.1);
    border-color: #2196f3;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.2);
}

.equipment-card.selected .equipment-header h4,
.equipment-item-compact.selected label {
    color: #2196f3;
    font-weight: 600;
}

.equipment-card.selected .add-on-price {
    background: #2196f3;
    color: white;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.9em;
    font-weight: 600;
}

.equipment-item-compact {
    padding: 12px;
    margin: 4px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.equipment-item-compact label {
    cursor: pointer;
    flex: 1;
    margin: 0;
    padding-left: 8px;
}

.equipment-item-compact input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

.equipment-card {
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.equipment-card:hover::before {
    left: 100%;
}

.floating-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196f3, transparent);
    margin: 16px 0;
    opacity: 0.3;
}

/* ===== Payment Form Pricing Summary ===== */
.payment-pricing-summary {
    margin: 20px 0;
}

.payment-summary-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.payment-summary-card h5 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 1.1em;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.deposit-row {
    background: rgba(33, 150, 243, 0.05);
    margin: 0 -20px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.summary-row.deposit-row span {
    color: #2196f3;
    font-weight: 600;
}

.summary-note {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
}

.summary-note small {
    font-size: 0.9em;
    line-height: 1.4;
}

/* ===== Clean Equipment Table Layout ===== */
.equipment-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.equipment-row {
    display: grid;
    grid-template-columns: 30px 20px 1fr auto;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    gap: 12px;
}

.equipment-row.clickable-row {
    cursor: pointer;
}

.equipment-row.clickable-row:hover {
    background: rgba(33, 150, 243, 0.05);
    border-color: #2196f3;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
}

.equipment-row input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

.equipment-row.with-quantity {
    grid-template-columns: 20px 1fr auto auto;
}

.equipment-check {
    color: #2196f3;
    font-weight: bold;
    font-size: 1.1em;
}

.equipment-name {
    font-weight: 500;
    color: #495057;
}

.equipment-price {
    font-weight: 600;
    color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 2px;
}

.qty-btn {
    background: #2196f3;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.qty-btn:hover {
    background: #1976d2;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #495057;
}

/* Selected state for equipment rows */
.equipment-row:has(input[type="checkbox"]:checked),
.equipment-row.selected {
    background: rgba(33, 150, 243, 0.1);
    border-color: #2196f3;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
}

.equipment-row:has(input[type="checkbox"]:checked) .equipment-check {
    color: #2196f3;
    font-size: 1.2em;
}

.equipment-row:has(input[type="checkbox"]:checked) .equipment-name {
    color: #2196f3;
    font-weight: 600;
}
@import './responsive-overrides.css';

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../../images/DiscoRoomVMAP.jpeg');
    background-size: cover;
    background-position: center;
}

body.dark .hero {
    background: linear-gradient(rgba(33, 37, 41, 0.9), rgba(33, 37, 41, 0.9)), url('../../images/DiscoRoomVMAP.jpeg');
}

body.atmospheric .hero {
    background: transparent;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(201, 184, 135, 0.2);
    color: var(--primary-gold);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(201, 184, 135, 0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(201, 184, 135, 0.3);
    transform: translateY(-2px);
}

body.dark .trust-badge {
    background: rgba(201, 184, 135, 0.1);
    color: #f0d090;
    border-color: rgba(201, 184, 135, 0.2);
}

body.atmospheric .trust-badge {
    background: rgba(201, 184, 135, 0.1);
    border-color: rgba(201, 184, 135, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.contact-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-options .floating-divider {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: transparent;
    border: none;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card:hover {
    color: var(--primary-gold);
}

.pricing-card.featured::after {
    opacity: 1;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
    height: 3px;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

.price-display {
    font-size: 3em;
    font-weight: bold;
    color: var(--accent);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(201, 184, 135, 0.1);
}

.price-note {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 20px;
}

.pricing-calculator-cta {
    text-align: center;
    margin: 50px 0;
}

.pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 300px;
}

.benefit-icon {
    font-size: 2em;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-text {
    text-align: left;
}

.benefit-text strong {
    color: var(--accent);
}

/* Dark mode pricing */
body.dark .pricing-card {
    background: transparent;
}

body.dark .pricing-card.featured {
    background: transparent;
}

body.dark .pricing-features li {
    border-bottom-color: rgba(201, 184, 135, 0.2);
}

/* Atmospheric mode pricing */
body.atmospheric .pricing-card {
    background: transparent;
}

body.atmospheric .pricing-card.featured {
    background: transparent;
}

body.atmospheric .benefit-item {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    .price-display {
        font-size: 2.5em;
    }
}

/* Booking Wizard */
.booking-wizard {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

body.dark .booking-wizard {
    background: #2a2a2a;
    box-shadow: var(--shadow-lg);
}

body.atmospheric .booking-wizard {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(201, 184, 135, 0.2);
    box-shadow: var(--shadow-xl);
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.wizard-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.wizard-step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: -1;
}

.wizard-step:last-child::after {
    display: none;
}

.wizard-step-number {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.wizard-step.active .wizard-step-number {
    background: var(--primary-gold);
    color: #1a1a1a;
}

.wizard-step.completed .wizard-step-number {
    background: var(--success-green);
    color: white;
}

.wizard-content {
    min-height: 300px;
}

.wizard-section {
    display: none;
}

.wizard-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 30px;
    position: relative;
}

.service-option {
    background: var(--bg-primary);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

body.dark .service-option {
    background: #1a1a1a;
}

body.atmospheric .service-option {
    background: rgba(10, 10, 10, 0.3);
}

.service-option::before {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
}

body.dark .service-option::before {
    background: linear-gradient(to bottom, transparent, #495057, transparent);
}

body.atmospheric .service-option::before {
    background: linear-gradient(to bottom, transparent, rgba(201, 184, 135, 0.3), transparent);
}

.service-option:last-child::before {
    display: none;
}

.service-option:hover {
    background: var(--bg-secondary);
    transform: scale(1.02);
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

body.dark .service-option:hover {
    background: #2a2a2a;
}

body.atmospheric .service-option:hover {
    background: rgba(201, 184, 135, 0.1);
}

.service-option.selected {
    background: var(--primary-gold);
    color: #1a1a1a;
    z-index: 2;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 184, 135, 0.3);
}

.service-option.selected::before,
.service-option.selected::after {
    opacity: 0;
}

.service-option-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-price {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-top: 8px;
    font-weight: 500;
}

.option-price {
    color: var(--color-accent);
    font-weight: 500;
    margin-left: 8px;
    font-size: 0.9rem;
}

.option-price.save {
    color: #22c55e;
}

body.dark .service-price,
body.dark .option-price {
    color: #f0d090;
}

body.dark .option-price.save {
    color: #4ade80;
}

/* My Events Section */
.my-events-section {
    background: #f3e5f5;
    border-top: 3px solid var(--accent-purple);
    display: none;
}

body.dark .my-events-section {
    background: rgba(155, 89, 182, 0.1);
}

body.atmospheric .my-events-section {
    background: rgba(155, 89, 182, 0.05);
}

.my-events-section.visible {
    display: block;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-purple);
    transform: translateX(-50%);
}

.timeline-event {
    position: relative;
    padding: 20px 40px;
    width: 50%;
    margin-bottom: 40px;
}

.timeline-event:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-event:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-event-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-purple);
    border: 4px solid #ffffff;
    border-radius: 50%;
    top: 25px;
}

.timeline-event:nth-child(odd) .timeline-event-dot {
    right: -10px;
}

.timeline-event:nth-child(even) .timeline-event-dot {
    left: -10px;
}

.timeline-event-content {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

body.dark .timeline-event-content {
    background: #2a2a2a;
}

body.atmospheric .timeline-event-content {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 184, 135, 0.2);
}

.timeline-event-content.interest {
    border-left: 4px solid var(--warning-orange);
}

.timeline-event-content.confirmed {
    border-left: 4px solid var(--success-green);
}

.timeline-event-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 10px;
}

.timeline-event-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-event-status.interest {
    background: rgba(230, 126, 34, 0.2);
    color: var(--warning-orange);
}

.timeline-event-status.confirmed {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success-green);
}

.timeline-event-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

/* Services Video Container */
.services-video-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    align-items: stretch;
}

.services-video {
    position: relative;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

body.atmospheric .services-video {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.services-video video {
    width: 100%;
    display: block;
}

/* Instagram Cards */
.instagram-cards {
    display: flex;
    align-items: center;
    height: 100%;
}

.instagram-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

body.dark .instagram-card {
    background: #2a2a2a;
}

body.atmospheric .instagram-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 184, 135, 0.2);
}

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

.instagram-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) border-box;
    transition: all var(--transition-base);
    cursor: pointer;
}

.instagram-card-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instagram-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-card-username {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

body.dark .instagram-card-username {
    color: #ffffff;
}

body.atmospheric .instagram-card-username {
    color: var(--primary-gold);
}

.instagram-card-handle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.instagram-follow-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.instagram-follow-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Instagram Caption */
.instagram-caption {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    line-height: 1.4;
}

body.dark .instagram-caption {
    color: rgba(255, 255, 255, 0.6);
}

body.atmospheric .instagram-caption {
    color: rgba(255, 255, 255, 0.7);
}

.caption-divider {
    display: inline-block;
    width: 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e9ecef, transparent);
    vertical-align: middle;
    margin: 0 10px;
}

body.dark .caption-divider {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

body.atmospheric .caption-divider {
    background: linear-gradient(to right, transparent, rgba(201, 184, 135, 0.3), transparent);
}

/* Services List */
.services-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item-simple {
    text-align: center;
    padding: 20px;
}

.service-item-simple h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

body.dark .service-item-simple h3 {
    color: #ffffff;
}

body.atmospheric .service-item-simple h3 {
    color: var(--primary-gold);
}

.service-item-simple p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Response Time Notice */
.response-time-notice {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid var(--accent-purple);
    border-radius: var(--radius-md);
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    font-size: 0.95rem;
}

/* Pricing Summary */
.pricing-summary {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-top: 30px;
}

body.dark .pricing-summary {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4caf50;
}

body.atmospheric .pricing-summary {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.pricing-section {
    margin-bottom: 25px;
}

.pricing-section h5 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

body.dark .pricing-section h5 {
    color: #e0e0e0;
}

.pricing-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #666;
}

body.dark .pricing-detail {
    color: #999;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.pricing-item.discount {
    color: #22c55e;
}

.pricing-total-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--color-accent);
}

.pricing-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.pricing-item.deposit {
    background: rgba(76, 175, 80, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 10px -15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.pricing-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    font-size: 0.9rem;
}

body.dark .pricing-note {
    background: rgba(255, 255, 255, 0.05);
}

.pricing-note p {
    margin: 5px 0;
    color: #22c55e;
}

body.dark .pricing-note p {
    color: #4ade80;
}

/* News Modal */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

body.atmospheric .news-modal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.news-modal.visible { display: flex; }

.news-modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    max-width: 1200px;
    width: 90%;
    height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

body.dark .news-modal-content {
    background: #1a1a1a;
    color: #ecf0f1;
}

body.atmospheric .news-modal-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 184, 135, 0.3);
    border-radius: 20px;
}

.news-modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.dark .news-modal-header {
    border-bottom-color: #495057;
}

body.atmospheric .news-modal-header {
    border-bottom-color: rgba(201, 184, 135, 0.2);
}

.news-modal-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.3s ease;
}

.news-modal-close:hover {
    color: #212529;
    transform: rotate(90deg);
}

body.dark .news-modal-close:hover {
    color: #ffffff;
}

body.atmospheric .news-modal-close:hover {
    color: #c9b887;
}

.news-modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
}

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

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.dark .news-card {
    background: #2a2a2a;
}

body.atmospheric .news-card {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 184, 135, 0.2);
}

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

.news-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card-content {
    padding: 25px;
}

.news-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

body.dark .news-title {
    color: #ffffff;
}

body.atmospheric .news-title {
    color: #c9b887;
}

.news-excerpt {
    color: #6c757d;
    line-height: 1.6;
}

body.dark .news-excerpt {
    color: rgba(255, 255, 255, 0.7);
}

/* News Editor (Admin Only) */
.news-editor {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    display: none;
}

body.dark .news-editor {
    background: rgba(255, 193, 7, 0.1);
}

body.atmospheric .news-editor {
    background: rgba(255, 193, 7, 0.1);
}

.news-editor.visible {
    display: block;
}

/* Modal Overrides */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

body.atmospheric .modal {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal.visible {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body.dark .modal-content {
    background: #1a1a1a;
    color: #ecf0f1;
}

body.atmospheric .modal-content {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 184, 135, 0.3);
    border-radius: 20px;
}

/* Fix atmospheric theme text visibility in auth modal */
body.atmospheric .modal-content p {
    color: rgba(255, 255, 255, 0.8);
}

body.atmospheric .modal-content a {
    color: var(--primary-gold);
    text-decoration: none;
}

body.atmospheric .modal-content a:hover {
    color: #e6d4a3;
    text-decoration: underline;
}

body.atmospheric #authTitle {
    color: var(--primary-gold);
}

/* User Badge */
.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 184, 135, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-badge.venue { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.user-badge.customer { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.user-badge.admin { background: rgba(255, 193, 7, 0.1); color: #ffc107; }

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--success-green);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transform: translateX(400px);
    transition: transform var(--transition-base);
    z-index: 3000;
}

.notification.visible {
    transform: translateX(0);
}

.notification.error {
    background: var(--danger-red);
}

/* Footer */
.footer {
    background: #212529;
    color: #ffffff;
    padding: 60px 0 40px;
    text-align: center;
}

body.atmospheric .footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid rgba(201, 184, 135, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 40px;
    text-align: left;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.6);
}

/* Checkbox Groups for Booking Wizard */
.checkbox-group {
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-lg);
    padding: 15px;
}

body.dark .checkbox-group {
    background: rgba(255, 255, 255, 0.05);
}

body.atmospheric .checkbox-group {
    background: rgba(255, 255, 255, 0.03);
}

.checkbox-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    transition: all 0.2s;
}

.checkbox-item:hover {
    padding-left: 5px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-accent);
}

.checkbox-item label {
    cursor: pointer;
    user-select: none;
    flex: 1;
    font-size: 1rem;
    color: var(--color-text);
}

.checkbox-group .floating-divider {
    margin: 0;
    opacity: 0.3;
    background: var(--color-border);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .services-video-container {
        grid-template-columns: 1fr;
    }
    
    .instagram-cards {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .wizard-progress {
        display: none;
    }
    
    .wizard-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .wizard-buttons button {
        width: 100%;
    }
    
    .service-selection {
        grid-template-columns: 1fr;
    }
    
    .service-option::before {
        display: none;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .booking-wizard {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-event {
        width: 100%;
        padding-left: 40px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }
    
    .timeline-event:nth-child(even) {
        left: 0;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-event-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .timeline-event-actions {
        justify-content: flex-start !important;
    }
}

@media (max-width: 480px) {
    .service-item-simple {
        padding: 10px;
    }
}