/* ================= VARIABLES ================= */
:root {
  --bg: #f6f4ef;
  --dark-green: #213b2a;
  --white: #ffffff;
  --gold: #d9a066;
  --muted: #6e6a5e;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--dark-green);
  line-height: 1.6;
}

/* ================= NAVIGATION ================= */

nav {
  background: var(--dark-green);
  color: var(--white);
  height: 64px;                 /* fixed, controlled height */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 1.5rem;            /* horizontal breathing room */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.logo-img {
  height: 60px;                 /* 🔑 SAFE MASTER CONTROL */
  width: auto;
  display: block;
}

.logo-text {
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
  white-space: nowrap;
}

/* DESKTOP NAV LINKS */
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--gold);
}

/* HAMBURGER BUTTON */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--gold);
  cursor: pointer;
  line-height: 1;
}

/* ================= MOBILE NAV ================= */

@media (max-width: 768px) {

  nav {
    height: 60px;               /* slightly tighter on mobile */
  }

    .nav-inner {
padding: 0 0.75rem;
  }
	
	
	
	.logo-img {
    height: 60px;               /* bolder on small screens */
  }

  .logo-text {
    font-size: 1.15rem;
  }

  /* Show hamburger */
  .nav-toggle {
    display: block;
  }

  /* Hide desktop links */
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--dark-green);
    padding: 0.75rem 1.5rem;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
    padding: 0.4rem 0;
  }

  nav ul li a {
    display: block;
    width: 100%;
    text-align: left;
  }

}



/* ================= other banner ================= */


.page-banner {
  min-height: 40vh;
  background: linear-gradient(rgba(33,59,42,0.65), rgba(33,59,42,0.65)), url('images/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  color: #fff;
}

.page-banner h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}



/* ================= BANNER ================= */
.etsy-banner {
  background: var(--gold);
  color: var(--dark-green);
  padding: 0.5rem 1rem;
  font-weight: 500;
  text-align: center;
  font-size: 0.95rem;
}

.etsy-banner a.etsy-link {
  color: var(--dark-green);
  text-decoration: underline;
  margin-left: 0.25rem;
}

/* ================= HERO ================= */
header {
  min-height: 70vh;
  background: url('images/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}


header h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

header p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #f7f3eb;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}


.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--gold);
  color: var(--dark-green);
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--white);
}


.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.hero-slogan {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 6vw, 4.5rem); /* keep your current sizing */
  font-weight: 400; /* optional: can also try 500 for a slightly bolder look */
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}


.hero-tagline {
  margin-top: 0;
  margin-bottom: 1.2rem;   /* instead of 2rem */
  line-height: 1.4;
}



/* ================= VALUE STATEMENT ================= */
.value-statement {
  text-align: center;
  padding: 3rem 1.5rem;
}

.value-statement h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-statement p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}

/* ================= SECTIONS ================= */
section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ================= PRODUCTS ================= */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.product {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product img {
  width: 100%;          /* fill full width of container */
  height: auto;         /* keep aspect ratio */
  max-height: none;     /* remove previous height limit */
  display: block;
  margin: 0 auto;
  object-fit: contain;  /* or 'cover' if you want cropping to fill */
  padding: 0;           /* remove padding so image occupies more space */
  background: #fff;
}


.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-bottom: 0.5rem;
}

.product-content p {
  color: var(--muted);
  font-size: 0.95rem;
}




/* ================= FEATURED PRODUCTS CONTROL ================= */
.products .product {
  display: none;
}

.products .product.featured {
  display: block;
}

.products .product.featured:nth-child(n+7) {
  display: none;
}

.products-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ================= CRAFT STORY / ABOUT ================= */

#products,
#craft-story,
#contact {
  scroll-margin-top: 30px;
}


/* ABOUT TEXT - STACKED LAYOUT WITH IMAGE LEFT */
.about-paragraphs {
  display: flex;
  flex-direction: column; /* stack each block vertically */
  gap: 2rem;
}

.about-text {
  display: flex;
  flex-direction: row; /* image left, text right */
  align-items: flex-start;
  gap: 1.5rem;
  background: #ffffff;   /* white background */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.about-img {
  width: 100%;              /* fill the container width */
  max-width: 300px;         /* uniform maximum width */
  height: 200px;            /* uniform height */
  object-fit: cover;        /* crop image to fill without stretching */
  border-radius: 8px;
  display: block;
  margin-bottom: 1rem;
}


.about-copy {
  flex: 1; /* take remaining space for text */
}

