/* RESET I THJESHTË */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BAZA */
body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f3f4f6;
    color: #111827;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* KONTEJNERI */
.container {
    width: min(1120px, 100% - 2rem);
    margin: 0 auto;
}

/* BUTONAT */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #f9fafb;
    box-shadow: 0 12px 30px rgba(248, 113, 113, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.btn-outline {
    background: transparent;
    color: #111827;
    border: 1px solid #d1d5db;
    box-shadow: none;
}

.btn-outline:hover {
    background: #111827;
    color: #f9fafb;
    border-color: #111827;
}

.btn-small {
    padding: 0.45rem 1.1rem;
    font-size: 0.85rem;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(243, 244, 246, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(209, 213, 219, 0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #f97316;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: "MuseoModerno", cursive;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

.brand-title span {
    color: #ef4444;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.nav-link {
    position: relative;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    color: #4b5563;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
    background: #111827;
    color: #f9fafb;
}

.nav-link.active {
    background: #ef4444;
    color: #f9fafb;
}

/* NAV MOBILE BUTTON */
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
}

/* HERO */
.hero {
    padding: 3.5rem 0 3rem;
    background: radial-gradient(circle at top left, #e5e7eb, #f3f4f6 45%, #e5e7eb 80%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.1rem, 4vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #020617;
}

.hero-text p {
    color: #4b5563;
    max-width: 32rem;
    font-size: 0.98rem;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badges {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-badges > div {
    padding: 0.6rem 0.9rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    min-width: 120px;
}

.hero-badges strong {
    display: block;
    font-size: 1rem;
    color: #111827;
}

.hero-badges span {
    font-size: 0.8rem;
    color: #6b7280;
}

/* HERO IMAGE */
.hero-image {
    position: relative;
}

.hero-photo-wrap {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
    border: 1px solid #e5e7eb;
}

.hero-photo-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    bottom: -12%;
    left: 6%;
    right: 6%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #111827;
    color: #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
    font-size: 0.85rem;
}

/* SEKSIONET */
.section {
    padding: 3.5rem 0;
}

.section-alt {
    background-color: #e5e7eb;
}

.section-title {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: #020617;
}

.section-subtitle {
    text-align: center;
    max-width: 30rem;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    color: #6b7280;
}

/* RRETH NESH */
.two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.about-section h2 {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.about-section h2 span {
    color: #ef4444;
}

.about-section p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 0.6rem;
}

.highlight-box {
    margin-top: 1.4rem;
    padding: 1.2rem 1.1rem;
    border-radius: 1rem;
    background: #111827;
    color: #e5e7eb;
}

.highlight-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-box ul {
    list-style: none;
    font-size: 0.9rem;
    display: grid;
    gap: 0.3rem;
}

.highlight-box li::before {
    content: "▸ ";
    color: #f97316;
}

/* GALERIA E VOGËL NË RRETH NESH */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.about-image.full {
    grid-column: 1 / -1;
}

/* PSE NA ZGJIDHNI – KARTAT */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.3rem;
    margin-top: 1.6rem;
}

.card {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 1.3rem 1.2rem;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
    border: 1px solid #e5e7eb;
    font-size: 0.93rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    color: #111827;
}

.card p {
    color: #4b5563;
    font-size: 0.9rem;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* CTA KONTAKT */
.contact-cta {
    background: radial-gradient(circle at top left, #1f2937, #020617);
    color: #f9fafb;
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.contact-cta-inner h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.contact-cta-inner p {
    font-size: 0.95rem;
    color: #e5e7eb;
}

.contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* KONTAKT INFO */
.contact-info-section {
    background-color: #0b1120;
    color: #e5e7eb;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.contact-block p {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.contact-block a {
    color: #f97316;
}

.contact-block a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 0.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-icons a {
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #1f2937;
    background: #020617;
    color: #e5e7eb;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.social-icons a:hover {
    background: #f97316;
    border-color: #f97316;
}

.contact-brand-block {
    text-align: center;
}

.contact-logo {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #f97316;
    margin: 0 auto 0.8rem;
}

.contact-tagline {
    font-size: 0.9rem;
    color: #cbd5f5;
}

/* FOOTER */
.footer {
    background-color: #020617;
    color: #9ca3af;
    padding: 1.3rem 0 1.5rem;
    border-top: 1px solid #111827;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    align-items: center;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin-bottom: 0.15rem;
}

.footer a {
    color: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .hero-inner,
    .two-columns,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.6rem;
    }

    .hero-image {
        order: -1;
    }

    .contact-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 0.8rem 1rem 1rem;
        background: rgba(243, 244, 246, 0.98);
        border-bottom: 1px solid #e5e7eb;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.15s ease, opacity 0.15s ease;
    }

    .main-nav.nav-open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-badges {
        gap: 0.6rem; 
    }

    .hero-badges > div {
        flex: 1 1 calc(50% - 0.6rem);
    }

    .contact-cta-inner h2 {
        font-size: 1.4rem;
    }
}
