/* Event Calendar Page Specific Styles - V2 */
.v2-event-section {
    padding: 40px 0 40px;
    background: #f8fafc;
}

.page-hero {
    padding: 60px 0 30px !important;
}

.page-hero p {
    margin-bottom: 0 !important;
}

.v2-events-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.v2-month-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 15px;
}

.v2-month-divider h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.v2-month-divider .line {
    height: 2px;
    background: #e2e8f0;
    width: 100%;
}

.v2-event-row {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: 120px 1fr 200px;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.v2-event-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.v2-date-box {
    text-align: center;
    padding: 15px;
    background: #fff5f9;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

.v2-date-box .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.v2-date-box .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a202c;
    text-transform: uppercase;
    margin-top: 5px;
}

.v2-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}

.v2-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
}

.v2-meta i { color: var(--primary-color); margin-right: 8px; }

.v2-desc { color: #64748b; line-height: 1.6; }

.v2-action { 
    text-align: right; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.v2-learn-more {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.v2-learn-more:hover {
    opacity: 0.8;
}

.v2-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
}

.v2-book-btn {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.v2-book-btn:hover {
    box-shadow: 0 10px 15px -3px rgba(211, 23, 137, 0.4);
    transform: scale(1.02);
}

.v2-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Private Event Section Styles */
.v2-private-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.v2-private-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.v2-private-content span.v2-label {
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.v2-private-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.v2-private-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.v2-private-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.v2-private-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a202c;
    font-weight: 700;
}

.v2-private-list li i {
    color: var(--primary-color);
}

.v2-private-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.v2-private-image {
    position: relative;
}

.v2-private-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.v2-private-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.v2-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.v2-badge-text span {
    display: block;
}

.v2-badge-text .v2-badge-title {
    font-weight: 800;
    color: #1a202c;
    font-size: 0.9rem;
}

.v2-badge-text .v2-badge-subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

/* SEO Section */
.v2-seo-section {
    padding: 40px 0;
    background: #fff;
}

.v2-seo-content {
    border-left: 4px solid var(--primary-color);
    padding-left: 25px;
}

.v2-seo-content h2 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 800;
}

.v2-seo-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 40px 20px 80px;
    background: #f8f9ff;
    border-top: 1px solid #f1f5f9;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
    font-size: 2rem;
    font-weight: 800;
}

@media (max-width: 850px) {
    .v2-event-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .v2-date-box { width: 100px; margin: 0 auto; }
    .v2-meta { justify-content: center; }
    .v2-action { 
        text-align: center; 
        border-top: 1px solid #f1f5f9; 
        padding-top: 20px; 
        align-items: center;
    }
    
    .v2-private-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px !important;
    }
    .v2-private-list {
        justify-items: start;
        max-width: 300px;
        margin: 0 auto 40px !important;
    }
    .v2-private-actions {
        justify-content: center;
    }
    .v2-private-image {
        order: -1;
    }
}
