@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --black: #000000;
    --zinc-dark: #09090b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
}

.font-bebas {
    font-family: 'Bebas Neue', cursive;
}

/* Navigation */
.nav-link {
    position: relative;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f59e0b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Background */
.hero-bg {
    background: 
        linear-gradient(90deg, rgba(245, 158, 11, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(245, 158, 11, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Film Strip Decoration */
.film-strip {
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #1a1a1a 0px,
        #1a1a1a 15px,
        transparent 15px,
        transparent 20px
    );
    opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-slideUp {
    animation: slideUp 1.2s ease-out forwards;
    opacity: 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: #f59e0b;
    color: #000000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

/* Project Cards */
.project-card {
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
}

/* Service Cards */
.service-card {
    background: rgba(39, 39, 42, 0.5);
    transition: all 0.4s ease;
}

.service-card:hover {
    background: rgba(39, 39, 42, 0.8);
    transform: translateY(-4px);
}

/* Team Cards */
.team-card {
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card img {
    transition: all 0.4s ease;
}

.team-card:hover img {
    filter: sepia(0.3);
}

/* Form Styles */
input, select, textarea {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.1);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
#mobileMenu {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 32px;
    }
}
