/* =========================================
   PRESTIGE GLOBAL CREATIVE
   RESPONSIVE MAIN STYLESHEET
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: Arial, sans-serif;
    background: #080808;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}


/* =========================================
   COLORS
========================================= */

:root {
    --black: #080808;
    --dark: #111111;
    --dark-light: #181818;
    --white: #ffffff;
    --text: #f5f5f5;
    --muted: #888888;
    --muted-light: #aaaaaa;
    --border: #292929;
    --gold: #c9a227;
}


/* =========================================
   NAVIGATION
========================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    max-width: 1250px;
    margin: auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.logo span {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 6px;
}


/* DESKTOP NAV */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;
    color: #aaaaaa;
    font-size: 13px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: transparent;
    border: 1px solid #333333;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
}


/* =========================================
   BUTTONS
========================================= */

.nav-button,
.primary-button {
    display: inline-block;
    padding: 13px 24px;
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.nav-button:hover,
.primary-button:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.secondary-button {
    display: inline-block;
    padding: 13px 24px;
    border: 1px solid #444444;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #181818;
    border-color: var(--gold);
    transform: translateY(-3px);
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 160px 8% 100px;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.98) 0%,
            rgba(8, 8, 8, 0.88) 35%,
            rgba(8, 8, 8, 0.50) 70%,
            rgba(8, 8, 8, 0.75) 100%
        ),
        url("images/hero/hero-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(201, 162, 39, 0.16),
            transparent 30%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    animation: heroReveal 1s ease forwards;
}


/* =========================================
   TEXT
========================================= */

.eyebrow {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
}

.brand-tagline {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

h1 {
    max-width: 1000px;
    margin-bottom: 35px;
    font-size: clamp(55px, 9vw, 120px);
    line-height: 0.92;
    letter-spacing: -6px;
}

h1 span {
    display: block;
    color: #777777;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 42px;
    color: var(--muted-light);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

section {
    padding: 130px 8%;
}

h2 {
    margin-bottom: 30px;
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1;
    letter-spacing: -4px;
}

h2 span {
    background: linear-gradient(
        90deg,
        #c9a227 0%,
        #a855f7 50%,
        #3b82f6 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =========================================
   SHOWREEL
========================================= */

.showreel {
    background: #0b0b0b;
}

.showreel-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 50px;
}

.showreel-intro {
    max-width: 450px;
    color: #888888;
    font-size: 15px;
    line-height: 1.8;
}

.showreel-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111111;
}

.showreel-video video {
    display: block;
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}

.video-label {
    position: absolute;
    left: 25px;
    bottom: 20px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 2px;
}


/* =========================================
   ABOUT
========================================= */

.about {
    max-width: 950px;
    background: var(--black);
}

.about p:last-child {
    max-width: 650px;
    color: #999999;
    font-size: 20px;
    line-height: 1.8;
}


/* =========================================
   SERVICES
========================================= */

.services {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(201, 162, 39, 0.18),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(120, 80, 220, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #151020,
            #101827,
            #17120d
        );
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: #333333;
}

.service-card {
    position: relative;
    min-height: 270px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-5px);
}

.service-card:hover::before {
    width: 100%;
}

.service-card span {
    color: #666666;
    font-size: 12px;
    letter-spacing: 2px;
}

.service-card h3 {
    margin: 25px 0 15px;
    font-size: 28px;
    font-weight: 600;
}

.service-card p {
    max-width: 420px;
    color: #888888;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   WHY US
========================================= */

.why-us {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(124, 58, 237, 0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(37, 99, 235, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #050505 0%,
            #0b0714 45%,
            #05080f 100%
        );
}

.why-us-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 70px;
}

.why-us-intro {
    max-width: 500px;
    color: #888888;
    font-size: 16px;
    line-height: 1.9;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #2a2a2a;
}

.why-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.why-card:hover {
    background:
        linear-gradient(
            135deg,
            rgba(201, 162, 39, 0.10),
            rgba(124, 58, 237, 0.12)
        );

    box-shadow:
        0 20px 60px rgba(124, 58, 237, 0.12);
}

.why-card:hover::before {
    width: 100%;
}

.why-card > span {
    background: linear-gradient(
        90deg,
        #c9a227,
        #a855f7
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 27px;
    font-weight: 600;
}

.why-card p {
    max-width: 480px;
    color: #888888;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   PORTFOLIO
========================================= */

.portfolio {
    background: var(--black);
}

.portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 50px;
}

.portfolio-intro {
    max-width: 420px;
    color: #888888;
    font-size: 15px;
    line-height: 1.8;
}


/* FILTERS */

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.filter-btn {
    padding: 11px 20px;
    background: transparent;
    border: 1px solid #333333;
    color: #888888;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}


/* PORTFOLIO GRID */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #151515;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.65);
}


/* OVERLAY */

.portfolio-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 60px 35px 35px;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.95)
        );

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
}

.portfolio-overlay h3 {
    margin-top: 8px;
    color: var(--white);
    font-size: 30px;
    line-height: 1.1;
}


/* FILTER HIDDEN */

.portfolio-item.hidden {
    display: none;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    text-align: center;
    background: #eeeeee;
    color: var(--black);
}

.contact .eyebrow {
    color: #666666;
}

