/* Variabile brand */
:root {
  --brand: #0d6efd;
}

/* Fonturi globale */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f8f9fa;
  color: #1a1a1a;
}

.hero-title,
.section-title,
.brand-text {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

/* HERO background: crem / cald, premium */
.hero-gradient {
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, #fff8f5 40%, #fdeee6 80%);
}

/* Carduri produse */
.product-card {
  transition: all 0.18s ease;
  background-color: #fff;
}
.product-card:hover {
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Badge "Limited" */
.seasonal-badge {
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
  padding: 0.4rem 0.6rem;
}

/* Rotunjiri globale */
.btn {
  border-radius: 1rem;
}

.rounded-4,
.rounded-top-4 {
  border-radius: 1rem !important;
}

/* Navbar */
.navbar-brand {
  letter-spacing: 0.3px;
  font-weight: 700;
}

.navbar .nav-link {
  font-weight: 500;
  color: #1a1a1a;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--brand);
}

/* Logo în navbar */
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-top: 2px;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

/* Logo mai mic pe telefoane */
@media (max-width: 768px) {
  .logo-img {
    height: 55px;
  }
}

/* Imaginea mare din hero */
.hero-image-wrapper img {
  object-fit: cover;
  transition: transform 0.3s ease;
}
.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* Footer */
.footer {
  border-top: 1px solid #e9ecef;
}
.footer a:hover {
  color: var(--brand) !important;
}

/* Form contact card */
#contact .card {
  border-radius: 1rem;
}

/* Mic utilitar dacă vrei text mai moale */
.text-muted-soft {
  color: rgba(0,0,0,0.55) !important;
}

/* Bullet list la hero */
.bullet-list li {
  line-height: 1.5;
}
/* Hover effect for product images */
.product-card img {
  transition: all 0.4s ease;
}

.product-card:hover img {
  filter: brightness(1.15);
  transform: scale(1.02);}
  /* Featured product style */
.featured {
  background: linear-gradient(145deg, #fff8e1, #ffffff);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  transform: scale(1.02);
}

.featured:hover img {
  filter: brightness(1.2);
}
/* Navbar styling */
.navbar {
  background: linear-gradient(90deg, #fef6e4, #fff8dc);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #f0e2b6;
}

.navbar a.nav-link,
.navbar-brand {
  color: #4a3b28 !important;
  transition: color 0.3s ease;
}

.navbar a.nav-link:hover {
  color: #b8860b !important;
}

.navbar .btn-primary {
  background-color: #d4a017;
  border: none;
}

.navbar .btn-primary:hover {
  background-color: #b88a0a;
}
/* Hero section background */
#top {
  background: linear-gradient(180deg, #fff8ec 0%, #ffffff 100%);
  padding-top: 40px;
  padding-bottom: 40px;
}

#top h1, 
#top h2, 
#top p {
  color: #4a3b28;
}

#top .btn-primary {
  
  background-color: #d4a017;
  border: none;
}

#top .btn-primary:hover {
  background-color: #b88a0a;
}
/* Titlu elegant homepage */
.hero-title {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #2c2c2c;
  line-height: 1.2;
}

.hero-title .handmade {
  font-family: 'Great Vibes', cursive;
  font-size: 3.2rem;
  color: #3b2f2f;
  display: block;
  margin-bottom: -0.4rem;
}

.hero-title .ornaments {
  color: #2563eb;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}