/* styles.css */

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #1b1b1f 0, #050509 55%, #000000 100%);
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout helpers */
section {
  padding: 80px 7vw;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: #c7c7d1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7vw;
  background: rgba(5, 5, 9, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.18);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.logo span {
  color: #ffd66b;
}

.nav a {
  margin-left: 24px;
  font-size: 0.95rem;
  text-decoration: none;
  color: #dcdce6;
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd66b, #ffb347);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 100px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  max-width: 520px;
  color: #c7c7d1;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #ffd66b, #ffb347);
  color: #1b1b1f;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.6), 0 12px 30px rgba(0, 0, 0, 0.7);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
}

.ghost-btn {
  background: transparent;
  color: #ffd66b;
  border: 1px solid rgba(255, 214, 107, 0.6);
}

.ghost-btn:hover {
  background: rgba(255, 214, 107, 0.08);
  transform: translateY(-2px);
}

.outline-btn {
  background: transparent;
  color: #ffd66b;
  border: 1px solid rgba(255, 214, 107, 0.7);
}

.outline-btn:hover {
  background: rgba(255, 214, 107, 0.12);
  transform: translateY(-2px);
}

.small-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.large-btn {
  padding: 14px 26px;
}

/* Hero preview cards */
.hero-preview {
  display: grid;
  gap: 18px;
}

.preview-card {
  background: radial-gradient(circle at top left, #2b2b33 0, #101018 55%);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 214, 107, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.preview-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.preview-card p {
  font-size: 0.9rem;
  color: #c7c7d1;
  margin-bottom: 14px;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 214, 107, 0.4);
}

/* Collections */
.collections {
  background: radial-gradient(circle at top, #111118 0, #050509 60%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.product-card {
  background: radial-gradient(circle at top left, #262630 0, #09090f 60%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 107, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.95);
  border-color: rgba(255, 214, 107, 0.4);
}

.product-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(5, 5, 9, 0.9));
}

/* Placeholder backgrounds – replace with real images */
.wedding-bg {
  background-image: linear-gradient(135deg, #1b1b1f, #4b3b1f);
}

.birthday-bg {
  background-image: radial-gradient(circle at top, #ffb347, #7b3f8f);
}

.event-bg {
  background-image: linear-gradient(135deg, #1b1b1f, #2f4f4f);
}

.product-info {
  padding: 18px 18px 20px;
}

.product-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.9rem;
  color: #c7c7d1;
  margin-bottom: 14px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffd66b;
}

.price {
  font-size: 1rem;
  font-weight: 600;
}

/* Product actions */
.product-actions {
  display: flex;
  gap: 10px;
}

/* How it works */
.how-it-works {
  background: radial-gradient(circle at top, #111118 0, #050509 60%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.step {
  background: radial-gradient(circle at top left, #262630 0, #09090f 60%);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 214, 107, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 214, 107, 0.4);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd66b, #ffb347);
  color: #1b1b1f;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Contact */
.contact {
  background: radial-gradient(circle at top, #111118 0, #050509 60%);
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  background: radial-gradient(circle at top left, #262630 0, #09090f 60%);
  border-radius: 20px;
  padding: 24px 22px 26px;
  border: 1px solid rgba(255, 214, 107, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #e0e0ea;
}

.form-row input,
.form-row textarea {
  background: #050509;
  border: 1px solid rgba(255, 214, 107, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  color: #f5f5f5;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(255, 214, 107, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 214, 107, 0.4);
}

/* Footer */
.site-footer {
  padding: 26px 7vw 40px;
  text-align: center;
  font-size: 0.85rem;
  color: #a5a5b3;
  background: #050509;
  border-top: 1px solid rgba(255, 214, 107, 0.18);
}

.footer-links a {
  color: #ffd66b;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-preview {
    order: -1;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav a {
    margin-left: 16px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 6vw;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .site-header {
    justify-content: center;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,214,107,0.25);
}

.video-center-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  text-align: center;
}

.video-element {
  width: 70%;
  max-width: 800px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.video-note {
  margin-top: 15px;
  font-size: 16px;
  color: #fff;
}

.whatsapp-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  z-index: 9999;
  animation: blink 1.5s infinite ease-in-out;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(255,214,107,0.7));
  border-radius: 50%;
  background: #25D366;
  padding: 8px;
  box-shadow:
    0 0 15px rgba(255,214,107,0.4),
    0 0 25px rgba(255,214,107,0.2);
}

@keyframes blink {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}


