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

:root {
  /* Palette */
  --parchment: #F7F3EE;
  --paper: #F3EDE4;
  --vellum: #FFFFFF;
  --umber: #7D5A3A;
  --antique-gold: #B89B73;
  --rose: #CFA9A0;
  --stone: #6B6B68;
  --ink: #1E1B16;
  --olive: #8A8660;
  --ivory: #E9E5E0;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Karla', sans-serif;
}

/*Global*/

*{
	box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

/* ===============================
   HEADER / NAV
================================= */

.site-header{ 
  z-index:50;
  background:var(--vellum);
  border-bottom:1px solid rgba(0,0,0,.06);
  padding-inline: clamp(32px, 4vw, 56px);
	
}

/* Grid structure */
.nav-row{
  display:grid;
  grid-template-columns: 1fr auto 1fr; 
  align-items:center;
  min-height:130px;
  gap:32px;
}

/* ---------------------------------
   LEFT SIDE: hamburger + desktop links
----------------------------------- */
.nav-left{
  grid-column:1;
  display:flex;
  align-items:center;
  gap:20px;
}

/* Desktop nav links */
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  font:600 14px var(--font-body);
  color:var(--ink);
  text-decoration:none;
  letter-spacing:.02em;
  padding:6px 4px;
  border-radius:8px;
}

.nav-links a:hover{
  background:var(--ivory);
}

/* ---------------------------------
   CENTER: Logo
----------------------------------- */
.nav-logo{
  grid-column:2;
  display:flex;
  justify-content:center;
  align-items:center;
}

.nav-logo img{
  display:block;
  width:110px;
  height:110px;
  object-fit:contain;
}

/* ---------------------------------
   RIGHT: Icons
----------------------------------- */
.nav-right{
  grid-column:3;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:16px;
}

.locale{
  font:600 13px var(--font-body);
  opacity:0.85;
}

.icon{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:34px;
  height:34px;
  border-radius:100px;
  color:var(--ink);
  text-decoration:none;
}

.icon:hover{
  background:var(--ivory);
}

/* ---------------------------------
   HAMBURGER BUTTON
----------------------------------- */

.nav-toggle{
  display:none;              /* shown via media query */
  position:relative;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.12);
  background:var(--vellum);
  cursor:pointer;
  padding:0;
  font-size:0;               
  line-height:0;
}

.nav-toggle span{
  position:absolute;
  left:50%;
  width:18px;
  height:2px;
  background:var(--ink);
  border-radius:999px;
  transform:translateX(-50%);
  transition:transform .2s ease, opacity .2s ease, top .2s ease;
}


/* three bars stacked */
.nav-toggle span:nth-child(1){ top:11px; }
.nav-toggle span:nth-child(2){ top:17px; }
.nav-toggle span:nth-child(3){ top:23px; }

/* OPEN STATE = X */
.nav-toggle.is-open span:nth-child(1){
  top:17px;
  transform:translateX(-50%) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2){
  opacity:0;
}
.nav-toggle.is-open span:nth-child(3){
  top:17px;
  transform:translateX(-50%) rotate(-45deg);
}
/* ---------------------------------
   MOBILE MENU PANEL
----------------------------------- */

.mobile-menu{
  display:none;
  background:var(--vellum);
  border-top:1px solid rgba(0,0,0,.05);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  padding:12px 20px 16px;
  gap:8px;
}

.mobile-nav a{
  font:600 14px var(--font-body);
  color:var(--ink);
  text-decoration:none;
  padding:10px 6px;
  border-radius:8px;
}

.mobile-nav a:hover{
  background:var(--ivory);
}

/* Show mobile panel when JS adds nav-open to body */
body.nav-open .mobile-menu{
  display:block;
}

/* ==========================================
   RESPONSIVE: ENABLE HAMBURGER FROM 1024px
========================================== */
@media (max-width:1024px){

  .locale{ display:none; }

  /* Hide desktop links */
  .nav-links{
    display:none;
  }

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

  /* 3 columns: hamburger | centered logo | icons */
  .nav-row{
    grid-template-columns:auto 1fr auto;
  }

  .nav-left{
    padding-left:14px;
    gap:14px;
  }

  .nav-logo img{
    width:80px;
    height:80px;
  }
}

/* Smaller phones */
@media (max-width:560px){

  .nav-row{ min-height:72px; }

  .nav-logo img{
    width:64px;
    height:64px;
  }
}



/* Layout */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 24px;
}

[class*="col-"] {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .col-md-6 { grid-column: span 6; }
}

@media (min-width: 1024px) {
  .col-lg-5 { grid-column: span 5; }
  .col-lg-7 { grid-column: span 7; }
}

/* Promo */
.promo-bar {
  background: rgba(184,155,115,0.6);
  color: var(--ink);
  text-align: center;
  padding: 10px 16px;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);

  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.promo-strong {
  font-weight: 600;
}




/* HERO */
.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 85vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("Woven Petals_Product Images/IMG_1578.JPEG")
              center top / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 3.5rem 1rem 4rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto 8px;
  color: var(--vellum);              
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.hero-divider {
  width: 70px;
  height: 2px;
  background: var(--antique-gold);
  border-radius: 2px;
  margin: 10px auto 18px;
  opacity: 0.9;
}

.hero-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: rgba(247, 243, 238, 0.92); 
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: all 0.25s ease;
}

/* Hover */
.hero-btn:hover {
  background: var(--antique-gold);
  color: var(--vellum);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transform: translateY(-2px);
}

/* Desktop framing */
@media (min-width: 900px) {
  .hero-media {
    /* fine-tune how high Ava sits */
    background-position: 40% 4%;   
  }

  .hero-content {
    transform: translateY(150px);   
  }
}



