/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfaf5;
  color: #4b2e2e;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fade-in Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Header */
header {
  background-color: #e8d8c3;
  padding: 20px;
  border-bottom: 1px solid #d4bfa3;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

/* Logo & Brand Name Aligned */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-container h1 {
  font-size: 36px;
  font-weight: 700;
  color: #4b2e2e;
  font-family: 'Playfair Display', serif;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  animation: fadeInUp 1s ease forwards;
}

nav ul::-webkit-scrollbar {
  display: none;
}

nav a {
  text-decoration: none;
  color: #4b2e2e;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: #a67c52;
  width: 0%;
  transition: width 0.3s;
  margin-top: 4px;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f0ea;
  animation: fadeInUp 1.2s ease forwards;
}

.hero h2,
.hero p {
  animation: floatUp 1.6s ease forwards;
  opacity: 0;
}

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

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Buttons */
.order-btn,
.instagram-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
  animation: fadeInUp 1.4s ease forwards;
}

.order-btn {
  background-color: #a67c52;
  color: white;
}

.order-btn:hover {
  background-color: #8c6239;
  transform: scale(1.05);
  animation: bounce 0.4s ease;
}

.instagram-btn {
  background-color: #5c4033;
  color: white;
  text-decoration: none;
}

.instagram-btn:hover {
  background-color: #4b3229;
  transform: scale(1.05);
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background-color: #e0d2bf;
  margin: 40px auto;
  width: 80%;
}

/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Product Grid */
.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: fadeInUp 1.6s ease forwards;
}

/* Product Card Styling */
.product-card {
  background: #fffaf3;
  border: 1px solid #e3d5c3;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(166, 124, 82, 0.3);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s;
  animation: fadeIn 1s ease both;
}

.product-card:hover img {
  transform: scale(1.02);
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #4b2e2e;
  margin-bottom: 10px;
}

.product-card p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: #6b4a3f;
  line-height: 1.6;
}

/* Contact Section */
.contact p {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #fffaf3;
  padding: 25px;
  border: 1px solid #e3d5c3;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d6c3b3;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background-color: #fdfaf5;
  color: #4b2e2e;
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #a67c52;
  box-shadow: 0 0 5px rgba(166, 124, 82, 0.3);
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #a67c52;
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background-color: #8c6239;
  transform: scale(1.05);
  animation: bounce 0.4s ease;
}

/* WhatsApp Chat Button */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s;
  animation: pulse 2.5s infinite;
}

.chat-btn:hover {
  background-color: #1ebc59;
  transform: scale(1.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer */
footer {
  background-color: #e8d8c3;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #5b4a3a;
  margin-top: 50px;
  animation: fadeInUp 2s ease forwards;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }

  .contact-form {
    padding: 20px;
  }

  .order-btn,
  .instagram-btn {
    width: 90%;
  }
}

/* Section Headings */
.necklace-heading,
.earring-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  text-align: center;
  margin: 40px 0 25px;
  color: #4b2e2e;
}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fdfaf5;
  color: #4b2e2e;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fade-in Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Header */
header {
  background-color: #e8d8c3;
  padding: 20px;
  border-bottom: 1px solid #d4bfa3;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}

/* Logo & Brand Name Aligned */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-container h1 {
  font-size: 36px;
  font-weight: 700;
  color: #4b2e2e;
  font-family: 'Playfair Display', serif;
}

/* Navigation */
nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  animation: fadeInUp 1s ease forwards;
}

nav ul::-webkit-scrollbar {
  display: none;
}

nav a {
  text-decoration: none;
  color: #4b2e2e;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: #a67c52;
  width: 0%;
  transition: width 0.3s;
  margin-top: 4px;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f0ea;
  animation: fadeInUp 1.2s ease forwards;
}

.hero h2,
.hero p {
  animation: floatUp 1.6s ease forwards;
  opacity: 0;
}

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

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Buttons */
.order-btn,
.instagram-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.3s ease;
  display: inline-block;
  margin-bottom: 8px;
  animation: fadeInUp 1.4s ease forwards;
}

.order-btn {
  background-color: #a67c52;
  color: white;
}

.order-btn:hover {
  background-color: #8c6239;
  transform: scale(1.05);
  animation: bounce 0.4s ease;
}

.instagram-btn {
  background-color: #5c4033;
  color: white;
  text-decoration: none;
}

.instagram-btn:hover {
  background-color: #4b3229;
  transform: scale(1.05);
  animation: bounce 0.4s ease;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.05);
  }
}

/* Divider */
.divider {
  border: none;
  height: 1px;
  background-color: #e0d2bf;
  margin: 40px auto;
  width: 80%;
}

/* Sections */
section {
  padding: 40px 20px;
  text-align: center;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Product Grid */
.product-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: fadeInUp 1.6s ease forwards;
}

/* Product Card Styling */
.product-card {
  background: #fffaf3;
  border: 1px solid #e3d5c3;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(166, 124, 82, 0.3);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: transform 0.3s;
  animation: fadeIn 1s ease both;
}

.product-card:hover img {
  transform: scale(1.02);
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #4b2e2e;
  margin-bottom: 10px;
}

.product-card p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: #6b4a3f;
  line-height: 1.6;
}

/* Contact Section */
.contact p {
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #fffaf3;
  padding: 25px;
  border: 1px solid #e3d5c3;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d6c3b3;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background-color: #fdfaf5;
  color: #4b2e2e;
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #a67c52;
  box-shadow: 0 0 5px rgba(166, 124, 82, 0.3);
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #a67c52;
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background-color: #8c6239;
  transform: scale(1.05);
  animation: bounce 0.4s ease;
}

/* WhatsApp Chat Button */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s;
  animation: pulse 2.5s infinite;
}

.chat-btn:hover {
  background-color: #1ebc59;
  transform: scale(1.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Footer */
footer {
  background-color: #e8d8c3;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #5b4a3a;
  margin-top: 50px;
  animation: fadeInUp 2s ease forwards;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    gap: 15px;
  }

  nav a {
    font-size: 14px;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }

  .contact-form {
    padding: 20px;
  }

  .order-btn,
  .instagram-btn {
    width: 90%;
  }
}

/* Section Headings */
.necklace-heading,
.earring-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  text-align: center;
  margin: 40px 0 25px;
  color: #4b2e2e;
}