Music Club Event. Banner for Audition and Musical Showcase

Audition & Musical Showcase

by Music Club

Social Newnham Campus

Fri, Nov 14, 2025

5 PM – 9 PM EST (GMT-5)

Add to Calendar

E1404 - Senecentre

1750 Finch Avenue East, Toronto M2J 2X5, Canada

View Map
0
Registered

Registration

Details

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Audition & Musical Showcase</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            line-height: 1.6;
            padding: 20px;
            min-height: 100vh;
        }
        
        .event-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .event-header {
            background: linear-gradient(to right, #ff416c, #ff4b2b);
            padding: 40px 30px;
            text-align: center;
            position: relative;
        }
        
        .event-header h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .event-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .event-content {
            padding: 40px 30px;
        }
        
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #ff4b2b;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: #ff4b2b;
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .feature-list li {
            padding: 15px 0;
            padding-left: 50px;
            position: relative;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li::before {
            content: '♪';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 35px;
            background: rgba(255, 75, 43, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #ff4b2b;
        }
        
        .instruments {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0 30px;
        }
        
        .instrument-tag {
            background: rgba(255, 75, 43, 0.15);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid rgba(255, 75, 43, 0.3);
            font-size: 0.9rem;
        }
        
        .provided {
            background: rgba(30, 215, 96, 0.15);
            border: 1px solid rgba(30, 215, 96, 0.3);
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .provided h3 {
            color: #1ed760;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .provided h3::before {
            content: '✓';
            background: #1ed760;
            color: #16213e;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .not-provided {
            background: rgba(255, 65, 108, 0.15);
            border: 1px solid rgba(255, 65, 108, 0.3);
            padding: 15px;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .not-provided h3 {
            color: #ff416c;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .not-provided h3::before {
            content: '!';
            background: #ff416c;
            color: #fff;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        @media (max-width: 600px) {
            .event-header h1 {
                font-size: 2rem;
            }
            
            .event-content {
                padding: 25px 20px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .feature-list li {
                padding-left: 40px;
                font-size: 1rem;
            }
        }
    </style>
</head>
<body>
    <div class="event-container">
        <div class="event-header">
            <h1>Audition & Musical Showcase</h1>
            <p>An evening of talent, collaboration, and musical discovery</p>
        </div>
        
        <div class="event-content">
            <h2 class="section-title">Event Highlights</h2>
            
            <ul class="feature-list">
                <li>
                    <strong>Showcase Your Talent</strong> - Perform on your instrument of choice or showcase your vocal abilities. All instruments welcome including strings, guitars, bass, brass, keys, and more.
                </li>
                <li>
                    <strong>Jam Sessions & Covers</strong> - Play covers or even improvise with provided backing tracks in jams.
                </li>
                <li>
                    <strong>Music Discussions</strong> - Engage in meaningful conversations about music theory, techniques, industry insights, and artistic expression.
                </li>
            </ul>
            
            <div class="provided">
                <h3>Equipment We Provide</h3>
                <p>Don't have your instrument with you? No problem! We'll have the following available:</p>
                <div class="instruments">
                    <span class="instrument-tag">Electric Guitar</span>
                    <span class="instrument-tag">Bass Guitar</span>
                    <span class="instrument-tag">Keyboard</span>
                    <span class="instrument-tag">Microphones</span>
                    <span class="instrument-tag">Amplifiers</span>
                    <span class="instrument-tag">Audio Interface</span>
                </div>
            </div>
            
            <div class="not-provided">
                <h3>Please Note</h3>
                <p>Unfortunately, we do <strong>not</strong> have drums or percussion instruments available at the venue. If you're a drummer or percussionist, please bring your own equipment.</p>
                <div class="instruments">
                    <span class="instrument-tag">No Drum Kit</span>
                    <span class="instrument-tag">No Percussion</span>
                    <span class="instrument-tag">No Cajón</span>
                    <span class="instrument-tag">No Congas</span>
                </div>
            </div>
        </div>
    </div>
</body>
</html>

Where

E1404 - Senecentre

1750 Finch Avenue East, Toronto M2J 2X5, Canada