@font-face {
  font-family: "TT Norms";
  src: url('../fonts/tt-norms-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body, html, main, .main-wrapper, #app { 
    padding-top: 0 !important; 
    margin-top: 0 !important; 
}

header, .navbar, .nav-header, #header {
    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    z-index: 9999 !important;
    transition: all 0.4s ease-in-out !important;
}

.nav-scrolled {
    backdrop-filter: blur(10px);
    background-color: rgba(0,0,0,0.5) !important;
    padding: 5px 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

.navbar-brand, .nav-link, .nav-item a {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.fancybox__container {
    z-index: 99999 !important;
}

.project-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.project-hero h1 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: capitalize;
    text-align: center;
    padding: 0 20px;
}

.hero-breadcrumb {
    position: absolute;
    bottom: 40px;
    left: 5%;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover { 
    color: #cccccc; 
}

.project-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.desc-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #666;
    line-height: 1.8;
}

.desc-text h2 {
    font-style: italic;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-align: center;
}

.gal-full { 
    width: 100%; 
    margin-bottom: 30px; 
}

.gal-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
    margin-bottom: 30px; 
    align-items: start; 
}

.gal-full a, .gal-grid a { 
    display: block; 
    overflow: hidden; 
    border-radius: 4px; 
    background-color: #f4f4f4;
}

.gallery-img {
    width: 100%;
    height: auto; 
    display: block;
    object-fit: cover; 
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gal-full a:hover .gallery-img, .gal-grid a:hover .gallery-img { 
    transform: scale(1.03); 
}

@media (max-width: 768px) {
    .gal-grid { 
        gap: 15px; 
    }
    .project-hero { 
        height: 70vh; 
    }
    .hero-breadcrumb { 
        bottom: 20px; 
        left: 20px; 
        font-size: 0.75rem; 
    }
}