@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f1ea;
  color: #3d3d3d;
}

header {
  background-color: #d8cfc4;
  text-align: center;
  padding: 3rem 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* ============================================
   CTA Button Wrapper in Why Shop Here Section
============================================ */
.shop-cta {
  text-align: center;
  margin-top: 1.5rem;
}


.cta-button {
  background-color: #6b5e4e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #4f463b;
}

.collections, .about, .benefits {
  padding: 2rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}

h2 {
  color: #5e4b3c;
  border-bottom: 2px solid #ccc0a1;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.collection {
  margin-bottom: 2rem;
}

.collection img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5rem;
  border-radius: 8px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

ul li {
  background: #e9e4dc;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid #a39382;
}

footer {
  text-align: center;
  background-color: #d8cfc4;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}

footer a {
  color: #6b5e4e;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}


/* ===========================
   Tee of the Week Adjustments
=========================== */

.tee-headings {
  text-align: center;
  margin-bottom: 1rem;
}

.tee-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.main-tee {
  flex: 1 1 480px;
  text-align: center;
}

.main-tee img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
}

.other-tees {
  flex: 1 1 260px;
  text-align: center;
}

.other-tees h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #5e4b3c;
}

.tee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  justify-items: center;
}

.tee-grid img {
  width: 100%;
  max-width: 110px;
  border-radius: 6px;
  border: 1px solid #ccc0a1;
  background: #fff;
  padding: 4px;
}

/* ============================================
   About the Artist Profile & Signature Styling
   Includes circular profile photo and signature line
   ============================================ */

.artist-profile {
  text-align: center;
  margin-top: 2rem;
}

.artist-profile img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc0a1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.signature {
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 0.75rem;
  color: #5e4b3c;
}
/* === End of stylesheet for /vision page | Web Dude Designs === */



