
/* =========================================================
       PROJECTS PAGE SPECIFIC STYLES
       ========================================================= */

/* 1. Full-Screen Parallax Hero Header */
.portfolio-hero {
    height: 90vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.95) 100%),
        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=1600') center/cover no-repeat fixed;
    text-align: center;
    padding: 0 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-inner .badge-gold {
    display: inline-block;
    border: 1px solid var(--gold-primary, #d4af37);
    color: var(--gold-primary, #d4af37);
    padding: 6px 18px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 25px;
    background: rgba(212, 175, 55, 0.05);
}

.hero-inner h1 {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 62px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-inner p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.stat-item .num {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 32px;
    color: var(--gold-primary, #d4af37);
    display: block;
    margin-bottom: 4px;
}

.stat-item .label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
}

/* 2. Hybrid Filter Navigation Bar */
.portfolio-filter-section {
    padding: 25px 40px;
    background: #080808;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 80px;
    z-index: 90;
    backdrop-filter: blur(10px);
}

.editorial-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary, #d4af37);
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 600;
    text-transform: uppercase;
}

/* DESKTOP PILLS */
.desktop-pills {
    display: flex;
    gap: 12px;
}

.pill-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #aaaaaa;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill-btn.active,
.pill-btn:hover {
    background: var(--gold-primary, #d4af37);
    color: #0a0a0a;
    border-color: var(--gold-primary, #d4af37);
    font-weight: 600;
}

/* HIDE CUSTOM DROPDOWN ON DESKTOP BY DEFAULT */
.custom-dropdown-container {
    display: none;
    position: relative;
    width: 100%;
}

/* Custom Dropdown Trigger */
.custom-dropdown-trigger {
    width: 100%;
    background: #000000;
    border: 1px solid var(--gold-primary, #d4af37);
    color: #ffffff;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.dropdown-arrow {
    color: var(--gold-primary, #d4af37);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-dropdown-container.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Custom Dark Menu */
.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-dropdown-container.open .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cccccc;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.25s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-primary, #d4af37);
    padding-left: 25px;
}

.dropdown-item.active {
    background: var(--gold-primary, #d4af37);
    color: #000000;
    font-weight: 700;
}

/* 3. Masonry Grid */
.gallery-container {
    padding: 60px 40px 120px 40px;
    background: #080808;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card-editorial.featured-wide {
    grid-column: span 2;
}

.project-card-editorial {
    position: relative;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.5s ease;
}

.project-card-editorial.hide {
    display: none !important;
}

.project-card-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.5s ease;
    opacity: 0.75;
}

.project-card-editorial:hover img {
    transform: scale(1.08);
    opacity: 0.9;
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-category {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold-primary, #d4af37);
    text-transform: uppercase;
    font-weight: 600;
}

.card-location {
    font-size: 11px;
    color: #dddddd;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.card-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 24px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

/* =========================================================
       MOBILE RESPONSIVE BREAKPOINT (<= 768px)
       ========================================================= */
@media (max-width: 768px) {
    .portfolio-filter-section {
        padding: 18px 20px;
        position: relative;
        top: 0;
    }

    .editorial-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* HIDE DESKTOP PILLS ON MOBILE */
    .desktop-pills {
        display: none !important;
    }

    /* SHOW CUSTOM DROPDOWN ON MOBILE */
    .custom-dropdown-container {
        display: block !important;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .project-card-editorial.featured-wide {
        grid-column: span 1;
    }

    .hero-inner h1 {
        font-size: 36px;
    }
}

/* =========================================================
   CINEMATIC CTA BANNER & ARCHITECTURAL FOOTER STYLES
   ========================================================= */

   

/* 1. Cinematic CTA Section */
.cinematic-cta-section {
    position: relative;
    padding: 100px 30px;
    background: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=1600') center/cover no-repeat;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.cinematic-cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.88) 0%, rgba(5, 5, 5, 0.98) 100%);
    z-index: 1;
}

.cinematic-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cinematic-cta-content .cta-tag {
    color: var(--gold-primary, #d4af37);
    font-size: 11px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.cinematic-cta-content h2 {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 38px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.cinematic-cta-content p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Button Wrapper & Styled Link Fixes */
.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold-solid {
    background: var(--gold-primary, #d4af37) !important;
    color: #0a0a0a !important;
    padding: 15px 32px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-gold-solid:hover {
    background: #ffffff !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-glass-call {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    color: #ffffff !important;
    padding: 15px 26px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-glass-call:hover {
    border-color: var(--gold-primary, #d4af37) !important;
    color: var(--gold-primary, #d4af37) !important;
}

/* 2. Architectural Footer Section */
.architectural-footer {
    background: #030303;
    position: relative;
    color: #888888;
    padding-top: 20px;
}

.footer-top-accent {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary, #d4af37) 50%, transparent 100%);
    opacity: 0.4;
}

.footer-main-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

/* Brand Card */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    margin-bottom: 20px;
}

.footer-brand-logo .icon-sun {
    color: var(--gold-primary, #d4af37);
    font-size: 24px;
}

.footer-brand-logo .title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 20px;
    color: #ffffff !important;
    letter-spacing: 2px;
    display: block;
}

.footer-brand-logo .sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold-primary, #d4af37) !important;
    display: block;
}

.brand-pitch {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #888888;
    max-width: 380px;
}

.social-pills {
    display: flex;
    gap: 10px;
}

.social-pills a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-pills a:hover {
    border-color: var(--gold-primary, #d4af37);
    color: var(--gold-primary, #d4af37) !important;
    background: rgba(212, 175, 55, 0.08);
}

/* Footer Link Columns */
.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column-title {
    font-family: var(--font-serif, 'Cinzel', serif);
    font-size: 13px;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-column a {
    color: #888888 !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--gold-primary, #d4af37) !important;
}

.contact-column p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888888;
}

.contact-column i {
    color: var(--gold-primary, #d4af37);
}

/* Footer Bottom Subline */
.footer-subline {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 40px;
    font-size: 12px;
    color: #666666;
}

.subline-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.subline-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.subline-links a {
    color: #666666 !important;
    text-decoration: none !important;
}

.subline-links a:hover {
    color: var(--gold-primary, #d4af37) !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .cinematic-cta-section {
        padding: 70px 20px;
    }

    .cinematic-cta-content h2 {
        font-size: 28px;
    }

    .footer-main-grid {
        padding: 50px 20px;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .subline-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}



