/* ===== GENERAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FONT SETTINGS ===== */
body {
  font-family: "Quicksand", sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  font-weight: 400;
}

/* Headings & navigation get a little extra emphasis */
h1, h2, h3, nav a {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Paragraphs & list items use normal weight */
p, li {
  font-weight: 400;
}



/* ===== HEADER ===== */
header {
  background: url("../images/page-banner-bg.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center; /* centers the logo horizontally */
  align-items: center;     /* centers it vertically */
  padding: 1.2rem 2rem;
}

/* center logo setup */
.logo img {
  height: 80px; /* smaller logo size */
  width: auto;
  display: block;
}



/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 4rem;
  background: linear-gradient(to bottom right, #fff, #f9f8ff);
  flex-wrap: wrap; /* stacks nicely on mobile */
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: none;
  box-shadow: none;
}

.hero-right {
  flex: 1;
  max-width: 800px;
}

.hero-right h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1rem;
}

.hero-right p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-buttons .btn {
  background-color: #f2dfd4;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.hero-buttons .btn:hover {
  background-color: #f2dfd4;
  color: #222;
}

/* Optional softer button */
.hero-buttons .secondary {
  background-color: #f2dfd4;
  color: #222;
}

.hero-buttons .secondary:hover {
  background-color: #9e6711;
  color: #fff;
}


/* ===== SHOP SECTION ===== */
.shop-section {
  background-color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #9e6711;
  margin-bottom: 2rem;
  font-weight: bold;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.product-card {
  flex: 1 1 250px; /* makes them responsive */
  max-width: 300px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}


.product-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 0.5rem;
}

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

/* shop buttons */
.shop-button {
  background-color: #9e6711;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.shop-button:hover {
  background-color: #c07d17;
}




/* ===== FOOTER ===== */
footer {
  text-align: center;
  background: url("../images/page-banner-bg.jpg") center/cover no-repeat;
  color: #222;
  padding: 1rem 1rem 1.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  position: relative;
}


.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  color: #eb96b4;
}

.footer-email {
  margin-top: 0.5rem;
}

body {
  background: linear-gradient(to bottom, #ffffff, #fdfaff);
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04);
}

.btn {
  background-color: #eb96b4;
  color: #fff;
  transition: all 0.2s ease;
}

.btn:hover {
  background-color: #b3ddf2;
  color: #222;
}
/* ===== SOCIAL ICONS ===== */
.socials {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* lets icons drop to new line */
  gap: 1.5rem;
}

.socials a {
  display: flex;
  flex-direction: column; /* if you add names later, they’ll go under icons */
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.socials a img {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  transition: transform 0.25s ease;
}

.socials a:hover img {
  transform: scale(1.1);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
  .socials {
    gap: 1rem;
  }

  .socials a img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .socials {
    flex-direction: row;
    justify-content: center;
  }

  .socials a img {
    width: 50px;
    height: 50px;
  }
}

/* ===== PROJECT PAGE HEADER ===== */
.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-btn {
  background-color: #9e6711;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.home-btn:hover {
  background-color: #f2dfd4;
  color: #222;
}

/* ===== PROJECT PAGE MAIN CONTENT ===== */
.project-section {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.section-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.project-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  max-width: 300px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.project-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.view-project {
  background-color: #9e6711;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem; /* ← adds space between text and button */
}

.view-project:hover {
  background-color: #c07d17;
}

/* ===== MODALS ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1rem;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== POLICY PAGE STYLES (TOS, Privacy, Returns) ===== */
.policy-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
  line-height: 1.7;
}

.policy-section h1 {
  color: #9e6711;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.policy-section h2 {
  margin-top: 2rem;
  color: #333;
}

.policy-section p {
  margin-top: 0.5rem;
  color: #555;
}

.policy-section a {
  color: #eb96b4;
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}
