@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Roboto:wght@300;400;500&display=swap');

:root {
    --color-primary: #d4af37;
    --color-background: #121212;
    --color-card: #1e1e1e;
    --color-cream: #f0f0f0;
    --color-white: #ffffff;
    --color-border: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-background);
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-cream {
    color: var(--color-cream);
}

.text-white {
    color: var(--color-white);
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pb-56-25 {
    padding-bottom: 56.25%;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(8px);
    z-index: 30;
    transition: all 0.3s;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a,
nav button {
    color: var(--color-cream);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover,
nav button:hover {
    color: var(--color-primary);
}

.navbar-brand {
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.desktop-menu {
    display: none;
}

.mobile-menu-button {
    display: block;
    color: var(--color-primary);
    font-size: 1.5rem;
    background: none;
    border: none;
}

/* Mobile Menu Styles */
#mobile-menu {
    background-color: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(5px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--color-border);
}

#mobile-menu button {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    width: 80%;
    text-align: center;
    color: var(--color-background);
}

section {
    padding: 5rem 0;
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.hero-divider {
    width: 5rem;
    height: 2px;
    background-color: var(--color-primary);
    margin: 0 auto 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 3rem;
}

.hero-button {
    display: inline-block;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.75rem 2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-button:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.relative {
    position: relative;
}

img {
    max-width: 100%;
}

.portrait-container {
    position: relative;
    margin-bottom: 3rem;
}

.portrait-border {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    z-index: -1;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.info-box {
    border-left: 2px solid var(--color-primary);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.info-box p:first-child {
    color: var(--color-white);
    font-weight: bold;
}

.tab-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--color-cream);
    cursor: pointer;
}

.tab-button.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.resume-item {
    background-color: var(--color-card);
    padding: 1.25rem;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center center;
    transition: background-size 0.3s ease;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .resume-item {
        background-position: center center;
    }
}

.resume-item:hover {
    background-size: 50%;
    background-position: center;
    padding: 1.25rem;
}

.resume-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.resume-item-tv {
    background-color: var(--color-card);
    padding: 1.25rem;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center center;
    transition: background-size 0.3s ease;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .resume-item-tv {
        background-position: center center;
    }
}

.resume-item-tv-manhunt {
    background-color: var(--color-card);
    padding: 1.25rem;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center center;
    transition: background-size 0.3s ease;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .resume-item-tv-manhunt {
        background-position: 50% 25%;
    }
}

.resume-item-tv:hover {
    background-size: 50%;
    background-position: center;
    padding: 1.25rem;
}

.resume-item-tv h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.resume-item-music {
    background-color: var(--color-card);
    padding: 1.25rem;
    border-radius: 2px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    background-size: cover;
    background-position: center center;
    transition: background-size 0.3s ease;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .resume-item-music {
        background-position: 50% 25%;
    }
}

.resume-item-music:hover {
    background-size: 50%;
    transition: background-size 0.3s ease;
    background-position: 50% 25%;
}

.resume-item-music h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Modern Gallery Carousel Styles */
.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background-color: var(--color-background);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    min-height: 400px;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 70vh;
}

@media (max-width: 768px) {
    .gallery-slide {
        min-height: 300px;
    }
    
    .gallery-slide img {
        max-height: 60vh;
    }
}

.gallery-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--color-background);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0.8;
}

.gallery-nav-button:hover {
    opacity: 1;
    background-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.gallery-indicator {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.gallery-indicator:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.gallery-indicator.active {
    opacity: 1;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.gallery-indicator img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(18, 18, 18, 0.8);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
}

.showreel-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(18, 18, 18, 0.3), transparent);
    pointer-events: none;
}

.video-border {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-primary);
    z-index: -1;
}

.contact-form {
    max-width: 32rem;
    margin: 0 auto;
    background-color: var(--color-card);
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-cream);
}

input,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(18, 18, 18, 0.7);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

textarea {
    min-height: 8rem;
    resize: vertical;
}

.submit-button {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    font-weight: 500;
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: rgba(212, 175, 55, 0.9);
}

footer {
    padding: 3rem 0;
    background-color: var(--color-background);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--color-cream);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-primary);
}

.copyright {
    text-align: center;
    font-size: 0.875rem;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 1s forwards;
}

@keyframes fadeInAnimation {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
        gap: 2rem;
    }

    .mobile-menu-button {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .flex-md-row {
        flex-direction: row;
    }

    .w-md-1-2 {
        width: 50%;
    }

    .pl-md-4 {
        padding-left: 1rem;
    }

    .pl-md-8 {
        padding-left: 2rem;
    }

    .ml-md-8 {
        margin-left: 2rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-logo {
        margin-bottom: 0;
    }

    .social-links {
        margin-bottom: 0;
    }

    .gallery-nav-button {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-prev {
        left: 0.5rem;
    }

    .gallery-next {
        right: 0.5rem;
    }

    .gallery-indicators {
        gap: 0.5rem;
    }

    .gallery-indicator {
        width: 45px;
        height: 45px;
    }
}
