html {
    scroll-behavior: smooth;
}
/* =========================================
   VARIABLAT DHE RESETIMI BAZË
========================================= */
:root {
    /* Ngjyrat */
    --primary-color: #14532D; 
    --primary-hover: #166534;
    --text-dark: #111827;
    --text-gray: #4B5563;
    --bg-white: rgba(255, 255, 255, 0.9);
    
    /* Parametrat */
    --transition-speed: 0.3s;
    
    /* Fontet Profesionale (Google Fonts) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F9FAFB;
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Parandalon scroll-in horizontal aksidental */
}

/* =========================================
   NAVBAR (Xham i turbullt / Glassmorphism)
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-speed) ease-in-out;
}

.navbar.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo / Emri i Xhamisë */
.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.025em;
}

/* Menuja e Desktopit */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Butoni i Mobile (Hamburger) */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--text-dark);
    transition: all var(--transition-speed) ease-in-out;
}

/* =========================================
   SEKSIONI HERO (Ballina)
========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05); 
}

/* Hija e errët mbi foto për lexueshmëri */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin-top: 60px; 
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #D1D5DB;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: #E5E7EB;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

/* =========================================
   BUTONAT
========================================= */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* =========================================
   ANIMACIONET E ZHVILLIMIT
========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
        flex-direction: column;
        padding-top: 5rem;
        transition: right 0.4s ease-in-out;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid #f3f4f6;
        font-size: 1.1rem;
    }

    /* Animacioni i Hamburger Menu */
    .mobile-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* =========================================
   SEKSIONI RRETH NESH
========================================= */
.about-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff; /* Sfond i bardhë i pastër për kontrast me Hero-n */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    display: block;
    font-size: 0.875rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-text-block {
    margin-bottom: 2rem;
}

.about-text-block h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.about-text-block p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Stilizimi i Fotos Profesionale */
.about-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 2;
    position: relative;
    object-fit: cover;
}

/* Dekorimi prapa fotos për theksim arkitekturor */
.image-accent {
    position: absolute;
    top: 2rem;
    right: 0;
    bottom: 0;
    left: 2rem;
    background-color: var(--bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: 1;
}

/* Mobile Responsive */
@media screen and (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        order: -1; /* E nxjerr foton sipër tekstit në celular */
        padding-right: 1rem;
        padding-bottom: 1rem;
    }
    
    .image-accent {
        top: 1rem;
        left: 1rem;
    }
}

/* =========================================
   SEKSIONI NJOFTIME
========================================= */
.njoftime-section {
    padding: 5rem 1.5rem;
    background-color: var(--bg-light); /* Kthehemi te sfondi i hirtë i lehtë për kontrast */
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.njoftime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.njoftim-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.njoftim-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.njoftim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1rem;
}

.njoftim-date {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Etiketat (Badges) për të kategorizuar njoftimet */
.njoftim-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.njoftim-badge.outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.njoftim-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.njoftim-excerpt {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* =========================================
   SEKSIONI KONTAKT
========================================= */
.contact-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-list {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-list li {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.contact-list strong {
    color: var(--primary-color);
    display: inline-block;
    width: 130px;
}

.fb-link {
    color: #1877F2; /* Ngjyra zyrtare e Facebook */
    text-decoration: none;
    font-weight: 600;
}

.fb-link:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--bg-light);
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
    background-color: #111827; /* E zezë shumë e thellë */
    color: #9CA3AF; /* E hirtë e mbyllur */
    padding: 3rem 1.5rem;
    border-top: 4px solid var(--primary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.agency-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.agency-link:hover {
    color: #ffffff;
}

/* Mobile Responsive */
@media screen and (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-list strong {
        display: block;
        width: 100%;
        margin-bottom: 0.2rem;
    }
}