@font-face {
    font-family: 'LemonMilk';
    src: url('font/LEMONMILK-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #f1f1f1;
    --secondary-color: #333;
    --accent-color: #f0c040;
    --background-color: #111;
    --text-color: #eee;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    --name-font: 'LemonMilk', sans-serif;
}

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

body {
    font-family: var(--body-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
}

.logo {
    font-family: var(--name-font);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    padding: 0 5%;
    max-width: 1200px;
}

.hero-content h1 {
    font-family: var(--name-font);
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    white-space: nowrap;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

h2 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.work-item {
    background-color: #222;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-image, .work-image-container {
    height: 350px;
    background-color: #222;
    overflow: hidden;
    position: relative;
}

.work-image img, .work-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease, transform 0.5s ease;
}

.work-slides img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.work-slides img.active {
    opacity: 1;
}

.album-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.album-item:hover .album-nav {
    opacity: 1;
}

.album-nav button {
    background: rgba(17, 17, 17, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.album-nav button:hover {
    background: rgba(17, 17, 17, 0.9);
}

.work-image-placeholder {
    height: 350px;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #333;
}

.work-image-placeholder span {
    font-family: var(--name-font);
    font-size: 1.2rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.work-item:hover .work-image img, 
.work-item:hover .work-slides img.active {
    transform: scale(1.05);
}

.work-info {
    padding: 1.5rem;
}

.work-info h3 {
    font-family: var(--heading-font);
    margin-bottom: 0.5rem;
}

.work-info p {
    color: #999;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-bio-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.about-text p {
    margin-bottom: 0;
    max-width: 600px;
}

.certification {
    flex-shrink: 0;
}

.dolby-logo {
    max-width: 250px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.dolby-logo:hover {
    opacity: 1;
}

.about-image {
    height: 500px;
    background-color: #222;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact {
    background-color: #111;
    text-align: center;
}

.contact-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-email {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.8;
}

.contact-socials {
    display: flex;
    gap: 3rem;
}

.contact-socials a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.contact-socials a:hover {
    color: var(--accent-color);
}

footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid #222;
}

.socials {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.socials a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: var(--accent-color);
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: clamp(2rem, 12vw, 4rem);
        white-space: normal;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
}
