/* Fonts */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #FAF7F2;
  color: #5C4A3F;
}


/* Logo container */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 150px;             /* Try 55 → can go to 60 */
  width: auto;
  object-fit: contain;
  display: block;
}


/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;        /* ↓ reduced from 20px */
  background: #F2E9DA;
  border-bottom: 2px solid #E6D7C3;
  height: 80px;             /* fixes header height */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #5C4A3F;
}
.logo span {
  color: #A1866F;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #5C4A3F;
  font-weight: 500;
}
nav a:hover {
  color: #A1866F;
}

/* Hero Section */
.hero {
  background: url('img/Hero.png') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: white;
}

.hero-content {
  max-width: 500px;
  background: rgba(92, 74, 63, 0.55);
  padding: 25px 35px;
  border-radius: 12px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #A1866F;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: #8F755C;
}

/* Collections Section */
.collections {
  padding: 50px 80px;
}

.collection-grid.no-images {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px; /* space between cards */
}

.no-img-card {
  background: #F6EFE7;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #E4D7C5;
  transition: 0.3s ease;
  cursor: pointer;
}

.no-img-card:hover {
  background: #EDE4D8;
  transform: translateY(-5px);
}

/* Products */
.products {
  padding: 60px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h4 {
  margin: 10px 0 5px;
  font-weight: 600;
}

/* About */
.about {
  background: #EFE7DD;
  padding: 80px 60px;
}

.about-inner {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-family: 'Playfair Display', serif;
}

/* Footer */
.footer {
  background: #5C4A3F;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 50px 60px;
}

.footer a {
  display: block;
  color: #F2E9DA;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer a:hover {
  color: #EBDCC9;
}

/* Section subtitle */
.section-subtext {
  margin-top: -10px;
  margin-bottom: 40px;
  font-size: 1rem;
  color: #7c6a58;
}

/* Icons */
.icon-circle {
  background: #E4D7C5;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #5C4A3F;
}