/* ABOUT */
.about {
  padding: 110px 0;
  background: var(--parchment);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid var(--ivory);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.about-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  margin: 0 0 18px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--antique-gold);
  border-radius: 2px;
  margin: 0 0 26px;
}

.about-copy p {
  color: var(--stone);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 52ch;
}

/* PRODUCTS */
.featured {
  padding: 110px 0;
  background: var(--paper);
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.6vw, 2.5rem);
  text-align: left;
  margin: 0 0 28px;
}

.product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(1, minmax(0,1fr));
}

@media (min-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--vellum);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.product-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: opacity .35s ease, transform .35s ease;
  display: block;
}

.product-media .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-media:hover .img-hover {
  opacity: 1;
}

.product-media:hover .img-main {
  opacity: 0;
  transform: scale(1.02);
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 14px 0 4px;
}

.product-meta {
  color: var(--stone);
  margin: 0 0 6px;
}

.product-price {
  color: var(--umber);
  font-weight: 700;
  margin: 0;
}

/* View All button wrapper */
.featured-cta {
  margin-top: 40px;
  text-align: center;
}

/* View All button style  */
.btn-outline {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  background: var(--vellum);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background: var(--antique-gold);
  color: var(--vellum);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transform: translateY(-2px);
}

/* PETALS IN REAL LIFE / REVIEWS */
.petals-irl {
  padding: 110px 0;
  background: var(--parchment); 
}

.petals-irl .section-head h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Grid of IG posts */
.petals-grid {
  display: grid;
  gap: 32px;
  justify-items: center;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .petals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .petals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Each IG-style card */
.petals-card {
  max-width: 360px;         
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.10);
}

.petals-card img {
  display: block;
  width: 100%;
  height: auto;
}


/* JOURNAL */
.journal {
  padding: 110px 0;
  background: var(--ivory);
}

.journal-row {
  align-items: center;
}

.journal-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--ivory);
}

.journal-copy h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 0 0 10px;
}

.journal-copy p {
  color: var(--stone);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 48ch;
}

.btn {
  display: inline-block;
  margin-top: 14px;
  padding: .6rem 1rem;
  background: var(--umber);
  color: var(--vellum);
  text-decoration: none;
  border-radius: 10px;
}

/* FOOTER */
.site-footer {
  background: var(--parchment);
  border-top: 1px solid rgba(0,0,0,.06);
  color: var(--ink);
  padding-top: 60px;
  padding-bottom: 28px; 
  font-size: 0.95rem;
}

/* GRID LAYOUT */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1fr));
  gap: 56px;
  align-items: flex-start;
}

/* COLUMNS */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-brand {
  gap: 16px;
}

/* BRAND TEXT */
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.footer-tagline {
  margin: 4px 0 18px;
  color: var(--stone);
}

/* SOCIAL */
.footer-follow {
  font-weight: 500;
  margin-bottom: 6px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-social-row a img {
  display: block;
  width: 32px;
  height: 32px;
}

/* NEWSLETTER */
.footer-newsletter {
  margin-top: 10px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 0 0 6px;
}

.footer-news-text {
  color: var(--stone);
  max-width: 26rem;
  margin: 0 0 12px;
}

.footer-form {
  max-width: 280px;
}

.footer-form input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* LINKS IN RIGHT COLUMNS */
.footer-col a {
  text-decoration: none;
  color: var(--ink);
}

.footer-col a:hover {
  color: var(--stone);
}

/* COPYRIGHT ROW */
.footer-bottom {
  margin-top: 32px;
}

.footer-copy {
  text-align: right;
  color: var(--stone);
  font-size: 0.9rem;
}

/* Visually hidden label for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    text-align: center;
  }
}

/* =========================================
   PRODUCT PAGE / COLLECTION PAGE STYLES
   ========================================= */

/* ========== COLLECTION HERO ========== */

.collection-hero {
  background: var(--paper); 
  padding: 72px 0 80px;
}

.collection-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.collection-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.collection-hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--ink);
  text-align: left;
}

.collection-hero-divider {
  width: 120px;
  height: 2px;
  background: var(--antique-gold);
  margin-bottom: 32px;
}

.collection-hero-subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stone);
}

/* Stack on mobile */
@media (max-width: 900px) {
  .collection-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .collection-hero-copy h1,
  .collection-hero-subtitle {
    text-align: center;
  }
  .collection-hero-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== PRODUCT SLIDER ========== */

.collection-products {
  padding: 96px 0 72px;
  background: var(--parchment);
}

.product-slider {
  display: flex;
  align-items: center;
  gap: 32px;
}


.product-track {
  display: flex;
  gap: 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 24px;
}


.product-track::-webkit-scrollbar {
  height: 6px;
}
.product-track::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 999px;
}

.product-card {
  flex: 0 0 min(420px, 100% - 3rem);
  background: var(--vellum);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.product-media img {
  width: 100%;
  height: 480px;      
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-content {
  padding: 24px 28px 28px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--ink);
}

.product-meta {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: var(--stone);
}

.product-price {
  margin: 0 0 18px;
  font-weight: 600;
  color: var(--ink);
}

/* Button */
.btn-add-to-cart {
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  background: var(--rose);
  color: var(--vellum);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease,
              box-shadow 0.15s ease;
}

.btn-add-to-cart:hover {
  background: #b8867f; 
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* Arrow buttons */
.product-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.15s ease,
              box-shadow 0.15s ease;
}

.product-arrow:hover {
  background: var(--antique-gold);
  color: var(--vellum);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Center arrows */
@media (max-width: 768px) {
  .product-slider {
    flex-direction: column;
    align-items: center;
  }

  .product-track {
    width: 100%;
  }
}


