* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 

body {
    background: #000;
    color: #fff;
    font-family: Manrope, sans-serif;
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;

}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== DESKTOP (IDENTICAL TO YOUR ORIGINAL) ========== */

.header {
    width: 100%;
    padding: 20px 0;
    background: #000;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========== DESKTOP (IDENTICAL TO YOUR ORIGINAL) ========== */

.header {
    width: 100%;
    padding: 20px 0;
    background: #000;
}

.header-inner {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand a {
    color: #c7c7c7;
    font-size: 35px;
    font-family: Bebas Neue, sans-serif;
    padding-right: 5px;
}

.nav a {
    color: #c7c7c7;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 12px;
    border-bottom: 1px solid transparent;
    transition: .3s;
}

.nav a:hover {
    border-color: rgb(215, 232, 135);
}

/* hamburger shown only on small screens */
.menu-btn {
    display: none;
    font-size: 30px;
    color: rgb(215, 232, 135);
    cursor: pointer;
}

/* HERO */
.hero {
    width: 80%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    width: 45%;
}

.hero-text h1 {
    color: #fff;
    font-size: 100px;
    line-height: .9;
    font-family: Bebas Neue, sans-serif;
}

.hero-text p {
    margin-top: 20px;
    font-size: 17px;
    color: #c7c7c7;
    font-family: Arial, Helvetica, sans-serif;
    width: 85%;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: rgb(215, 232, 135);
    color: #000;
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: .3s;
}

.btn-primary:hover {
    background: #222;
    color: rgb(215, 232, 135);
}

.btn-icon {
    font-size: 25px;
    background: #1a1a1a;
    color: rgb(215, 232, 135);
    padding: 13px;
    border-radius: 50%;
    transition: .2s;
}

.btn-icon:hover {
    background: #4d4a4a;
}

.hero-img img {
    width: 568px;
    height: 568px;
    border-radius: 10px;
    object-fit: cover;
}

/* ---------- DIVIDER ---------- */
.section-divider {
    width: 90%;
    height: 1px;
    background: #c7c7c7;
    opacity: .3;
    margin: 100px auto;
}

/* ---------- WORK INTRO ---------- */
.work-intro {
    width: 80%;
    margin: 0 auto 40px;
}

.work-intro h1 {
    font-family: Bebas Neue, sans-serif;
    font-size: 80px;
}

.work-intro p {
    width: 42%;
    margin-top: 20px;
    color: #c7c7c7;
}

/* ---------- PROJECTS ---------- */
.projects {
    width: 100%;
}

.project-card {
    width: 80%;
    margin: 100px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-card img {
    background: #1a1a1a;
    padding: 45px 45px;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 500px;
    border-radius: 14px;
}

.project-info {
    width: 40%;
}

.project-info h2 {
    font-size: 35px;
    font-weight: 500;
}

.project-info p {
    margin-top: 20px;
    font-size: 18px;
    font-size: 18px;
}

/* ---------- PROJECTS ---------- */
.projects {
    width: 100%;
}

.project-card {
    width: 80%;
    margin: 100px auto 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.project-card img {
    background: #1a1a1a;
    padding: 45px 45px;
    padding-top: 100px;
    padding-bottom: 100px;
    width: 500px;
    border-radius: 14px;
}

.project-info {
    width: 40%;
}

.project-info h2 {
    font-size: 35px;
    font-weight: 500;
}

.project-info p {
    margin-top: 20px;
    font-size: 18px;
    color: #c7c7c7;
    line-height: 1.5;
}

.project-meta {
    margin-top: 20px;
    display: flex;
    gap: 40px;
    font-size: 17px;
    font-weight: 400;
}

.project-link {
    margin-top: 25px;
    color: rgb(215, 232, 135);
    display: inline-block;
    font-size: 17px;
}

.about-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.about-left {
    width: 30%;
    display: flex;
    justify-content: flex-start;
}

.about-left h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 0.9;
}

.about-right {
    width: 60%;
}

.about-right h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-right p {
    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.6;
    width: 90%;
    margin-bottom: 25px;
}

.about-more-link {
    color: rgb(215, 232, 135);
    font-weight: 600;
    font-size: 17px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.project-meta {
    border-bottom: 1px solid white;
}

.about-image {
    width: 85%;
    margin: 80px auto 0;
}

.mores{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}



.moreh1{
    font-size: 90px;
    font-family: 'Bebas Neue', sans-serif;
}

.morep{
    font-size: 18px;
    color: #c7c7c7;
    width: 90%;
}

.more2 img{
    width: 500px;
    height: 600px;
    border-radius: 30px;
}

.kurs{
    margin-top: 40px;
}


.kursi a{
    
    background-color: rgb(215, 232, 135);
    color: #1a1a1a;
    padding: 15px;
    font-size: 19px;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
}

.info{
    margin-top: 20px;
    border-bottom: 1px solid #c7c7c7;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.project-meta {
    border-bottom: 1px solid #c7c7c7;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.project-meta1 {
    margin-top: 20px;
    font-size: 17px;
    border-bottom: 0.6px solid #c7c7c7;
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.about-image {
    width: 50%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    place-items: center; /* Qendron gjithçka brenda */
}

.about-image img {
    width: 80%;
    padding: 100px;
    height: auto;
    border-radius: 55px;
    object-fit: cover;
}

.mores{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* mobile responsiveness */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left h1 {
        font-size: 70px;
    }

    .about-right p {
        width: 100%;
    }
}

/* ---------- CONTACT ---------- */
.contact {
    width: 80%;
    margin: 0 auto 150px;
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.contact-left h1{
    font-size: 90px;
    font-family: 'Bebas Neue', sans-serif;
}

.contact input{
    width: 100%;
}

.social-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 35px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.form input{
    width: 600px;
    background: #222;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}
.form textarea {
    background: #222;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

.form textarea {
    height: 140px;
}

/* ========== RESPONSIVE ========== */

@media(max-width: 992px) {
    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        width: 60%;
        height: 100vh;
        background: #000;
        padding-top: 120px;
        padding-left: 40px;
        gap: 25px;
        transition: .4s ease;
    }

    .nav.show {
        right: 0;
    }

    .menu-btn {
        display: block;
    }

    .hero,
    .project-card,
    .about-content,
    .contact {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .work-intro p,
    .project-info,
    .about-text {
        width: 100%;
        text-align: center;
    }

    .hero-img img {
        margin-top: 40px;
        width: 90%;
    }
}

@media(max-width: 576px) {
    .hero-text h1 {
        font-size: 55px;
        width: 70%;
        margin: 0 auto;
    }

    .hero-text p{
        width: 80%;
        margin: 0 auto;
        margin-top: 40px;
    }

}

@media(max-width: 992px) {


.moreh1{
    width: 90%;
    font-size: 80px;
    font-family: Bebas Neue, sans-serif;
    line-height: 1.0;
}

.morep{

    h1 {
        text-align: center;
    }
    .nav {
        display: flex;
        flex-direction: column;
        gap: 25px;

        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 100vh;

        background: black;
        padding-top: 120px;
        padding-left: 40px;

        transform: translateX(-100%);
        opacity: 0;

        transition: transform .35s ease, opacity .25s ease;
        z-index: 1000;
    }

    .about-right h2 {
        font-size: 20px;
    }

    .nav.show {
        transform: translateX(0);
        opacity: 1;
    }

    .hero,
    .projects,
    .about,
    .contact {
        position: relative;
        z-index: 1;
    }

    .menu-btn {
        display: block;
        position: relative;
        z-index: 1100;
    }

    .project-card img {
    background: #1a1a1a;
    padding: 10px;
    width: 500px;
    border-radius: 14px;
    width: 100%;
    }

    

.hero-text p {

    margin-top: 20px;
    font-size: 17px;
    color: #c7c7c7;

    font-size: 18px;
    width: 94%;
}

.more2 img{
    width: 500px;
    height: 600px;
    border-radius: 30px;
}

.kursi{
    margin-top: 40px;
    display: flex;
    justify-content: left;
    
}

.kursi a{
    background-color: rgb(215, 232, 135);
    padding: 19px;
    color: #1a1a1a;
    font-family: Manrope, sans-serif;
    width: 50%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
}









@media (max-width: 992px) {

    html{
        scroll-behavior: smooth;
    }
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left h1 {
        font-size: 70px;
    }

    .about-right p {
        width: 100%;
    }
}

/* ---------- CONTACT ---------- */
.contact {
    width: 80%;
    margin: 0 auto 150px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.social-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 35px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input,
.form textarea {
    background: #222;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

.form textarea {
    height: 140px;
}

/* ========== RESPONSIVE ========== */

@media(max-width: 992px) {
    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        width: 60%;
        height: 100vh;
        background: #000;
        padding-top: 120px;
        padding-left: 40px;
        gap: 25px;
        transition: .4s ease;
    }

    .nav.show {
        right: 0;
    }

    .menu-btn {
        display: block;
    }

    .hero,
    .project-card,
    .about-content,
    .contact {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .work-intro p,
    .project-info,
    .about-text {
        width: 100%;
        text-align: center;
    }

    .hero-img img {
        margin-top: 40px;
        width: 90%;
    }
}

@media(max-width: 576px) {
    .hero-text h1 {
        font-size: 55px;
    }
}

@media(max-width: 992px) {

    h1 {
        text-align: center;
    }
    .nav {
        display: flex;
        flex-direction: column;
        gap: 25px;

        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 100vh;

        background: black;
        padding-top: 120px;
        padding-left: 40px;

        transform: translateX(-100%);
        opacity: 0;

        transition: transform .35s ease, opacity .25s ease;
        z-index: 1000;
    }

    .about-right h2 {
        font-size: 20px;
    }

    .nav.show {
        transform: translateX(0);
        opacity: 1;
    }

    .hero,
    .projects,
    .about,
    .contact {
        position: relative;
        z-index: 1;
    }

    .menu-btn {
        display: block;
        position: relative;
        z-index: 1100;
    }

    .project-card img {
    background: #1a1a1a;
    padding: 10px;
    width: 500px;
    border-radius: 14px;
    width: 100%;
    }
.form{
    width: 140px;

}

.form input {
    background: #222;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

    

.hero-text h1{
    width: 65%;
    margin: 0 auto;
}



.hero-text p {
    margin-top: 20px;
    font-size: 17px;
    color: #c7c7c7;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

h2 {
    font-size: 20px;
    margin-top: 20px;
}

.project-meta {
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-around;
}
.btn-primary {
    font-size: 13px;
}

.about-left {
    display: block;
    width: 100%;
}



.menu-btn i {
    transition: .3s ease;
    font-size: 32px;
}

}


@media (max-width: 768px){
    .mores{
        margin-top: 40px;
        height: 1000px;
    }
    .more{
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
        gap: 40px;
    }

    .moreh1{
        font-size: 48px;
        text-align: center
    }

    .morep p{
        font-size: 16px;
        text-align: center;
    }

    .more2{
        width: 100%;
    }

    .kursi{
        display: flex;
        justify-content: space-around;
    }

    .moreimg img{
        width: 100%;
        height: 400px;
        border-radius: 10px;
    }
}


    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    line-height: 1.6;
}

h2 {
    font-size: 20px;
    margin-top: 20px;
}

.project-meta {
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-around;

}

.project-meta1 {
    border-bottom: 1px solid white;
    display: flex;
    justify-content: space-around;
    
}

.btn-primary {
    font-size: 13px;
    padding: 10px;
}

.btn-primary i{
    display: none;
}

.about-left {
    display: block;
    width: 100%;
}



.menu-btn i {
    transition: .3s ease;
    font-size: 32px;
}

}


/* ========== MORE.HTML STYLING ========== */
.mores {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.more {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.more1 {
    flex: 1;
    min-width: 300px;
}

.moreh1 {
    font-size: 90px;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.morep {
    font-size: 18px;
    color: #c7c7c7;
    margin-top: 20px;
    line-height: 1.6;
}

.more2 {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.more2 img {
    width: 500px;
    max-width: 650px;
    height: 550px;
    border-radius: 30px;
    object-fit: cover;
}

.kursi a {
    background-color: rgb(215, 232, 135);
    color: #1a1a1a;
    padding: 15px;
    font-size: 19px;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    display: inline-block;
    margin-top: 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .more {
        flex-direction: column;
        text-align: center;
    }

    .moreh1 {
        font-size: 60px;
    }

    .morep {
        width: 100%;
    }

    .more2 img {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .moreh1 {
        font-size: 45px;
    }

    .morep {
        font-size: 16px;
    }


}