/* =================================
   RREGULLAT BAZË
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #171717;
    line-height: 1.6;
}


/* =================================
   MENUJA
================================= */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: transparent;

    border-bottom: none;
}

.navbar {
    max-width: 1200px;
    height: 80px;

    margin: auto;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;
}

.logo {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ff3b30;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.9), 0 0 22px rgba(255, 59, 48, 0.7);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img,
.hero-logo img {
    width: 120px;
    height: 120px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.logo span {
    font-weight: normal;
    color: #ff5a52;
}

.nav-links {
    display: flex;
    gap: 35px;

    list-style: none;
    position: relative;
    z-index: 1001;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;

    font-size: 15px;

    transition: 0.3s;

    position: relative;
    z-index: 1002;
}

.nav-links a:hover {
    color: #dedede;
}

.menu-button {
    display: none;

    border: none;
    background: none;

    font-size: 28px;

    cursor: pointer;
}


/* =================================
   HERO
================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 8% 80px;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("LuminaroLights26.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;

    color: white;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    width: 140px;
    height: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.small-title {
    font-size: 13px;
    letter-spacing: 4px;

    margin-bottom: 15px;

    font-weight: bold;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 85px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    font-weight: normal;
}

.hero p:not(.small-title) {
    max-width: 600px;

    font-size: 18px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    flex-wrap: wrap;
}


/* =================================
   BUTONAT
================================= */

.button {
    display: inline-block;

    padding: 14px 28px;

    background: white;
    color: #111;

    text-decoration: none;

    border: 1px solid white;

    transition: 0.3s;
}

.button:hover {
    background: transparent;
    color: white;
}

.button-outline {
    background: transparent;
    color: white;
}

.button-outline:hover {
    background: white;
    color: #111;
}


/* =================================
   SEKSIONET
================================= */

.section {
    max-width: 1200px;

    margin: auto;

    padding: 120px 30px;
}

.section-heading {
    text-align: center;

    margin-bottom: 60px;
}

.section-heading h2,
.section-text h2 {
    font-size: 50px;

    line-height: 1.1;

    margin-bottom: 20px;
}

.section-heading p:last-child {
    color: #777;
}


/* =================================
   RRETH NESH
================================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.section-image {
    width: 100%;
    height: 600px;

    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.section-text p {
    color: #666;

    margin-bottom: 20px;

    font-size: 17px;
}

.text-link {
    display: inline-block;

    margin-top: 15px;

    color: #111;

    text-decoration: none;

    font-weight: bold;
}


/* =================================
   PRODUKTET
================================= */

.products {
    max-width: 1400px;
}

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.product-card {
    background: #f5f5f5;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);
}

.product-image {
    width: 100%;

    height: 420px;

    overflow: hidden;

    background: #eeeeee;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 21px;

    margin-bottom: 7px;
}

.product-info p {
    color: #777;
}


/* =================================
   GALERIA
================================= */

.gallery {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;

    gap: 16px;
}

.gallery-item {
    height: 260px;

    overflow: hidden;

    border-radius: 14px;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item {
    cursor: pointer;
}

.page-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 30px 80px;
    background: linear-gradient(rgba(19, 19, 19, 0.75), rgba(19, 19, 19, 0.75)), url("LuminaroLights26.jpg") center/cover no-repeat;
    color: white;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: #f0f0f0;
}

.page-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
}

.product-page-grid,
.story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-page-card,
.story-card,
.contact-card {
    background: #f6f6f6;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.product-page-card img,
.story-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.product-page-card .info,
.story-card .info,
.contact-card .info {
    padding: 22px 20px;
}

.product-page-card h3,
.story-card h3,
.contact-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.product-page-card p,
.story-card p,
.contact-card p {
    color: #666;
}

.story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
    background: #111;
    color: white;
}

.contact-card .info {
    padding: 30px 24px;
}

.contact-card a {
    color: #fff;
    text-decoration: none;
}

.content-block {
    margin-bottom: 30px;
}

.content-block p {
    color: #555;
    margin-bottom: 18px;
    font-size: 17px;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2000;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: white;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}


/* =================================
   KONTAKTI FORM
================================= */

.contact-form-section {
    background: #fff;
}

.contact-form-card {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #444;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: #111;
    background: #fff;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-actions {
    margin-top: 20px;
}

.contact-form-actions .button {
    background: #111;
    color: #fff;
    border: 1px solid #111;
    cursor: pointer;
}

.contact-form-actions .button:hover {
    background: transparent;
    color: #111;
}

.form-message {
    margin-top: 16px;
    color: #111;
}

.form-success {
    color: #1a7f45;
}

.form-error {
    color: #b12c2c;
}

/* =================================
   KONTAKTI
================================= */

.contact {
    min-height: 550px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 30px;

    background: #171717;

    color: white;
}

.contact-content {
    max-width: 700px;
}

.contact h2 {
    font-size: 55px;

    line-height: 1.1;

    margin-bottom: 25px;
}

.contact p:not(.small-title) {
    color: #cccccc;

    margin-bottom: 30px;

    font-size: 18px;
}

.contact-phone {
    margin-top: 18px;
    margin-bottom: 0;
}

.contact-phone a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-shadow: none;
}

.contact-collaborator {
    margin-top: 12px;
    margin-bottom: 0;
}

.contact-collaborator a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}


/* =================================
   FOOTER
================================= */

footer {
    padding: 40px 30px;

    text-align: center;

    background: #111;

    color: white;
}

.footer-logo {
    font-size: 24px;

    font-weight: bold;

    margin-bottom: 10px;

    color: #ff3b30;
    text-shadow: 0 0 10px rgba(255, 59, 48, 0.9), 0 0 22px rgba(255, 59, 48, 0.7);
}

.footer-logo span {
    font-weight: normal;
    color: #ff5a52;
}

footer p {
    color: #888;

    font-size: 14px;
}


/* =================================
   TELEFON
================================= */

@media (max-width: 800px) {

    .navbar {
        height: 70px;
    }

    .nav-links {
        display: none;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        flex-direction: column;

        gap: 0;

        background: white;

        border-bottom: 1px solid #eeeeee;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-top: 1px solid #eeeeee;
    }

    .nav-links a {
        display: block;

        padding: 16px 30px;
    }

    .menu-button {
        display: block;
    }


    .hero {
        padding: 120px 30px 70px;
    }

    .hero h1 {
        font-size: 50px;
    }


    .about {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-image {
        height: 450px;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }


    .gallery {
        grid-template-columns: 1fr;
    }

    .product-page-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 42px;
    }

}


/* =================================
   TELEFON I VOGËL
================================= */

@media (max-width: 500px) {

    .navbar {
        padding: 0 16px;
    }

    .logo img,
    .hero-logo img {
        width: 96px;
        height: 96px;
    }

    .section {
        padding: 80px 20px;
    }

    .hero {
        min-height: auto;
        padding: 110px 20px 60px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p:not(.small-title) {
        font-size: 16px;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .hero-buttons .button {
        width: 100%;
        text-align: center;
    }

    .section-heading h2,
    .section-text h2 {
        font-size: 38px;
    }

    .section-image {
        height: auto;
    }

    .product-image {
        height: 350px;
    }

    .page-section {
        padding: 80px 20px;
    }

    .page-hero {
        min-height: 340px;
        padding: 110px 20px 70px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .contact-form-card {
        padding: 30px 18px;
    }

    .form-row {
        gap: 14px;
    }

}