/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #000;
    border-bottom: 3px solid #e63946;
}

.brand-logo {
    height: 50px;
    margin-right: 15px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.logo span {
    color: #e63946;
}

.xyz-logo {
    height: 75px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.xyz-logo:hover {
    transform: scale(1.1);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #e63946;
}

/* Hero Section */
.hero {
    height: 60vh;
    background: url('assets/hero.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #b91d2a;
}

/* Video Section */
.video-section {
    padding: 50px 10%;
    text-align: center;
}

.video-container {
    margin-top: 30px;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 5px solid #333;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 10%;
    text-align: center;
    background: #1a1a1a;
}

.gallery-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.video-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e63946;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 5px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    text-align: center;
    padding: 40px;
    background: #000;
    font-size: 0.9rem;
    color: #777;
}

/* Social Media Bar */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-icon {
    font-size: 1.8rem;
    color: #888;
    /* Subtle gray by default */
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects with Brand Colors */
.social-icon:hover {
    transform: translateY(-5px);
    /* Bounces up slightly */
}

.social-icon.yt:hover {
    color: #FF0000;
}

/* YouTube Red */
.social-icon.ig:hover {
    color: #E1306C;
}

/* Instagram Pink */
.social-icon.fb:hover {
    color: #1877F2;
}

/* Facebook Blue */
.social-icon.x:hover {
    color: #ffffff;
}

/* X White */


footer p {
    font-size: 0.8rem;
    color: #555;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer Links */
.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #e63946;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 5%;
    }

    .logo {
        margin-bottom: 15px;
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .brand-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    footer {
        padding: 30px 15px;
    }

    .social-bar {
        gap: 15px;
    }
}