body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background-image: url('assets/images/wood bg.png');
  background-size: auto;
  background-repeat: repeat;
  background-position: center top;
  background-attachment: scroll;
  color: #5c5c5c;
  cursor: url('assets/cursors/faeria-cursor.png'), auto;
  padding: 0.5rem;
}

/* Music toggle button */
#music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
}
#music-toggle img {
  width: 100%;
  max-width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
#music-toggle:hover img {
  transform: rotate(60deg) scale(1.1);
}

/* Header */
.main-header {
  text-align: center;
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 1rem;
  text-shadow: 1px 1px hsl(291, 100%, 96%);
  box-shadow: 0 0 20px rgba(255, 200, 230, 0.4);
  background: #fffee6;
  padding: 4rem 1rem;
  margin: 2rem auto;  
  max-width: 1000px;
  border: 4px double #ffa9c3;
  border-radius: 30px;
}

h1 {
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 4rem;
  color: #f48fb1;
  margin: 0.5rem;
  text-align: center;
}

.intro-text {
  text-align: center;
  font-family: 'Love Ya Like A Sister', cursive;
  color: #8cb44b;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 1px 1px #fceaff;
 
}

.contact-header {
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 2.5rem;
  color: #ffa9c3;
  text-shadow: 1px 1px hsl(291, 100%, 96%);
  text-align: center;
}

.contact-box {
  text-align: center;
}

.top-nav {
   display: flex;
    justify-content: center; 
    align-items: center;
     gap: 1rem; /* space between buttons */ 
     padding: 1rem; 
     margin-top: 1rem;
      z-index: 9999;
       position: relative; /* stays above content, no clipping */ 
border: 4px double #ffa9c3;     
border-radius: 25px; 
padding: 1rem;
 background: #deffd8;
      }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-button { 
background: #ffa9c3;
background-repeat: no-repeat;
background-position: center; 
display: flex;
justify-content: center; 
align-items: flex-end; 
text-decoration: none; 
color: #80593f;
font-weight: bold; 
font-size: 1.3rem; 
border-radius: 25px;
border: 2.5px dashed #80593f; 
padding: 1.1rem;
transition: transform 0.2s ease, background 0.2s ease;
      }

.nav-button:hover {
  transform: scale(1.25);
  background: #ffd3e4;
  cursor: url('assets/cursors/faeria-cursor-help.png'), pointer;
}

.nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  height: 20%;
}

