/*
Theme Name: Remote Network Pro
Theme URI: https://remotenetworkpro.com
Author: Remote Network Pro
Author URI: https://remotenetworkpro.com
Description: Minimal one-page theme for Remote Network Pro - Remote Network Engineering & IT Services.
Version: 1.2
Text Domain: remotenetworkpro
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f8f8f8;
    color: #222;
    line-height: 1.6;
}

/* HEADER */

header {
    background: #020617; /* shumë afër black navy */
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    color: #f9fafb;
    font-weight: bold;
}

nav a {
    color: #e5e7eb;
    margin-left: 18px;
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    color: #38bdf8; /* blu e lehtë për hover */
}

/* HERO */

.hero {
    padding: 40px 0 50px;
}

.hero-card {
    background: #0a1d3d;
    color: white;
    padding: 40px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.hero-text h2 {
    font-size: 1.05rem;
    font-weight: 400;
    color: #d1d5db;
    max-width: 580px;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    margin-bottom: 8px;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* dekor pa pas nevojë për imazh file */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #22d3ee, #0f172a 55%, #020617 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* butonat në hero mos me pas margin top tjetër */
.hero .btn {
    margin-top: 0;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 40px;
    border: none;
    background: #0050b3;   /* blu kryesore */
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.1s ease;
}

.btn:hover,
.btn:focus {
    background: #003d8c;   /* pak ma e errët në hover */
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #0050b3;
    color: #0050b3;
}

.btn-outline:hover,
.btn-outline:focus {
    background: #0050b3;
    color: #fff;
}

/* SECTION GENERAL */

section {
    padding: 60px 0;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

p.section-intro {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

/* GRIDS & CARDS */

.grid-3, .grid-2 {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

.card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

ul {
    list-style: none;
}

ul li::before {
    content: "• ";
    color: #888;
}

/* TAGS */

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 8px 14px;
    font-size: 0.85rem;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 30px;
}

/* CONTACT / FORM */

.contact-box {
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
}

label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fafafa;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* FOOTER */

footer {
    padding: 20px 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
    background: #020617; /* njëjtë si header */
    margin-top: 40px;
}

footer a {
    color: #e5e7eb;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-card {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .hero-image {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        font-size: 1.05rem;
        padding: 14px 24px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}
header {
    background: #002a5c;   /* ngjyrë blu e fortë për header */
    padding: 20px 0;
}

.nav a {
    color: #e0e0e0;
}

.hero-card {
    background: #0a1d3d;  /* blu më errët */
    color: #fff;
}

footer {
    background: #001a3f; /* blu shumë e errët */
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size:0.85rem;
}

footer a {
    color: #ccc;
}

.hero-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}