/* --- Rregullat Bazë --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-dark: #121212;
    --bg-card: #1a1a1a;
    --primary-gold: #c5a880;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header & Navigacioni --- */
header {
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-gold);
}

/* --- Hero Section me Sfond Transparent --- */
.hero {
    position: relative;
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('imazhet/283901331_114996491215285_4954493271521707656_n-1-1024x1024.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-box {
    background-color: rgba(0, 0, 0, 0.65);
    padding: 40px 50px;
    border-radius: 12px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    backdrop-filter: blur(8px);
    max-width: 800px;
    width: 90%;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: var(--primary-gold);
}

.hero-content p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: #121212;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-gold:hover {
    background-color: #ffffff;
    color: #121212;
    transform: translateY(-2px);
}

/* --- Seksioni: Çfarë Ofrojmë Për Ju --- */
.welcome-section {
    padding: 80px 0 40px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--primary-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 40px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

/* --- Seksioni: Rreth Nesh me 4 Foto --- */
.about-preview-section {
    padding: 60px 0;
    background-color: #161616;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-images-4 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.about-preview-text h2 {
    font-size: 16px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-preview-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-preview-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 16px;
}

/* --- Seksioni: Shiko Menunë (Banner) --- */
.menu-banner {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)), url('imazhet/WhatsApp-Image-2023-08-05-at-16.59.04.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
}

/* --- Seksioni: Galeria me Slider Horizontal --- */
.gallery-section {
    padding: 80px 0;
    position: relative;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none; 
}

.gallery-slider::-webkit-scrollbar {
    display: none; 
}

.gallery-item {
    flex: 0 0 300px; 
    height: 250px;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Shigjetat e rrëshqitjes */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(197, 168, 128, 0.85);
    color: #121212;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.left { left: -25px; }
.slider-btn.right { right: -25px; }

/* --- Lightbox Modal --- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 4px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0px 0px 25px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

/* --- Footer --- */
footer {
    background-color: #0b0b0b;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: var(--primary-gold);
    width: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 13px;
}

/* --- Responsive Mode --- */
@media (max-width: 992px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .slider-btn { display: none; }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-content h1 { font-size: 32px; }
    .hero-box { padding: 25px 20px; }
}