/* --- CSS Reset & Variables --- */
:root {
  --bg-color: #0d2826; /*Deep Green, to match brand aesthetic */
  --card-bg: #Fdfbf7; /* Warm, premium off-white */
  --text-main: #333333;
  --text-muted: #666666;
  --accent-color: #B59575; /* Elegant muted gold/tan */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-color);
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

/* --- Layout & Card Styling --- */
#layout-design {
  width: 100%;
  max-width: 540px;
}

#main-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
}

/* --- Header & Typography --- */
.logo {
  margin-bottom: 20px;
}

.logo img {
  max-width: 200px; /* Adjust based on your actual logo size */
  height: auto;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 5px;
}

.page-header h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.intro-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* --- Collections Box --- */
.collections-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.collections-box h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--text-main);
}

.collections-list {
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
}

.collections-list li {
  margin-bottom: 8px;
}

.collections-list li::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block; 
  width: 1em;
}

/* --- Social Links --- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.social-btn img {
  width: 40px;
  height: 40px;
  border-radius: 0%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover img {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- Contact Info --- */
.contact-info {
  font-style: normal;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.email-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: var(--accent-color);
}

/* --- Shop Buttons (Future Use) --- */
.shop-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn-shop {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  transition: opacity 0.3s ease;
}

.btn-shop:hover {
  opacity: 0.85;
}

.btn-amazon {
  background-color: #FF9900;
}

.btn-flipkart {
  background-color: #2874F0;
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
  #main-card {
    padding: 50px;
  }
  .page-header h1 {
    font-size: 32px;
  }
  .intro-text {
    font-size: 16px;
  }
}