/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF5722;
    --primary-purple: #8b00ff;
    --primary-blue: #0099CC;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --primary: #8b00ff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    position: relative;
    background: var(--white);
}

/* Background Pattern Options - Choose one by adding class to body */

/* Option 1: Diagonal Lines Pattern */
.pattern-diagonal-lines {
    background-color: #ffffff;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(139, 0, 255, 0.03) 35px,
        rgba(139, 0, 255, 0.03) 70px
    );
}

/* Option 2: Grid Pattern */
.pattern-grid {
    background-color: #ffffff;
    background-image: 
        linear-gradient(rgba(139, 0, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 0, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Option 3: Dots Pattern */
.pattern-dots {
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle, rgba(139, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Option 4: Zigzag Pattern */
.pattern-zigzag {
    background-color: #ffffff;
    background-image: 
        linear-gradient(135deg, rgba(139, 0, 255, 0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(139, 0, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(139, 0, 255, 0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(139, 0, 255, 0.03) 25%, transparent 25%);
    background-size: 40px 40px;
    background-position: 0 0, 20px 0, 20px -20px, 0px -20px;
}

/* Option 5: Hexagon Pattern */
.pattern-hexagon {
    background-color: #ffffff;
    background-image: 
        linear-gradient(30deg, rgba(139, 0, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 0, 255, 0.03) 87.5%, rgba(139, 0, 255, 0.03)),
        linear-gradient(150deg, rgba(139, 0, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 0, 255, 0.03) 87.5%, rgba(139, 0, 255, 0.03)),
        linear-gradient(30deg, rgba(139, 0, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 0, 255, 0.03) 87.5%, rgba(139, 0, 255, 0.03)),
        linear-gradient(150deg, rgba(139, 0, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 0, 255, 0.03) 87.5%, rgba(139, 0, 255, 0.03)),
        linear-gradient(60deg, rgba(139, 0, 255, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(139, 0, 255, 0.05) 75%, rgba(139, 0, 255, 0.05)),
        linear-gradient(60deg, rgba(139, 0, 255, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(139, 0, 255, 0.05) 75%, rgba(139, 0, 255, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
}

/* Option 6: Waves Pattern */
.pattern-waves {
    background-color: #ffffff;
    background-image: 
        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            #ffffff 40px
        ),
        repeating-linear-gradient(
            rgba(139, 0, 255, 0.03),
            rgba(139, 0, 255, 0.03) 1px,
            transparent 1px,
            transparent 80px
        );
}

/* Option 7: Cross Pattern */
.pattern-cross {
    background-color: #ffffff;
    background-image: 
        radial-gradient(circle, transparent 20%, rgba(139, 0, 255, 0.03) 20%, rgba(139, 0, 255, 0.03) 80%, transparent 80%, transparent),
        radial-gradient(circle, transparent 20%, rgba(139, 0, 255, 0.03) 20%, rgba(139, 0, 255, 0.03) 80%, transparent 80%, transparent);
    background-size: 100px 100px;
    background-position: 0 0, 50px 50px;
}

/* Option 8: Triangle Pattern */
.pattern-triangles {
    background-color: #ffffff;
    background-image: 
        linear-gradient(115deg, transparent 75%, rgba(139, 0, 255, 0.03) 75%),
        linear-gradient(245deg, transparent 75%, rgba(139, 0, 255, 0.03) 75%),
        linear-gradient(115deg, transparent 75%, rgba(139, 0, 255, 0.03) 75%),
        linear-gradient(245deg, transparent 75%, rgba(139, 0, 255, 0.03) 75%);
    background-size: 60px 120px;
    background-position: 0 0, 0 0, 30px 60px, 30px 60px;
}

/* Option 9: Animated Gradient Lines */
.pattern-animated-lines {
    background: linear-gradient(90deg, 
        rgba(139, 0, 255, 0.03) 50%, 
        transparent 50%),
        linear-gradient(90deg, 
        rgba(139, 0, 255, 0.03) 50%, 
        transparent 50%),
        linear-gradient(0deg, 
        rgba(139, 0, 255, 0.03) 50%, 
        transparent 50%),
        linear-gradient(0deg, 
        rgba(139, 0, 255, 0.03) 50%, 
        transparent 50%);
    background-size: 50px 50px, 50px 50px, 50px 50px, 50px 50px;
    background-position: -25px 0, 0 0, 0 -25px, 0 0;
    animation: backgroundShift 10s linear infinite;
}

@keyframes backgroundShift {
    0% {
        background-position: -25px 0, 0 0, 0 -25px, 0 0;
    }
    100% {
        background-position: 25px 0, 50px 50px, 0 25px, 50px 50px;
    }
}

/* Option 10: Subtle Geometric Pattern */
.pattern-geometric {
    background-color: #ffffff;
    background-image: 
        linear-gradient(to right, rgba(139, 0, 255, 0.02), rgba(139, 0, 255, 0.02) 1px, transparent 1px, transparent),
        linear-gradient(to bottom, rgba(139, 0, 255, 0.02), rgba(139, 0, 255, 0.02) 1px, transparent 1px, transparent),
        linear-gradient(45deg, transparent 48%, rgba(139, 0, 255, 0.03) 49%, rgba(139, 0, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(139, 0, 255, 0.03) 49%, rgba(139, 0, 255, 0.03) 51%, transparent 52%);
    background-size: 100px 100px, 100px 100px, 100px 100px, 100px 100px;
}

/* Option 11: Abstract Geometric Line Art Pattern (Like the image) */
.pattern-abstract-geo {
    background-color: #ffffff;
    position: relative;
    background-image: 
        /* Horizontal lines */
        linear-gradient(to bottom, transparent 48%, rgba(139, 0, 255, 0.04) 49%, rgba(139, 0, 255, 0.04) 51%, transparent 52%),
        /* Vertical lines */
        linear-gradient(to right, transparent 48%, rgba(139, 0, 255, 0.04) 49%, rgba(139, 0, 255, 0.04) 51%, transparent 52%),
        /* Diagonal lines 1 */
        linear-gradient(45deg, transparent 48%, rgba(139, 0, 255, 0.03) 49%, rgba(139, 0, 255, 0.03) 51%, transparent 52%),
        /* Diagonal lines 2 */
        linear-gradient(-45deg, transparent 48%, rgba(139, 0, 255, 0.03) 49%, rgba(139, 0, 255, 0.03) 51%, transparent 52%),
        /* Additional diagonal for complexity */
        linear-gradient(30deg, transparent 48.5%, rgba(139, 0, 255, 0.02) 49%, rgba(139, 0, 255, 0.02) 51%, transparent 51.5%),
        linear-gradient(-30deg, transparent 48.5%, rgba(139, 0, 255, 0.02) 49%, rgba(139, 0, 255, 0.02) 51%, transparent 51.5%),
        /* More angles for abstract look */
        linear-gradient(60deg, transparent 49%, rgba(139, 0, 255, 0.02) 49.5%, rgba(139, 0, 255, 0.02) 50.5%, transparent 51%),
        linear-gradient(-60deg, transparent 49%, rgba(139, 0, 255, 0.02) 49.5%, rgba(139, 0, 255, 0.02) 50.5%, transparent 51%);
    background-size: 
        100px 100px,
        100px 100px,
        150px 150px,
        150px 150px,
        200px 200px,
        200px 200px,
        250px 250px,
        250px 250px;
    background-position: 
        0 0,
        0 0,
        -25px -25px,
        25px 25px,
        0 50px,
        50px 0,
        -50px 0,
        0 -50px;
}

/* Option 12: Complex Interconnected Pattern */
.pattern-interconnected {
    background-color: #ffffff;
    background-image: 
        /* Create interconnected shapes */
        conic-gradient(from 45deg at 25% 25%, transparent 0deg, transparent 45deg, rgba(139, 0, 255, 0.03) 45deg, rgba(139, 0, 255, 0.03) 90deg, transparent 90deg),
        conic-gradient(from 135deg at 75% 25%, transparent 0deg, transparent 45deg, rgba(139, 0, 255, 0.03) 45deg, rgba(139, 0, 255, 0.03) 90deg, transparent 90deg),
        conic-gradient(from 225deg at 75% 75%, transparent 0deg, transparent 45deg, rgba(139, 0, 255, 0.03) 45deg, rgba(139, 0, 255, 0.03) 90deg, transparent 90deg),
        conic-gradient(from 315deg at 25% 75%, transparent 0deg, transparent 45deg, rgba(139, 0, 255, 0.03) 45deg, rgba(139, 0, 255, 0.03) 90deg, transparent 90deg),
        /* Connecting lines */
        linear-gradient(90deg, transparent 49%, rgba(139, 0, 255, 0.02) 49%, rgba(139, 0, 255, 0.02) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(139, 0, 255, 0.02) 49%, rgba(139, 0, 255, 0.02) 51%, transparent 51%);
    background-size: 
        200px 200px,
        200px 200px,
        200px 200px,
        200px 200px,
        100px 100px,
        100px 100px;
    background-position: 
        0 0,
        100px 0,
        100px 100px,
        0 100px,
        0 0,
        0 0;
}

/* Option 13: SVG-like Abstract Pattern */
.pattern-svg-abstract::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%238b00ff' stroke-width='1' fill='none' opacity='0.5'%3E%3Cpath d='M50 50 L150 50 L200 100 L200 200 L150 250 L50 250 L0 200 L0 100 Z'/%3E%3Cpath d='M100 0 L300 200 M300 0 L100 200'/%3E%3Cpath d='M150 100 L250 100 L300 150 L300 250 L250 300 L150 300'/%3E%3Cpath d='M0 150 L100 150 L150 200 L150 300 L100 350 L0 350'/%3E%3Ccircle cx='200' cy='200' r='50'/%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Ccircle cx='300' cy='100' r='30'/%3E%3Ccircle cx='100' cy='300' r='30'/%3E%3Ccircle cx='300' cy='300' r='30'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 400px 400px;
    pointer-events: none;
    z-index: 1;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(139, 0, 255, 0.5);
}
.logoImage {
    height: 40px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(139, 0, 255, 0.2);
}
.nav-center {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-center a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-center a:hover {
    color: var(--primary-purple);
}

.nav-center a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    fill: var(--gray);
    transition: var(--transition);
}

.search-icon:hover {
    fill: var(--primary-purple);
    transform: scale(1.1);
}

/* Button Styles */
.btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-login {
    background: transparent;
    color: var(--dark);
}

.btn-login:hover {
    color: var(--primary-purple);
}

.btn-signup {
    background: var(--primary-purple);
    color: white;
}

.btn-signup:hover {
    background: #7300d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 255, 0.3);
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 0.9rem;
    animation: fadeIn 0.6s ease;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-purple);
}

/* Main Content Container */
.event-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Event Poster - Updated for BLACKOUT BLISS */
.event-poster {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 0, 255, 0.3);
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
    animation: fadeInLeft 0.8s ease;
}

/* Add pattern overlay to poster */


@keyframes slidePattern {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(28px, 28px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.poster-content {
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.poster-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.poster-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.poster-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.poster-detail {
    text-align: center;
}

.poster-detail-value {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.poster-detail-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poster-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Event Details */
.event-details {
    padding-top: 1rem;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--primary-purple);
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    animation: slideInDown 0.6s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.event-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark);
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: var(--gray);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.event-info-item:nth-child(3) {
    animation-delay: 0.1s;
}

.event-info-item:nth-child(4) {
    animation-delay: 0.2s;
}

.event-info-item:nth-child(5) {
    animation-delay: 0.3s;
}

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

.event-info-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.event-info-text {
    font-size: 1.1rem;
    color: var(--dark);
}

.location-note {
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.05), rgba(139, 0, 255, 0.02));
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: var(--gray);
    border-left: 3px solid var(--primary-purple);
}

.btn-get-ticket {
    background: var(--primary-purple);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 8px;
    width: 100%;
    margin: 2rem 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-get-ticket::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%; 
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
}

.btn-get-ticket:hover {
    background: #0088bb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 204, 0.3);
}

.btn-get-ticket:hover::before {
    width: 300px;
    height: 300px;
}

/* Description Section */
.event-description {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.description-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Share Section */
.share-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.share-btn:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 255, 0.2);
    color: var(--primary-purple);
}

.share-btn svg {
    transition: var(--transition);
}

.share-btn:hover svg {
    transform: scale(1.1);
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    .event-container {
        padding: 2rem 3%;
    }
    
    nav {
        padding: 1rem 3%;
    }
    
    .breadcrumb {
        padding: 1rem 3%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .event-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .event-poster {
        position: relative;
        height: 450px;
        top: 0;
    }

    .poster-title {
        font-size: 2.5rem;
    }
    
    .poster-details {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .event-title {
        font-size: 1.8rem;
    }
    
    .event-info-text {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
    
    nav {
        padding: 0.8rem 1rem;
    }
    
    .breadcrumb {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .search-icon {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .poster-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .poster-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .poster-detail-value {
        font-size: 1.5rem;
    }
    
    .poster-detail-label {
        font-size: 0.7rem;
    }
    
    .event-poster {
        height: 400px;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .btn-get-ticket {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .poster-footer {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .poster-title {
        font-size: 1.8rem;
    }
    
    .event-poster {
        height: 350px;
    }
    
    .btn-signup {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .share-btn {
        min-height: 48px;
    }
    
    .btn-get-ticket {
        min-height: 52px;
    }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .event-poster {
        height: 300px;
    }
    
    header {
        position: relative;
    }
    
    .poster-title {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    header {
        position: relative;
    }
    
    .btn,
    .share-section {
        display: none;
    }
    
    .event-poster {
        position: relative;
        height: auto;
    }
}/* Add this CSS to your existing style.css file */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.contact-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.contact-modal-header {
    background: linear-gradient(135deg, #8b00ff, #a855f7);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-contact-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.close-contact-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contact-modal-body {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.05), rgba(139, 0, 255, 0.02));
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b00ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.contact-link {
    color: #8b00ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-link:hover {
    color: #a855f7;
    text-decoration: underline;
}
/* Footer Styles with Shapphix Rave Brand Colors */
.site-footer {
    background: linear-gradient(135deg, #0a0a1f 0%, #1a1a2e 100%);
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #b8b8c8;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.05) 0%, 
        rgba(64, 224, 208, 0.05) 50%, 
        rgba(147, 51, 234, 0.05) 100%);
    animation: gradientShift 10s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

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

.col-sm-12, .col-md-6, .col-xs-6, .col-md-3, .col-md-8, .col-md-4 {
    padding: 0 15px;
}

.col-md-6 { flex: 0 0 50%; }
.col-md-3 { flex: 0 0 25%; }
.col-md-8 { flex: 0 0 66.666%; }
.col-md-4 { flex: 0 0 33.333%; }

/* Footer Logo */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
}

/* Tagline with gradient */
.tagline {
    font-size: 1.2rem;
    font-style: italic;
    background: linear-gradient(90deg, #ff69b4, #40e0d0, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-weight: 600;
}

.site-footer hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        #ff69b4, 
        #40e0d0, 
        #9333ea, 
        transparent);
    margin: 30px 0;
    opacity: 0.5;
}

.site-footer h6 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ff69b4, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-footer a {
    color: #b8b8c8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.site-footer a:hover {
    background: linear-gradient(90deg, #ff69b4, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.site-footer strong {
    color: #fff;
    font-weight: 700;
}

.footer-links {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.footer-links li {
    display: block;
    margin-bottom: 10px;
}

.footer-links a {
    color: #b8b8c8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    padding-left: 5px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff69b4;
}

.footer-links a:hover::before {
    left: -10px;
    opacity: 1;
}

.site-footer .social-icons {
    text-align: right;
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background: linear-gradient(135deg, #1a1a2e, #2a2a3e);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    color: #40e0d0;
    border: 1px solid rgba(64, 224, 208, 0.3);
}

.site-footer .social-icons a:hover {
    background: linear-gradient(135deg, #ff69b4, #40e0d0);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    border-color: transparent;
    color: #fff;
}

.copyright-text {
    margin: 0;
    color: #b8b8c8;
}

.copyright-text a {
    background: linear-gradient(90deg, #ff69b4, #40e0d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.text-justify {
    text-align: justify;
}

/* Social Media Specific Hover Effects */
.social-icons a.tiktok:hover {
    background: linear-gradient(135deg, #000, #ff69b4, #40e0d0);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.5);
}

.social-icons a.instagram:hover {
    background: linear-gradient(135deg, #ff69b4, #9333ea, #40e0d0);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.5);
}

.social-icons a.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #40e0d0);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

.social-icons a.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #40e0d0);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.5);
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .site-footer [class*="col-"] {
        margin-bottom: 30px;
    }
    
    .col-md-6, .col-md-3, .col-md-8, .col-md-4 {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 20px;
    }
    
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col-xs-6 {
        flex: 0 0 100%;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .tagline {
        text-align: center;
    }
}