/* ========================================= */
/* RESET */
/* ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================= */
/* BODY */
/* ========================================= */

body {

    font-family: 'Montserrat', sans-serif;

    background: #050505;

    color: white;

    overflow-x: hidden;
}

/* ========================================= */
/* SCROLLBAR */
/* ========================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0c0c0c;
}

::-webkit-scrollbar-thumb {
    background: #ff6a00;
    border-radius: 10px;
}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.navbar {

    position: fixed;

    top: 0;

    width: 100%;

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 80px;

    background: rgba(0, 0, 0, 0.7);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 106, 0, 0.15);

    z-index: 999;
}

/* ========================================= */
/* LOGO */
/* ========================================= */
.logo {

    height: 60px;

    width: auto;

    object-fit: contain;

    display: block;
}

/* ========================================= */
/* MENU */
/* ========================================= */

.menu {

    display: flex;

    gap: 35px;
}

.menu a {

    text-decoration: none;

    color: white;

    font-size: 15px;

    font-weight: 600;

    transition: 0.3s;
}

.menu a:hover {

    color: #ff6a00;
}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 120px 20px 80px;

    background:
        radial-gradient(circle at top,
            rgba(255, 106, 0, 0.18),
            transparent 40%),
        #050505;
}

/* ========================================= */
/* GRID BACKGROUND */
/* ========================================= */

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 40px 40px;

    opacity: 0.3;

    pointer-events: none;
}

/* ========================================= */
/* HERO CONTENT */
/* ========================================= */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 1000px;
}

/* ========================================= */
/* HERO TAG */
/* ========================================= */

.hero-tag {

    color: #ff6a00;

    font-size: 13px;

    letter-spacing: 5px;

    margin-bottom: 25px;

    font-weight: 700;
}

/* ========================================= */
/* HERO TITLE */
/* ========================================= */

.hero h1 {

    font-size: 78px;

    line-height: 1.1;

    margin-bottom: 30px;

    font-weight: 900;
}

/* ========================================= */
/* HERO DESCRIPTION */
/* ========================================= */

.hero-description {

    font-size: 20px;

    color: #b0b0b0;

    line-height: 1.8;

    max-width: 850px;

    margin: auto auto 45px;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {

    padding: 18px 34px;

    border-radius: 16px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s;
}

/* ========================================= */
/* PRIMARY BUTTON */
/* ========================================= */

.btn-primary {

    background: #ff6a00;

    color: black;

    box-shadow: 0 0 25px rgba(255, 106, 0, 0.35);
}

.btn-primary:hover {

    transform: translateY(-3px);

    background: #ff7e26;
}

/* ========================================= */
/* SECONDARY BUTTON */
/* ========================================= */

.btn-secondary {

    border: 1px solid #333;

    color: white;
}

.btn-secondary:hover {

    border-color: #ff6a00;

    color: #ff6a00;
}

/* ========================================= */
/* SECTION */
/* ========================================= */

section {

    padding: 120px 80px;
}

/* ========================================= */
/* SECTION TITLE */
/* ========================================= */

.section-title {

    text-align: center;

    margin-bottom: 70px;
}

.section-title p {

    color: #ff6a00;

    letter-spacing: 5px;

    font-size: 13px;

    margin-bottom: 18px;

    font-weight: 700;
}

.section-title h2 {

    font-size: 52px;

    font-weight: 800;
}

/* ========================================= */
/* SERVICES */
/* ========================================= */

.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;
}

/* ========================================= */
/* SERVICE CARD */
/* ========================================= */

.service-card {

    background: #0d0d0d;

    border: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 26px;

    padding: 40px;

    transition: 0.35s ease;
}

.service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255, 106, 0, 0.35);

    box-shadow: 0 0 35px rgba(255, 106, 0, 0.12);
}

.service-icon {

    font-size: 38px;

    margin-bottom: 25px;
}

.service-card h3 {

    font-size: 26px;

    margin-bottom: 18px;
}

.service-card p {

    color: #9d9d9d;

    line-height: 1.8;
}

/* ========================================= */
/* PROJECTS */
/* ========================================= */

.projects {

    background: #090909;
}

/* ========================================= */
/* PROJECT GRID */
/* ========================================= */

.projects-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 25px;
}