/* Mobile adjustments */
@media (max-width: 600px) {

  .main-header {
    padding: 1.5rem 1rem;
width: 100%;
background-size: 100% auto;
  }

  .h1 {
    font-size: 1.3rem;
  }

  .intro-text {
    font-size: 0.1rem;
  }

.top-nav { 
  padding: 0.5rem 0;
   gap: 0.7rem; /* same spacing as desktop */ }

  .nav-button {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }

  /* Sidebars stack on mobile */
  main {
    flex-direction: column;
    padding: 10%;
  }
  .sidebar-left,
  .sidebar-right {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.latest-news {
  color: #80593f;
   font-family: 'Love Ya Like A Sister', cursive;
}

/* Page wrapper */
.page-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.5rem;
  position: relative;
   border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

/* Main layout */
main {
  display: flex;
  padding: 20px;
}

/* Sidebars */
.sidebar-left,
.sidebar-right {
  width: 20%;
  padding: 10px;
  background-color: #fff0f5;
  border-radius: 10px;
  box-shadow: 0 0 10px #8ED8C1;
  color: #80593f;
}

.sidebar-left ul,
.checklist {
  list-style: none;
  padding-left: 0;
}

.sidebar-left li {
  margin-bottom: 10px;
  font-weight: bold;
}

.sidebar-left ul ul li {
  font-weight: normal;
  margin-left: 15px;
}

/* Side photo */
.side-photo {
  position: absolute;
  top: -40px;
  right: 60px;
  width: 250px;
  height: auto;
  border-radius: 20px; /* soft corners */
  z-index: 999;
}

.site-notice {
font-size: 1.3rem;
color: #5c5c5c;

}

/* Social buttons */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: -1rem;   /* pulls buttons closer to header */
  margin-bottom: 2rem;
}

.social-btn {
  padding: 0.3rem 0.6rem;
  border-radius: 18px;
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  color: #80593f;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Individual pastel colors */
.social-btn.email {
  background-color: #ffa9c3; /* pink */
}
.social-btn.patreon {
  background-color: #ffa9c3;
}
.social-btn.instagram {
  background-color: #ffa9c3;
}

.social-btn.youtube {
  background-color: #ffa9c3; /* red */
}

/* Hover effect */
.social-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(200, 150, 220, 0.3);
  cursor: url('assets/cursors/faeria-cursor-help.png'), pointer;
}


/* Content area */
.content {
  width: 60%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px #ffd6e8;
  margin: 0 20px;
}

.content h2 {
  font-family: 'Love Ya Like A Sister', cursive;
  text-align: center;
  color: #ffa9c3;
  margin-bottom: 20px;
}

/* Checklist */
.checklist li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Widget */
.widget {
  margin-bottom: 20px;
  background-color: #ffe6f0;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 5px #ffb3d9;
  font-family: 'Love Ya Like A Sister', cursive;
}

.widget h3 {
  margin-top: 0;
  color: #fa96dc;
}

/* Section headers */
.section-title {
  font-size: 1.6rem;
  color: #80593f;
  margin: 2rem 0 1rem;
  font-family: 'Cursive', sans-serif;
}

/* Gallery section */
.gallery-section {
  flex: 1 1 520px; /* allows section to grow but keeps it cozy */
  text-align: center;
  padding: 1rem;
  margin-bottom: 2rem;
}

/* Home previews */
.home-previews {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap; /* stack on small screens */
  margin: 2rem auto;
  max-width: 1200px;
  align-items: stretch;
}

/* Featured gallery + shop preview */
.featured-gallery,
.shop-preview {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: #80593f;
  margin: 2rem auto;
  flex: 1;
  min-height: 400px;
  background-image: url("assets/images/pastel wood bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; /* for overlay */
   font-family: 'Love Ya Like A Sister', cursive;
}

.testimonials {
background-color: #ffe6f0;
 position: relative; /* for overlay */
 font-family: 'Love Ya Like A Sister', cursive;
 border-radius: 12px;
}

.testimonials-title {
  font-family:  'Love Ya Like A Sister', cursive;
  color: #80593f;
  text-align: center;
}

.testimonial-submit {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: #ffeef5;
  border-radius: 20px;
  border: 2px dashed #fa96c8;
  color: #8cb44b;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-submit:hover {
transform: scale(1.1);
box-shadow: 0 4px 12px rgba(200, 150, 220, 0.3);
}



.featured-gallery h2,
.featured-gallery .gallery-grid {
  position: relative;
  z-index: 1; /* ensures text/cards sit above overlay */
}

/* Gallery grid */
.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Cards */
.product-card {
  background-color: #feffed;
  border: 2px dashed #8cb44b;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(200, 150, 220, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
   font-family: 'Love Ya Like A Sister', cursive;
   color: #80593f;
}

.product-card p {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #80593f;
  font-family: 'Love Ya Like A Sister', cursive;
}

.art-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(200, 150, 220, 0.2);
}

.gallery-card img,
.art-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* Shop button */
.shop-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  background-color: #fa96c8;
  color: #fff;
  font-weight: bold;
  font-family: 'Love Ya Like A Sister', cursive;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(200, 150, 220, 0.3);
}

.buy-button {
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  font-family: 'Love Ya Like A Sister', cursive;
}

/* Shop card images */
.shop-card img {
  max-width: 170px;   /* sets maximum width */
  height: auto;       /* keeps proportions */
  border-radius: 8px; /* optional cozy rounded corners */
  margin-bottom: 0.5rem;
}

.shop-section {
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff0f5; /* soft pastel background */
  border: 2px dashed #fceaff; /* stitched vibe */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(200, 150, 220, 0.1);
}

.shop-section h2.section-title {
  font-family: 'Love Ya Like A Sister', cursive;
  color: #fa96dc;
  text-align: center;
  margin-bottom: 1.5rem;
}


/* Default: 2 cards per row */
.card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

/* Mobile: 1 card per row */
@media (max-width: 700px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}

