/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AkzidenzGrotesk';
    src: url('../fonts/AkzidenzGroteskBE-LightEx.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'AkzidenzGrotesk';
    src: url('../fonts/AkzidenzGroteskBE-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'AkzidenzGrotesk';
    src: url('../fonts/AkzidenzGroteskBE-BoldEx.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}


body {
    font-family: 'AkzidenzGrotesk', sans-serif;
    color: #000;
    background: #fff;
    line-height: 1.6;
}

/* Sidebar Navigation */
.sidebar {
    font-family: 'AkzidenzGrotesk', sans-serif;
    font-weight: 300;
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100vh;
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #000;
}

h1, h2, h3 {
    font-family: 'AkzidenzGrotesk', sans-serif;
}

h1 {
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-top: 3px;
}

p {
    font-family: 'AkzidenzGrotesk', sans-serif;
    font-weight: 400;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-bottom: 20px;
    display: block;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-links {
    list-style: none;
    margin-top: 10px;
}

.nav-links li {
    margin-bottom: 5px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    padding-left: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.5;
}

/* Main Content Area */
.content {
    margin-left: 220px;
    padding: 60px 40px;
    max-width: 1400px;
}

/* Page Load Animation */
body {
    animation: pageLoad 0.3s ease;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Intro Section */
.intro {
    max-width: 800px;
    margin-bottom: 0;
}

.intro h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro p {
    font-size: 18px;
    color: #666;
}

/* Video Grid (Home Page) */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.video-item {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-poster,
.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-poster {
    z-index: 2;
    transition: opacity 0.6s ease;
}

.video-preview {
    z-index: 1;
    opacity: 1;
}

.video-item.playing .video-poster {
    opacity: 0;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay,
.video-item.playing .video-overlay {
    opacity: 1;
}

.video-overlay h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin: 0;
}

/* Video Section */
.video-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 40px;
    background: #000;
}

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

/* About Section */
.about-section {
    max-width: 1000px;
}

.about-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 0;
}

.about-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #333;
    max-width: 700px;
}

.photo-credit {
    margin-bottom: 0 !important;
}

.photo-credit a {
    color: #333;
}

/* Contact Section */
.contact-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

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

.contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
}

.contact-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.5;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
    }

    .logo {
        margin-bottom: 0;
        max-width: 70px;
    }

    .logo img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .nav-links {
        display: flex;
        gap: 24px;
    }

    .nav-links li {
        margin-bottom: 0;
    }

    .nav-home {
        display: none;
    }

    .content {
        margin-left: 0;
        padding: 40px 20px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-overlay h3 {
        font-size: 16px;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin-top: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'AkzidenzGrotesk', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.contact-form button {
    padding: 12px 40px;
    background: #000;
    color: #fff;
    border: none;
    font-family: 'AkzidenzGrotesk', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-form button:hover {
    opacity: 0.8;
}

/* Project Page Layout */
.project-page {
    max-width: 1200px;
}

.project-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.project-description {
    margin: 45px 0;
}

.project-description h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.project-description p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-gallery {
    margin-top: 60px;
}

.project-gallery h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* Logo Footer */
.logo-footer {
    margin-top: 0px;
    padding: 0px 0;
}

.logo-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.logo-scroll::-webkit-scrollbar {
    display: none;
}

.logo-scroll img {
    height: 100px;
    width: auto;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .logo-footer {
        margin-top: 40px;
        padding: 30px 0;
    }

    .logo-scroll {
        justify-content: flex-start;
        gap: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo-scroll img {
        height: 75px;
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}