/* Velvino Cosmetics - Custom styles */
/* Native smooth scroll when clicking anchor links; leave space for fixed navbar */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

:root {
  --velvino-primary: #8b6914;
  --velvino-primary-dark: #6b5010;
  --velvino-gold: #c9a227;
  --velvino-cream: #faf8f5;
  --velvino-charcoal: #2c2c2c;
  --velvino-muted: #6c757d;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--velvino-charcoal);
  overflow-x: hidden;
}

/* Typography */
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--velvino-muted);
  letter-spacing: 0.15em;
}

.hero-title,
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--velvino-charcoal);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--velvino-primary);
  font-weight: 500;
}

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

/* Navbar */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--velvino-charcoal) !important;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: var(--velvino-primary) !important;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #2a2520 0%, #1e1b18 40%, #252220 100%);
  color: #f8f6f3;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  animation: heroFadeIn 0.9s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: #d4af37;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, #d4af37, rgba(212, 175, 55, 0.3));
}

.hero-title {
  letter-spacing: 0.02em;
  color: #faf9f7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e8e6e3;
  max-width: 460px;
  font-weight: 400;
}

.btn-hero {
  background: var(--velvino-gold);
  color: #fff;
  border: none;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
  background: var(--velvino-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(139, 105, 20, 0.35);
}

.btn-hero .btn-icon {
  transition: transform 0.25s ease;
}

.btn-hero:hover .btn-icon {
  transform: translateX(4px);
}

/* Hero model */
.hero-model-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  animation: heroFadeIn 0.9s ease-out 0.2s both;
}

.hero-model-frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-model-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.hero-model-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--velvino-charcoal);
  background: var(--velvino-gold);
  padding: 6px 12px;
  border-radius: 4px;
}

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #b8b5b0;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.hero-scroll-link:hover {
  color: #f0eeea;
}

.hero-scroll-text {
  order: 2;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, #d4af37, transparent);
  border-radius: 2px;
  order: 1;
  animation: scrollLinePulse 2s ease-in-out infinite;
}

.hero-scroll-link .fa-chevron-down {
  order: 3;
  font-size: 0.6rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Product cards */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--velvino-cream);
}

.product-img-wrap .card-img-top {
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap .card-img-top {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--velvino-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--velvino-primary);
}

/* About section */
.about-img img {
  transition: transform 0.4s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

/* Contact icons */
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 105, 20, 0.12);
  color: var(--velvino-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-icon:hover {
  background: var(--velvino-primary);
  color: #fff;
}

footer a:hover {
  color: #fff !important;
}

/* Utilities */
/* Smooth scroll: prevent content from hiding under fixed navbar */
#home,
#products,
#about,
#contact {
  scroll-margin-top: 5.5rem;
}

.rounded-0 {
  border-radius: 0;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero-scroll {
    bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .product-img-wrap .card-img-top {
    height: 220px;
  }
}
