/* Add this to center the title */
.title {
    text-align: center;
    font-family: 'Cursive', 'Fantasy', cursive;
    color: purple;
    font-size: 3em;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px #00ff00, -2px -2px 5px #00ff00, 2px -2px 5px #00ff00, -2px 2px 5px #00ff00, 0px 0px 10px #ffd700;
}

/* Style for the shining paragraph */
.title + p {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: #ffd700;
    text-shadow: 1px 1px 2px #ffd700, -1px -1px 2px #ffd700, 1px -1px 2px #ffd700, -1px 1px 2px #ffd700;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
}

header, nav, section, footer {
    padding: 20px;
}

.box {
    width: 30%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px #6DA9FF, -2px -2px 5px #6DA9FF, 2px -2px 5px #6DA9FF, -2px 2px 5px #6DA9FF;
}

/* CHANGED THIS TO TRANSPARENT */
header {
    background-color: transparent; 
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

h1, h2 {
    color: #fff;
    text-shadow: 2px 2px 5px #ff3399, -2px -2px 5px #ff3399, 2px -2px 5px #ff3399, -2px 2px 5px #ff3399;
    font-family: 'Bubblegum Sans', cursive;
}

nav a[href="fareed-baraka.html"],
nav a[href="portfolio.html"] {
    color: #000080;
    text-shadow: 2px 2px 5px #6DA9FF, -2px -2px 5px #6DA9FF, 2px -2px 5px #6DA9FF, -2px 2px 5px #6DA9FF;
}

footer {
    text-align: center;
    background-color: #000;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.star {
    position: fixed;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    animation: twinkle 2s infinite alternate ease-in-out, pulsate 3s infinite ease-in-out, sway 5s infinite ease-in-out;
}

.tv {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    background-color: #000;
    border: 2px solid #333;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
}

.tv-container {
    display: flex;
    flex-direction: column; /* This stacks the label on top of the video */
    align-items: center;    /* This centers the label and the video */
    gap: 0px; 
    margin: 20px;
}

footer {
    text-align: center;
    background-color: #000; 
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;         /* Ensures it starts at the very left edge */
    width: 100%;     /* Forces it to span the full width of the screen */
    padding: 15px 0; /* Adds some vertical space so the text isn't cramped */
    z-index: 999;    /* Makes sure it stays on top of other elements */
}

footer p {
    font-size: 12px; 
    color: rgba(255, 255, 255, 0.8); 
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* Restoring the MERIT Style: Silver with Pink Glow */
.modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #C0C0C0; /* Metallic Silver */
    font-size: 1.5em; /* Small enough to fit one line */
    font-weight: 700;
    margin-bottom: 20px;
    filter: none !important; 
    
    /* THE MERIT GLOW: 
       1. Soft Pink Glow 
       2. Sharp Black Shadow for clarity 
    */
    text-shadow: 2px 2px 10px rgba(255, 51, 153, 0.9), 
                 3px 3px 0px rgba(0, 0, 0, 1); 
    
    opacity: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap; 
}

/* Description in Spacey Green */
#modalDesc {
    font-family: 'Orbitron', sans-serif;
    color: #00ff9f;
    font-size: 0.85em;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(0, 255, 159, 0.4);
}

/* Venue in Spacey Red */
#modalVenue {
    font-family: 'Orbitron', sans-serif;
    color: #ff2d55;
    font-size: 0.85em;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 8px rgba(255, 45, 85, 0.4);
}

/* Date in Spacey Yellow */
#modalDate {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 2px 2px 2px rgba(0, 0, 0, 0.8);
}
/* Style for the new link button */
.event-link {
    display: inline-block;
    margin-top: 20px;
    color: #6DA9FF;
    text-decoration: none;
    border: 1px solid #6DA9FF;
    padding: 8px 20px;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(109, 169, 255, 0.3);
}

.event-link:hover {
    background: rgba(109, 169, 255, 0.2);
    box-shadow: 0 0 15px rgba(109, 169, 255, 0.6);
}

/* Matching the Event Style: Silver with Pink & Black Shadows */
.art-info h2 {
    font-family: 'Orbitron', sans-serif;
    color: #C0C0C0; /* Metallic Silver */
    font-size: 2.2em;
    font-weight: 700;
    margin: 0;
    filter: none !important; 
    
    /* THE EXACT MATCH: 
       1. Soft Pink Glow (10px blur)
       2. Sharp Black Shadow (3px offset) for depth 
    */
    text-shadow: 2px 2px 10px rgba(255, 51, 153, 0.9), 
                 3px 3px 0px rgba(0, 0, 0, 1); 
    
    opacity: 1;
    letter-spacing: 4px; /* Spacey look */
    text-transform: uppercase;
}

/* Keeping your sharp Cyber Yellow description */
.art-info p {
    font-family: 'Orbitron', sans-serif;
    color: #ffd700;
    font-size: 0.9em;
    font-weight: 400;
    margin-top: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}




@keyframes twinkle { 0% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes pulsate { 0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
@keyframes sway { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }