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

body {
  font-family: "Cormorant Garamond", serif;
  min-height: 100vh;
  background: linear-gradient(to right, #e7e7dc, #bcd0c7);
}

/* Header */
.header {
  /* background: linear-gradient(to right, #e7e7dc, #bcd0c7); */
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  width: 48px;
  height: 48px;
  background: #3d4943;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 10px 15px rgba(0, 0, 0, 0.1);
}

.brand-name {
  font-family: "Crimson Pro", serif;
  font-size: 20px;
  font-style: italic;
  color: #8163a7;
  line-height: 28px;
  letter-spacing: 1px;
}

.brand-bold {
  font-weight: 700;
}

.brand-normal {
  font-weight: 400;
}

/* .menu-button { */
  /* padding: 12px 8px; */
  /* background: rgba(129, 99, 167, 0.1); */
  /* border: none; */
  /* border-radius: 50px; */
  /* color: #2e6147; */
  /* cursor: pointer; */
/* } */

/* Main Content */
.main-content {
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hero Section */
.hero-section {
  position: relative;
}

.hero-background {
  height: 340px;
  border-radius: 24px;
  border: 2px solid #907045;
  box-shadow: 0 4px 32px rgba(55, 60, 50, 0.13);
  background-image: url("../img/qte.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .hero-overlay { */
  /* position: absolute; */
  /* inset: 0; */
  /* background: rgba(0, 0, 0, 0.2); */
  /* border-radius: 22px; */
/* } */

/* .hero-content { */
  /* position: absolute; */
  /* bottom: 0; */
  /* left: 0; */
  /* right: 0; */
  /* padding: 24px; */
/* } */

.welcome-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.welcome-title {
  font-family: "Crimson Pro", serif;
  font-size: 24px;
  font-weight: 400;
  color: #2e6147;
  padding: 8px 16px;
}

.welcome-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: #8163a7;
  padding: 4px 16px;
}

/* Section Titles */
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  color: #8163a7;
  line-height: 28px;
  margin-bottom: 17px;
}

/* Featured Pieces */
.featured-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-card {
  padding: 14px 38px;
  border-radius: 24px;
  border: 2px solid #907045;
  box-shadow: 0 6px 32px rgba(55, 60, 50, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.card-green {
  background: #bcd0c7;
}

.card-beige {
  background: #e7e7dc;
}

.product-image {
  height: 96px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid #bfa14b;
  background-size: cover;
  background-position: center;
}

.product-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: #2e6147;
}

.product-location {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: #8163a7;
}

/* Recent Stories */
.stories-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-card {
  padding: 10px 14px;
  border-radius: 24px;
  border: 2px solid #907045;
  box-shadow: 0 4px 32px rgba(55, 60, 50, 0.13);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.story-beige {
  background: #e7e7dc;
}

.story-green {
  background: #bcd0c7;
}

.story-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.story-avatar-1 {
  border: 2px solid #8163a7;
  background-image: url("https://images.pexels.com/photos/32652452/pexels-photo-32652452.jpeg");
}

.story-avatar-2 {
  border: 2px solid #2e6147;
  background-image: url("https://images.pexels.com/photos/32652452/pexels-photo-32652452.jpeg");
}

.story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.story-author {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 400;
  color: #2e6147;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.story-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: #8163a7;
  line-height: 16px;
}

.story-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.story-beige .story-icon {
  color: #8163a7;
}

.story-green .story-icon {
  color: #bfa14b;
}

/* Shop by Category */
.categories-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.categories-grid {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.category-card {
  flex: 1;
  padding: 15px 29px;
  border-radius: 24px;
  border: 2px solid #907045;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.category-gradient {
  background: linear-gradient(90deg, #bcd0c7 80%, #e7e7dc 100%);
}

.category-green {
  background: #bcd0c7;
}

.category-icon {
  color: #bfa14b;
}

.category-card:nth-child(3) .category-icon {
  color: #8163a7;
}

.category-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 400;
  color: #2e6147;
  line-height: 20px;
}

/* Call to Action */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-card {
  padding: 18px 62px;
  border-radius: 24px;
  border: 2px solid #907045;
  background: #8163a7;
  box-shadow: 0 6px 32px rgba(55, 60, 50, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.cta-title {
  font-family: "Crimson Pro", serif;
  font-size: 18px;
  font-weight: 400;
  color: white;
}

.cta-button {
  display: block;
  padding: 7px 28px;
  border-radius: 50px;
  border: none;
  background: #bfa14b;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: #2e6147;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background: rgba(191, 161, 75, 0.9);
}

/* Footer */
.footer {
  padding: 15px 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 400;
  color: #8163a7;
  text-align: center;
  line-height: 16px;
}