.contact h2 span {
    background: linear-gradient(
        90deg,
        #c9a227,
        #a855f7,
        #3b82f6
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact p {
    margin-bottom: 35px;
    color: #666666;
}

.contact .primary-button {
    display: inline-block;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 35px 8%;
    background: var(--black);
    border-top: 1px solid #222222;
    color: #666666;
    font-size: 12px;
}


/* =========================================
   TABLETS
========================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 18px 25px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .nav-button {
        padding: 11px 15px;
        font-size: 10px;
    }

    section {
        padding: 100px 6%;
    }

    .hero {
        padding: 140px 6% 90px;
    }

    .showreel-heading,
    .why-us-heading,
    .portfolio-heading {
        gap: 35px;
    }

    .portfolio-item {
        height: 430px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    /* NAVIGATION */

    .navbar {
        padding: 16px 20px;
    }

    .nav-links,
    .navbar > .nav-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;

        background: rgba(8, 8, 8, 0.98);

        transition:
            max-height 0.4s ease,
            padding 0.4s ease;
    }

    .mobile-menu.active {
        max-height: 500px;
        padding: 15px 20px 25px;
        border-top: 1px solid #222222;
    }

    .mobile-menu a {
        padding: 14px 0;
        color: #aaaaaa;
        border-bottom: 1px solid #222222;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--gold);
    }

    .mobile-project-button {
        margin-top: 15px;
        padding: 14px 20px !important;
        background: var(--gold);
        color: var(--black) !important;
        text-align: center;
        border: none !important;
        font-weight: 700;
        letter-spacing: 1px;
    }


    /* HERO */

    .hero {
        min-height: 100svh;
        padding: 130px 6% 70px;
        background-position: 60% center;
    }

    .hero::after {
        background:
            radial-gradient(
                circle at 80% 25%,
                rgba(201, 162, 39, 0.14),
                transparent 40%
            );
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .brand-tagline {
        margin-bottom: 17px;
        font-size: 9px;
        letter-spacing: 2px;
    }

    h1 {
        margin-bottom: 28px;
        font-size: clamp(52px, 15vw, 82px);
        letter-spacing: -4px;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 340px;
        gap: 10px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        padding: 15px 20px;
        text-align: center;
    }


    /* SECTIONS */

    section {
        padding: 80px 6%;
    }

    h2 {
        margin-bottom: 25px;
        font-size: clamp(42px, 12vw, 65px);
        letter-spacing: -3px;
    }


    /* SHOWREEL */

    .showreel-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 35px;
    }

    .showreel-intro {
        font-size: 14px;
    }

    .showreel-video {
        border-radius: 4px;
    }

    .showreel-video video {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .video-label {
        left: 12px;
        bottom: 12px;
        font-size: 7px;
    }


    /* ABOUT */

    .about p:last-child {
        font-size: 17px;
        line-height: 1.8;
    }


    /* SERVICES */

    .service-grid {
        grid-template-columns: 1fr;
        margin-top: 35px;
        gap: 1px;
    }

    .service-card {
        min-height: auto;
        padding: 32px 28px;
    }

    .service-card h3 {
        margin: 18px 0 12px;
        font-size: 24px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* WHY US */

    .why-us-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 40px;
    }

    .why-us-intro {
        font-size: 14px;
        line-height: 1.8;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
        padding: 32px 28px;
    }

    .why-card > span {
        margin-bottom: 20px;
    }

    .why-card h3 {
        font-size: 23px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* PORTFOLIO */

    .portfolio-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 35px;
    }

    .portfolio-intro {
        font-size: 14px;
    }

    .portfolio-filters {
        gap: 7px;
        margin-bottom: 25px;
    }

    .filter-btn {
        padding: 9px 12px;
        font-size: 8px;
        letter-spacing: 1px;
    }

    /*
       TWO COLUMNS ON MOBILE
       Makes the portfolio feel like a
       professional creative gallery.
    */

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .portfolio-item {
        height: 240px;
    }

    .portfolio-overlay {
        padding: 35px 12px 12px;
        opacity: 1;
        transform: translateY(0);

        background:
            linear-gradient(
                transparent,
                rgba(0, 0, 0, 0.92)
            );
    }

    .portfolio-overlay span {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

    .portfolio-overlay h3 {
        margin-top: 5px;
        font-size: 14px;
    }


    /* CONTACT */

    .contact {
        padding: 80px 6%;
    }

    .contact h2 {
        font-size: clamp(40px, 12vw, 60px);
    }

    .contact p {
        font-size: 14px;
    }


    /* FOOTER */

    footer {
        padding: 28px 6%;
        text-align: center;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 450px) {

    .logo {
        font-size: 17px;
    }

    .logo span {
        font-size: 8px;
        letter-spacing: 5px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding-top: 125px;
    }

    h1 {
        font-size: 50px;
        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 14px;
    }

    section {
        padding: 70px 5%;
    }

    h2 {
        font-size: 42px;
    }

    .service-card,
    .why-card {
        padding: 28px 24px;
    }

    .portfolio-grid {
        gap: 6px;
    }

    .portfolio-item {
        height: 205px;
    }

    .portfolio-overlay {
        padding: 30px 10px 10px;
    }

    .portfolio-overlay h3 {
        font-size: 12px;
    }

    .portfolio-overlay span {
        font-size: 5px;
    }

}


/* =========================================
   HERO ANIMATION
========================================= */

@keyframes heroReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
