﻿/* ============================================
   FULL-BLEED DARK DESIGN - NO WHITE BORDERS
   ============================================ */
html, body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: #ffffff;
}

/* Ensure all sections take full width */
section {
    width: 100%;
    margin: 0;
}

/* Site Header (Navigation) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    max-height: 80.5px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(184,149,106,0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.site-logo:hover {
    filter: drop-shadow(0 0 15px rgba(184,149,106,0.5));
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: normal;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-family: inherit;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #B8956A, #a07d56);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
}

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

.main-nav a.active {
    color: #B8956A;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #B8956A;
    transition: all 0.3s ease;
}

/* Project Page Styles */
.project-page {
    margin: 120px 0 0 0; /* Account for fixed nav + breadcrumb */
    padding: 3rem 0;
    background: #0a0a0a;
    min-height: calc(100vh - 120px);
    width: 100%;
}

.project-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(20, 20, 20, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #B8956A;
}

.business-theme .breadcrumb a:hover {
    color: #B8956A;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
}

/* Video Section */
.project-video {
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

/* Project Info Section */
.project-info {
    max-width: 900px;
    margin: 0 auto;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-align: center;
}

/* Theme Colors */
.music-theme .project-title {
    color: #B8956A;
}

.business-theme .project-title {
    color: #B8956A;
}

/* Project Meta */
.project-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.meta-value {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.music-theme .meta-value {
    color: #B8956A;
}

.business-theme .meta-value {
    color: #B8956A;
}

/* Project Description */
.project-description {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.4);
    border-radius: 15px;
    border-left: 4px solid rgba(255, 255, 255, 0.1);
}

.music-theme .project-description {
    border-left-color: #B8956A;
}

.business-theme .project-description {
    border-left-color: #B8956A;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Project Actions */
.project-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #B8956A, #d4b587);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.business-theme .btn-primary {
    background: linear-gradient(135deg, #B8956A, #d4b587);
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

.business-theme .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0 1.5rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .project-page {
        margin-top: 100px;
        padding: 2rem 0;
    }

    .breadcrumb {
        top: 60px;
        font-size: 0.9rem;
    }

    .project-title {
        font-size: 1.75rem;
    }

    .project-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .project-description {
        padding: 1.5rem;
    }

    .project-description p {
        font-size: 1rem;
    }

    .project-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
