/* Import Google Fonts for a cool, modern typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* General Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #2e4c45 0%, #acb8a4 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #e6cc9e;
  letter-spacing: 2px;
}

.logo h1 span {
  color: #d4c2be;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: #e6cc9e;
  transform: translateY(-2px);
}

.cart-icon {
  position: relative;
}

.cart-icon a {
  color: #fff;
  font-size: 1.5rem;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #d4c2be;
  color: #2e4c45;
  border-radius: 50%;
  padding: 5px 8px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* About Hero Section */
.about-hero {
  position: relative;
  background: linear-gradient(180deg, #2e4c45, #acb8a4);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.about-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease-in-out;
}

.about-hero p {
  font-size: 1.2rem;
  font-weight: 300;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-in-out;
}

/* General Section Styles */
.section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9f9f9, #d4c2be);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2e4c45;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #e6cc9e;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Our Mission Section */
.section-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section-content .text {
  flex: 1;
  min-width: 300px;
}

.section-content .text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.section-content .text p {
  font-size: 1.1rem;
  color: #666;
}

.section-content .image {
  flex: 1;
  min-width: 300px;
}

.section-content .image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.section-content .image img:hover {
  transform: scale(1.05);
}

/* Our Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-member h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #2e4c45;
  margin: 15px 0 5px;
}

.team-member p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.feature i {
  font-size: 2.5rem;
  color: #e6cc9e;
  margin-bottom: 15px;
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #2e4c45;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
  color: #666;
}

/* Footer Styles */
footer {
  background: #2e4c45;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #e6cc9e;
  margin-bottom: 20px;
}

.footer-column p, .footer-column ul li a {
  font-size: 1rem;
  color: #acb8a4;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e6cc9e;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 2px solid #acb8a4;
  border-radius: 10px;
  font-size: 1rem;
}

.newsletter-form button {
  background: #e6cc9e;
  color: #2e4c45;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #d4c2be;
}

.social-media {
  background: #1a3b34;
  padding: 20px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #acb8a4;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #e6cc9e;
  transform: scale(1.2);
}

.copyright {
  background: #2e4c45;
  padding: 20px 0;
  text-align: center;
}

.copyright p {
  font-size: 0.9rem;
  color: #acb8a4;
}

/* Keyframes for Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}