/* Responsive stacking for mobile */
@media (max-width: 768px) {
  .about-text {
    flex-direction: column; /* image on top, text below */
    text-align: left;
  }
  .about-img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}

/* ================= CONTACT / SIGNUP ================= */
.signup {
  background: var(--dark-green);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}

.signup input {
  padding: 0.75rem;
  width: 260px;
  max-width: 90%;
  border: none;
  margin-right: 0.5rem;
  border-radius: 4px;
}

.signup button {
  padding: 0.75rem 1.5rem;
  border: none;
  background: var(--gold);
  color: var(--dark-green);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.signup button:hover {
  transform: translateY(-2px);
}


/* ================= FOOTER ================= */
.site-footer {
  background: #1a2f23;
  color: #cfc8b8;
}

/* Signup area */
.footer-signup {
  text-align: center;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-signup h2 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-signup p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}

.footer-signup form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-signup input:not([type="checkbox"]) {
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  border: none;
  min-width: 240px;
}



.footer-signup label {
  flex-basis: 100%;        /* force new line */
  justify-content: center;
  margin-top: 0.5rem;
}



.footer-signup button {
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  border: none;
  color: #1a2f23;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}

/* Footer content */
.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer a {
  color: #cfc8b8;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #bfb8a6;
}


.footer-signup label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;   /* controls spacing between box and text */
  font-size: 0.9rem;
  cursor: pointer;
}

.footer-signup input[type="checkbox"] {
  margin: 0;
}


/* ================= DEDICTAED PRODUCT PAGES ================= */
.btn-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  text-decoration: none;
  color: var(--dark-green);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid var(--dark-green);
  border-radius: 4px;
}

.btn-back:hover {
  background: var(--gold);
  color: var(--dark-green);
}

.product-detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.product-images {
  flex: 1 1 40%;
}

.product-images img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.product-info {
  flex: 1 1 55%;
  font-size: 1.05rem;
  line-height: 1.6;
}

.main-image-container {
  position: relative;
}

.main-image-container img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2rem;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: 4px;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.thumbnails img.active,
.thumbnails img:hover {
  border-color: var(--gold);
}


.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: centre;
  gap: 1rem;
}


.social-icon {
  width: 24px;
  height: 24px;
  fill: #cfc8b8;
  transition: fill 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover .social-icon {
  fill: var(--gold);
  transform: translateY(-2px);
}


/* Price styling */
.product-price {
  font-family: 'Playfair Display', serif; /* matches your main font */
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-green); /* or gold if you prefer accent */
  margin-bottom: 1rem;
}

/* Etsy button styling */
.btn-etsy {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #bfa45c; /* gold accent */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-etsy:hover {
  background-color: #a78e40; /* slightly darker on hover */
}



/* Product color swatch */
.product-color {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #333;
  flex-wrap: wrap; /* in case it wraps on small screens */
}

.product-color .available-text {
  font-weight: 500;
  margin-right: 0.5rem;
}

.product-color .color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.25rem;
  border: 1px solid #ccc; /* subtle border */
}

.product-color .color-name {
  margin-right: 1rem;
  font-weight: 500;
}




@media (max-width: 768px) {

  .nav-inner {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    padding-left: 0.25rem;
    padding-right: 0.5rem;
  }

  /* Logo stays single-line */
  .logo {
    display: contents; /* allows children to live in grid columns */
  }

  .logo-img {
    grid-column: 1;
    height: 56px;
  }

  .logo-text {
    grid-column: 2;
    justify-self: center;
    text-align: center;
    white-space: nowrap;
    font-size: 1.15rem;
  }

  /* Hamburger visible */
  .nav-toggle {
    display: block;
		margin-left: auto;
  }

  /* Dropdown menu */
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;   /* ← LEFT aligned */
    background: var(--dark-green);
    padding: 0.75rem 1rem;
  }

  nav ul.open {
    display: flex;
  }

nav ul li {
  width: 100%;
  padding: 0.1rem 0;   /* tighter vertical spacing */
}

nav ul li a {
  line-height: 1.1;     /* reduces perceived “carriage return” */
}

  nav ul li a {
    display: block;
    width: 100%;
    text-align: left;          /* ← LEFT aligned text */
  }

}

/* Add a smooth slide transition to main image */
#mainImage {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Signup section – visually part of footer */
.footer-signup {
  background-color: #1a2f23;   /* use the SAME colour as .site-footer */
  color: #f5f5f5;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Keep signup content aligned with footer columns */
.footer-signup > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Optional: tighten spacing on mobile */
@media (max-width: 768px) {
  .footer-signup {
    padding: 2.5rem 1.25rem;
  }
}

}


