/* Universal Reset and Dark Theme Background */
body {
    margin: 0;
    font-family: Arial, sans-serif; /* We will define specific fonts for titles later */
    background: #1a1a1a; /* Dark background */
    color: white;
}

/* Content Wrapper to center everything */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
header {
    background: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 40px; /* Small version of your avatar */
    border-radius: 50%;
}

.logo-area span {
    font-size: 20px;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

nav a:hover {
    color: #cc00ff; /* Subtle purple hover effect */
}

/* Banner Styling */
.main-banner img {
    width: 100%;
    height: auto;
}

/* Identity Text Section */
.identity-text {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.identity-text h2 {
    font-family: 'Courier New', Courier, monospace; /* Example for pixel font feel */
    font-size: 32px;
}

.identity-text p {
    font-size: 18px;
    line-height: 1.6;
}

/* Video Grid and Embeds */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for a grid of 4 */
    gap: 20px;
}

.video-container {
    width: 100%;
    border: 2px solid #333;
    transition: transform 0.2s;
    margin-bottom: 50px;
}

/* Simple hover effect for "precision music fusions" */
.video-container:hover {
    transform: scale(1.03);
    border-color: #6600ff;
}

.video-container iframe {
    width: 100%;
    height: 315px; /* Adjust height based on your layout needs */
}

.video-container h3 {
    padding: 10px;
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.arrowcontainer{
	position: relative;
}

.arrow {
	position: absolute;
}

.arrow.left {
    left: -400px;
    width: 70%;
    transform: rotate(20deg);
    top: -165px;
}

.arrow.right {
	right: -400px;
    width: 70%;
    transform: rotate(160deg);
    top: -200px;
}