body { 
    margin: 0;
    font-family: serif;
    background: #ffffff;
}

/* WRAPPER */

.full-portfolio {
    max-width:1500px;
    margin: auto;
    padding: 0 25px;
}

/* ------------ NAVBAR FIXED & PREMIUM ---------- */


/* ------------ HERO SECTION ------------ */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 5rem;
    letter-spacing: 12px;
    margin: 0;
    font-weight: 300;
}

.hero-sub {
    font-size: 1.4rem;
    margin-top: 12px;
    opacity: 0.85;
}

.scroll-down {
    margin-top: 35px;
    font-size: 2rem;
    animation: bounce 1.6s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}


/* ------------ 2 GRID ----------- */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 10px;
}

.project {
    position: relative;
}

.project img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}


/* ----------- LEFT-BIG + RIGHT-SMALL ----------- */
.custom-row {
    display: flex;
    gap: 12px;
    padding: 10px;
}

.left-big {
    width: 65%;
    height: 350px;
}

.left-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-small {
    width: 35%;
    height: 350px;
    position: relative;
}

.right-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}


/* ----------- LEFT SMALL + RIGHT BIG ----------- */
.oxy-custom-grid {
    display: flex;
    gap: 10px;
    padding: 10px;
}

.left-small {
    width: 30%;
    height: 350px;
}

.left-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-big {
    width: 70%;
    height: 350px;
    position: relative;
}

.right-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}


/* ------------ MOBILE ------------ */
@media(max-width:900px){

    .project-grid {
        grid-template-columns: 1fr;
    }

    .custom-row {
        flex-direction: column;
    }

    .left-big, .right-small {
        width: 100%;
    }

    .oxy-custom-grid {
        flex-direction: column;
    }

    .left-small, .right-big {
        width: 100%;
    }
}

@media(max-width:768px){
    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .nav-right a {
        margin-left: 20px;
    }
}
 .main-content {
            padding: 40px;
            text-align: center;
        }

        .main-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            color: #222;
        }

        .main-content p {
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
            font-size: 1.1rem;
            color: #555;
        }