/* Large screens: 3 cards per row */
@media (min-width: 1200px) {
  .card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Art card styling */
.art-card {
  background-color: #feffed;
  border: 2px dashed #8cb44b;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(200, 150, 220, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.art-card img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.art-card h2 {
  font-size: 1.2rem;
  color: #fa96dc;
  margin: 0.5rem 0 0;
  font-family: 'Cursive', sans-serif;
}

/* Creator section */
.creator-section {
  background-image: url("assets/images/pastel wood bg.png");
  border: 2px dashed #ff99cc;
  border-radius: 12px;
  padding: 2rem;
  font-family: 'Love Ya Like A Sister', cursive;
  box-shadow: 0 0 10px #ffd6e7;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  color: #80593f;
  font-size: 1.1rem;
}

.creator-section h2 {
  font-family: 'Love Ya Like A Sister', cursive;
  color: #80593f;
}

/* Product grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Product cards */
.product-card {
   background-image: url("assets/images/pastel wood bg.png");
  border: 2px dashed #8cb44b;
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(200, 150, 220, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 200px; 
  min-height: 300px;
  font-size: 0.9rem;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(200, 150, 220, 0.2);
}

.product-card img {
  width: 70%;
  max-width: 400px;
  height: auto;
  object-fit: cover;   /* crops nicely without stretching */
  border-radius: 8px;
  display: block;
  margin: 0 auto 0.5rem auto;
}

/* Polaroid cards */
.polaroid {
  background: #fff;
  padding: 10px 10px 25px 10px; /* extra bottom edge */
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: inline-block;
  margin: 1rem;
  border-radius: 4px;
  transition: transform 0.3s ease;
  position: relative;
}

.polaroid img {
  max-width: 330px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.polaroid .caption {
  font-family: 'Love Ya Like A Sister', cursive;
  font-size: 1.2rem;
  color: #ffa9c3;
  text-align: center;
  margin-top: 0.5rem;
}

/* Tilt variations */
.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }
.tilt-center { transform: rotate(0deg); }

/* Hover effect: straighten + zoom */
.polaroid:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Cozy footer */
.cozy-footer {
  background-color: #fff0f5; /* soft pink */
  color: #80593f;           /* muted lavender */
  text-align: center;
  padding: 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  border-top: 2px dashed #fceaff; /* stitched vibe */
  box-shadow: 0 -2px 8px rgba(200, 150, 220, 0.1);
}

.cozy-footer a {
  color: #8cb44b;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: 500;
}

.cozy-footer a:hover {
  text-decoration: underline wavy #f48fb1;
}

/* Tablet screens (up to 900px wide) */
@media (max-width: 900px) {
  .featured-gallery,
  .shop-preview {
    min-height: auto;         /* let height adjust naturally */
    width: 100%;              /* full width */
  }

  .gallery-grid {
    gap: 1rem;
    padding: 1rem;
  }

  .gallery-card,
  .art-card,
  .product-card {
    max-width: 90%;           /* cards take most of screen width */
    margin: 0 auto;
  }

  .main-header {
    padding: 2rem;
    background-size: contain; /* shrink header background */
  }

  h1 {
    font-size: 1.8rem;
    top: 20%;
  }

  .intro-text {
    font-size: 0.9rem;
    top: 45%;
  }
}

/* Mobile screens (up to 600px wide) */
/* 🌸 MOBILE FIXES — replaces your old @media (max-width: 600px) */
@media (max-width: 900px) {

  body {
    padding: 0.5rem;
    background-attachment: scroll;
  }

  /* HEADER FIXES */
  .main-header {
    padding: 2rem 1rem;
    width: 100%;
    background-size: 100% auto;
    min-height: 180px;
  }

  h1 {
    font-size: 1.6rem;
    top: 15%;
  }

  .intro-text {
    font-size: 0.8rem;
    top: 35%;
    max-width: 90%;
  }

  .stitch-divider {
    width: 70%;
    margin-top: 3rem;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 0.3rem;
    top: 65%;
  }

  .nav-button {
    width: 70px;
    height: 40px;
    font-size: 0.75rem;
  }

  /* MAIN LAYOUT FIXES */
  main {
    flex-direction: column;
    padding: 10px;
  }

  .sidebar-left,
  .sidebar-right {
    width: 100%;
    margin-bottom: 1rem;
  }

  .home-previews {
    width: 100%;
  }

  .gallery-card img,
  .shop-card img {
    width: 100%;
  }

  .shop-btn,
  .gallery-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .cozy-footer {
    font-size: 0.8rem;
    padding: 1rem;
  }
}

/* 🌼 LARGE SCREENS (1200px and up) — keep this part */
@media (min-width: 1200px) {
  .gallery-grid {
    gap: 3rem;
  }

  .card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main-header {
    max-width: 1200px;
    padding: 5rem;
  }

  h1 {
    font-size: 2.6rem;
  }
}