/* ========================================= */
/* PROJECT CARD */
/* ========================================= */

.project-card {

    position: relative;

    height: 340px;

    border-radius: 28px;

    overflow: hidden;

    background:
        radial-gradient(circle at top right,
            rgba(255, 106, 0, 0.28),
            transparent 45%),
        #0e0e0e;

    border: 1px solid rgba(255, 255, 255, 0.05);

    transition: 0.35s ease;
}

.project-card:hover {

    transform: scale(1.02);

    border-color: rgba(255, 106, 0, 0.3);
}

/* ========================================= */
/* PROJECT CONTENT */
/* ========================================= */

.project-content {

    position: absolute;

    bottom: 35px;

    left: 35px;
}

.project-content span {

    color: #ff6a00;

    font-size: 13px;

    letter-spacing: 4px;
}

.project-content h3 {

    font-size: 34px;

    margin-top: 15px;
}

/* ========================================= */
/* CONTACT */
/* ========================================= */

.contact-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

/* ========================================= */
/* CONTACT CARD */
/* ========================================= */

.contact-card {

    background: #0d0d0d;

    border-radius: 26px;

    border: 1px solid rgba(255, 255, 255, 0.05);

    padding: 45px;

    text-decoration: none;

    color: white;

    transition: 0.35s;
}

.contact-card:hover {

    transform: translateY(-5px);

    border-color: rgba(255, 106, 0, 0.35);
}

.contact-card h3 {

    font-size: 28px;

    margin-bottom: 15px;
}

.contact-card p {

    color: #a0a0a0;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {

    padding: 40px 20px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    color: #808080;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width: 1000px) {

    .navbar {

        position: fixed;

        top: 0;

        width: 100%;

        height: 90px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0 50px;

        background: rgba(0, 0, 0, 0.7);

        backdrop-filter: blur(12px);

        z-index: 999;
    }

    section {

        padding: 100px 30px;
    }

    .hero h1 {

        font-size: 58px;
    }
}

@media(max-width: 768px) {

    .navbar {

        flex-direction: column;

        justify-content: center;

        gap: 10px;

        height: auto;

        padding: 18px;
    }

    .menu {

        gap: 18px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .hero h1 {

        font-size: 42px;
    }

    .hero-description {

        font-size: 17px;
    }

    .section-title h2 {

        font-size: 36px;
    }

    .project-content h3 {

        font-size: 26px;
    }
}

/* ========================================= */
/* SOCIAL ICONS */
/* ========================================= */

.social-links {

    display: flex;

    gap: 20px;

    justify-content: center;

    margin-top: 30px;
}

.social-links a {

    width: 55px;

    height: 55px;

    border-radius: 18px;

    background: #0f0f0f;

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s;
}

.social-links a:hover {

    transform: translateY(-5px);

    border-color: rgba(255, 106, 0, 0.35);

    box-shadow: 0 0 25px rgba(255, 106, 0, 0.18);
}

.social-icon {

    width: 22px;

    height: 22px;

    filter: brightness(0) invert(1);

    opacity: 0.9;

    transition: 0.3s;
}

.social-links a:hover .social-icon {

    filter:
        brightness(0) saturate(100%) invert(53%) sepia(95%) saturate(1852%) hue-rotate(1deg) brightness(102%) contrast(104%);
}

.service-svg {

    width: 52px;

    height: 52px;

    margin-bottom: 25px;

    filter:
        brightness(0) saturate(100%) invert(53%) sepia(95%) saturate(1852%) hue-rotate(1deg) brightness(102%) contrast(104%);

    opacity: 1;
}

.project-card:hover,
.service-card:hover {

    transform: translateY(-8px);

    border-color: rgba(255, 115, 0, 0.4);

    box-shadow:
        0 0 30px rgba(255, 115, 0, 0.12),
        0 0 60px rgba(255, 115, 0, 0.05);

}

.project-card:hover .service-svg,
.service-card:hover .service-svg {

    transform: scale(1.08) rotate(-4deg);

}

/* ========================================= */
/* ABOUT */
/* ========================================= */

.about-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 25px;

    text-align: center;

}

.about-content p {

    max-width: 850px;

    color: #a0a0a0;

    line-height: 1.9;

    font-size: 18px;

}
