@charset "UTF-8";
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
header {
    background-color: #23222A;
    border-bottom: 2px solid #AF000C;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(35, 34, 42, 0.95);
}

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

nav {
    float: right;
}

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

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

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

nav ul li a:hover {
    color: #D4A017; /* Gold accent */
}

/* Video Container */
.video-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.hero .video-container {
    padding-bottom: 56.25%; /* 16:9 aspect ratio for hero */
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    display: block;
}
.video-container.playing .video-poster {
    display: none;
}

@media (max-width: 767px) {
    nav {
        float: none;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 10px 0;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}
.hero .center-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero .video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 800px;
}
.hero_header {
    font-size: 3rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}
.hero_header .light {
    color: #D4A017;
    font-weight: 200;
}
.tagline {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
.button {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #AF000C;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.button:hover {
    background-color: #AF000C;
    color: #FFFFFF;
}

/* About Section */
.about {
    background-color: #FFFFFF;
    color: #333333;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}
.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #23222A;
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
}
.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio {
    padding: 50px 20px;
    background-color: #000000;
}
.portfolio h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.portfolio-item {
    background-color: #23222A;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.portfolio-item:hover {
    transform: translateY(-10px);
}
.portfolio-item .video-container {
    width: 100%;
}
.portfolio-item .video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.portfolio-item h3 {
    font-size: 1.5rem;
    padding: 20px;
    color: #D4A017;
}
.portfolio-item p {
    padding: 0 20px 20px;
    color: #A3A3A3;
}
.portfolio-item .button {
    margin: 0 20px 20px;
}

/* Contact Section */
.footer_banner {
    background-color: #23222A;
    padding: 60px 20px;
    text-align: center;
}
.footer_banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.footer_banner .tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Copyright */
.copyright {
    background-color: #000000;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
.copyright a {
    color: #D4A017;
    text-decoration: none;
}
.copyright a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-links {
    text-align: center;
    padding: 20px 0;
}
.social-links img {
    width: 32px;
    height: 32px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero {
        min-height: 60vh;
        height: auto;
    }
    .hero .center-content {
        min-height: 60vh;
    }
    .hero .video-container {
        height: 100%;
        padding-bottom: 56.25%;
    }
    .hero_header {
        font-size: 2rem;
    }
    .about h2, .portfolio h2, .footer_banner h2 {
        font-size: 1.8rem;
    }
    .about {
        margin-top: 20px;
    }
}