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

body {
  font-family: 'Merriweather', serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}

.menu ul {
  list-style: none;
  display: flex;
}

.menu li {
  margin-left: 25px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: #bfa06f;
}

/* Hero Section */
.hero {
  background: url('../images/hero.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255,255,255,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 15px;
}

.hero h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #bfa06f;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #a18a5e;
}

/* About Section */
.about {
  padding: 60px 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  padding: 15px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1rem;
  color: #555;
}

.about-image {
  flex: 1;
  padding: 15px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Collection Section */
.collection {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.collection h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.collection-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  width: 32%;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

/* Philosophy Section */
.philosophy {
  padding: 60px 0;
}

.philosophy h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.philosophy p {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.philosophy-image {
  text-align: center;
}

.philosophy-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.testimonial {
  background-color: #fff;
  width: 45%;
  margin-bottom: 30px;
  padding: 20px;
  border-left: 4px solid #bfa06f;
  font-style: italic;
  color: #555;
}

/* Footer */
footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 40px 0;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-info p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.contacts p {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #555;
}

.footer-action {
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-container, .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .collection-cards, .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .card, .testimonial {
    width: 80%;
  }
  .menu ul {
    flex-direction: column;
  }
  .menu li {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .menu ul {
    padding: 0;
  }
}