:root {
    --primary-color: #FF4C29;
    --secondary-color: #F5F5F5;
    --bg-color: #121212;
    --card-bg: #1E1E1E;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Import fonts */
@font-face {
    font-family: "Stratum2";
    src: url("fonts/Stratum2-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "KievitOffc";
    src: url("fonts/KievitOffc.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "KievitOffc", sans-serif;
    color: #fff; 
    background-color: #1a1a1a;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Stratum2", sans-serif;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.navbar a:hover {
    text-shadow: 0 0 8px #ff4c29;
}

.navbar .navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    margin-left: 1rem;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: var(--secondary-color);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none !important; /* disables interaction */
    filter: brightness(0.4); /* optional darken */
}

.hero-content {
    z-index: 2; 
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-buttons a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 0 10px rgba(255, 76, 41, 0.5);
}

.btn-custom:hover {
    background-color: #e03c1b;
    box-shadow: 0 0 20px rgba(255, 76, 41, 0.8), 0 0 40px rgba(255, 76, 41, 0.6);
}

.btn-custom-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 76, 41, 0.3);
}

.btn-custom-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 76, 41, 0.7), 0 0 30px rgba(255, 76, 41, 0.5);
}

/* Sections */
section {
    padding: 6rem 0;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* Services */
.service-card {
    background: var(--card-bg);
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Portfolio / Work Section */
.work {
    background: linear-gradient(135deg, #2a2a2a, #333, #2f2f2f, #262626);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    color: #fff;
    padding: 60px 20px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.work .portfolio-item {
    background-color: #222;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Work Section Videos */
.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 250px; /* fixed height for uniform layout */
}

.work-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures videos fill container without stretching */
    display: block;
}

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

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay-content {
    text-align: center;
    padding: 1rem;
}

/* Process / About */
.process-step {
    background: var(--card-bg);
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: var(--bg-color);
}

.contact-card {
    background: var(--card-bg);
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.contact-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-custom-lg {
    font-size: 1.25rem;
    padding: 0.75rem 3rem;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px){
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.25rem; }
}
