@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* =========================================
   SETTINGS KRYESORE
   ========================================= */
body {
    font-family: 'Lato', sans-serif;
    background-color: #EADDCA; /* Ngjyrë bezhë/almond */
    color: #333; 
}

/* =========================================
   NAVBAR (TRANSPARENT OVERLAY)
   ========================================= */
.navbar {
    background-color: transparent !important; 
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: none !important;
    box-shadow: none !important; 
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Logo e madhe */
    letter-spacing: 2px;
    color: #ffffff !important; 
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5); 
}

.tracking-wide {
    letter-spacing: 0.2em;
}

/* =========================================
   SEARCH BOX (KUTIA E KËRKIMIT)
   ========================================= */
.search-box {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2); 
    height: 40px;
    border-radius: 40px;
    padding: 5px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5); 
    transition: 0.4s;
    overflow: hidden;
    width: 40px; 
}

.search-box:hover, 
.search-box:focus-within {
    width: 260px; 
    background: #ffffff; 
    border-color: #333;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.search-btn {
    color: #ffffff; 
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: 0.4s;
}

.search-box:hover .search-btn, 
.search-box:focus-within .search-btn {
    color: #333;
}

.search-input {
    border: none;
    background: none;
    outline: none;
    padding: 0;
    width: 0px;
    transition: 0.4s;
    font-size: 14px;
    line-height: 40px;
    color: #333;
}

.search-box:hover .search-input,
.search-box:focus-within .search-input {
    width: 200px;
    padding: 0 10px;
}

/* =========================================
   HERO SLIDER (FOTO KRYESORE E LEVIZSHME)
   ========================================= */
.hero-slide {
    height: 600px; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: relative;
}

/* Titujt brenda sliderit */
.hero-title {
    font-size: 2.5rem; /* Tekst i madh për PC */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out; 
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    margin-bottom: 30px;
}

/* Butoni brenda sliderit */
.btn-hero {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
    border-radius: 0;
    text-decoration: none;
    margin-top: 20px;
    letter-spacing: 1px;
}

.btn-hero:hover {
    background-color: #fff;
    color: #000;
}

/* Animacionet e vogla */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.product-card {
    border: none;
    background: transparent;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img-wrapper {
    background-color: #ebedee; 
    padding: 20px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; 
}

.card-body {
    padding: 1.5rem 0;
    text-align: center;
}

.card-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.card-price {
    font-weight: 700;
    color: #333;
}

/* =========================================
   MODAL & FOOTER
   ========================================= */
.modal-content {
    overflow: hidden;
}

.footer {
    background-color: #222;
    color: #fff;
}

/* =========================================
   MEDIA QUERIES (PER CELULAR)
   ========================================= */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 2rem; /* Logo më e vogël në celular */
    }
    .hero-slide {
        height: 400px;
    }
    .hero-title {
        font-size: 2.2rem; /* Titull më i vogël në celular */
    }
    .search-box {
        right: 10px; 
    }
}