/* --- VARIABLES & RESET --- */
:root {
    --primary: #ffffff;
    --accent: #ff4500; /* DNEG Orange-Red */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-grey: #a1a1a1;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- NAVIGATION (SHARED) --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    transition: background 0.3s;
}

nav.scrolled { background: #000; }

.logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 2px; }

.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* --- HERO SECTION (VIDEO) --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.6; /* Darkens video slightly */
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-content p { font-size: 1.5rem; color: var(--text-grey); margin-bottom: 30px; }

.btn {
    padding: 15px 40px;
    border: 2px solid var(--primary);
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
}
.btn:hover { background: var(--primary); color: #000; }

/* --- SECTIONS --- */
.section { padding: 100px 50px; }
.section-title { font-size: 2.5rem; margin-bottom: 50px; text-transform: uppercase; border-left: 5px solid var(--accent); padding-left: 20px; }

/* --- GRID SYSTEM (WORK PAGE) --- */
.filter-bar { margin-bottom: 40px; display: flex; gap: 20px; }
.filter-btn { cursor: pointer; color: var(--text-grey); text-transform: uppercase; font-weight: bold; }
.filter-btn.active { color: var(--accent); }

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.work-item {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    overflow: hidden;
}

.work-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.work-item:hover .work-overlay { bottom: 0; }

/* --- FOOTER --- */
footer {
    background: #000;
    padding: 50px;
    text-align: center;
    border-top: 1px solid #333;
}
/* --- SERVICES PAGE STYLES --- */
.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 50px;
}

.service-row.reverse {
    flex-direction: row-reverse; /* Flips image/text for zig-zag effect */
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-text p {
    color: var(--text-grey);
    margin-bottom: 20px;
}

.service-text ul {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-grey);
}

.service-img {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px; /* Optional rounded corners */
}

/* Mobile fix for Services */
@media (max-width: 768px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
    }
    .service-img {
        width: 100%;
        height: 250px;
    }
}

/* --- CONTACT PAGE STYLES --- */
.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.contact-form {
    flex: 2;
}

.contact-info {
    flex: 1;
    border-left: 1px solid #333;
    padding-left: 40px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* DNEG Style Dark Inputs */
.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-block p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* Mobile fix for Contact */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-info {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 40px;
    }
}
/* Custom Logo Size */
.logo img {
    height: 80px; /* Increase this number to make the logo larger */
    width: auto;  /* Keeps the aspect ratio perfect */
    display: block;
    transition: 0.3s;
    transform: scale(2); /* Makes the size change smooth if you add hover effects */
}

/* Adjust navbar padding if the logo is very large */
nav {
    padding: 15px 50px; /* Reduced top/bottom padding to accommodate a taller logo */
}
/* Add this to the very bottom of style.css if you haven't yet */
.work-item {
    display: block;
    position: relative;
    height: 350px;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 20px;
}

.work-img {
    width: 100%;
    height: 100%;
    background-size: contain; /* Change this from cover to contain */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-position: center;
    transition: transform 0.5s ease;
}

.work-item:hover .work-img {
    transform: scale(1.1); /* Cinematic zoom effect */
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}
/* Social Media Info Styling */
.social-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-grey);
    transition: 0.3s;
}

.social-item i {
    width: 30px; /* Fixed width so all text starts at the same spot */
    font-size: 1.4rem;
    color: var(--accent); /* Uses your orange-red accent color */
    margin-right: 15px;
}

.social-item:hover {
    color: #fff;
    transform: translateX(5px); /* Small slide effect on hover */
}

.social-item span {
    letter-spacing: 1px;
}