/* Typography and base styles */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f8f5f2;
  line-height: 1.6;
  scroll-behavior: smooth;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  color: #2a2a2a;
}
h1 {
  font-size: 3rem;
  letter-spacing: 1px;
}
h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
p {
  margin-bottom: 1rem;
  font-weight: 300;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}
.logo img {
  height: 80px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.nav a {
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #c49a6c;
}

/* Hero */
.hero {
  height: 100vh;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f8f5f2;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #c49a6c;
  color: #c49a6c;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 500;
}
.btn:hover {
  background-color: #c49a6c;
  color: #fff;
}

/* About */
.about {
  padding: 5rem 0;
  background-color: #f5f1eb;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}
.about-text h2 {
  margin-bottom: 1rem;
}
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Parallax Section */
.parallax-section {
  height: 70vh;
  background-image: url('../assets/parallax.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.parallax-content {
  position: relative;
  z-index: 1;
}
.parallax-section h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.parallax-section p {
  font-size: 1.2rem;
  color: #f8f5f2;
}

/* Gallery */
.gallery-section {
  padding: 5rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
/* Smaller class for pink & gold to fit nicely */
.gallery-item.small {
  max-width: 75%;
  margin: 0 auto;
}

/* Services */
.services-section {
  padding: 5rem 0;
  background-color: #f5f1eb;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.service:hover {
  transform: translateY(-5px);
}
.service h3 {
  color: #c49a6c;
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-section {
  padding: 5rem 0;
  text-align: center;
}
.contact-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}
.contact-section .btn {
  border-color: #2a2a2a;
  color: #2a2a2a;
}
.contact-section .btn:hover {
  background-color: #2a2a2a;
  color: #fff;
}

/* Footer */
.footer {
  padding: 2rem 0;
  background-color: #f0ece6;
  text-align: center;
  font-size: 0.875rem;
  color: #777;
}

/* Shop */
.shop-section {
  padding: 5rem 0;
  background-color: #ffffff;
}
.shop-intro {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
  font-weight: 300;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.product {
  background-color: #f8f5f2;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.product:hover {
  transform: translateY(-5px);
}
.product img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.product h3 {
  margin: 0.5rem 0;
  color: #2a2a2a;
  font-size: 1.3rem;
}
.product .price {
  font-weight: 500;
  color: #c49a6c;
  margin-bottom: 1rem;
}
.buy-btn {
  border-color: #c49a6c;
  color: #c49a6c;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.buy-btn:hover {
  background-color: #c49a6c;
  color: #fff;
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Delay classes for hero content */
.delay {
  transition-delay: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .parallax-section h2 {
    font-size: 2.5rem;
  }
}