/* CSS Document */
body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #F5F0E4;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ===== Header / Navigation ===== */

.site-header {
  background: #f7f2fb;
  border-bottom: 1px solid #eee7dc;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  color: #6c3e8e;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav li {
  display: flex;
  align-items: center;
}

.main-nav a {
  display: inline-block;
  text-decoration: none;
  color: #6c3e8e;
  padding: 8px 10px;
  border-radius: 10px;
}

.main-nav a:hover {
  background: #e8f4f0;
}

/* ===== Responsive (Phone) ===== */

.nav-toggle {
  display: none;
}
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 6px;
  }

  .header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== Homepage Layout ===== */

.site-content { padding: 0; }

.hero {
  padding: 56px 0;
  background: #e8f4f0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 10px 0;
  font-size: 44px;
  line-height: 1.1;
  color: #6c3e8e;
}

.lead {
  margin: 0 0 18px 0;
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card-title {
  margin: 0;
  font-weight: bold;
  color: #6c3e8e;
  font-size: 18px;
}

.hero-card-sub {
  margin: 8px 0 0 0;
  color: #555;
}

/* Sections */
.section { padding: 44px 0; }
.section-soft { background: #fff7ef; }

.section-head {
  margin-bottom: 18px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Cards / tiles */
.card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 22px;
}

.center { text-align: center; }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tile {
  display: block;
  text-decoration: none;
  color: #6c3e8e;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.tile:hover { background: #e8f4f0; }

.checklist {
  margin: 10px 0 0 18px;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: #6c3e8e;
  text-decoration: none;
}

.text-link:hover { text-decoration: underline; }

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  background: #6c3e8e;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #6c3e8e;
}

.btn:hover { opacity: 0.95; }

.btn-outline {
  background: transparent;
  color: #6c3e8e;
  border: 1px solid #6c3e8e;
}

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.pill {
  background: #e8f4f0;
  color: #6c3e8e;
  border: 1px solid #cfe6dc;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
}

.small { font-size: 14px; color: #555; }

/* Responsive */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 34px; }
  .section-grid { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr 1fr; }
}
	/* ===== Bunnyland Polish Layer ===== */

/* softer overall text */
body {
  line-height: 1.6;
}

/* headings: warm storybook feel */
h1, h2, h3 {
  color: #6c3e8e;
  letter-spacing: 0.2px;
}

h1 {
  font-size: 46px;
  margin: 0 0 10px 0;
}

h2 {
  font-size: 28px;
  margin: 0 0 10px 0;
}

h3 {
  font-size: 20px;
  margin: 0 0 8px 0;
}


/* nav spacing + softer hover */
.main-nav a {
  font-weight: 600;
}

.main-nav a:hover {
  background: #eaf6f1;
}

/* hero: gentle watercolor-like gradient */
.hero {
  background: linear-gradient(180deg, #e8f4f0 0%, #f5f0e4 80%);
  padding: 72px 0;
}

/* hero card becomes a “storybook panel” */
.hero-card {
  border-radius: 18px;
  border: 1px solid #e8e2d7;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* cards: soft shadow + roundness */
.card {
  border-radius: 18px;
  border: 1px solid #eee7dc;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

/* tiles: more playful + consistent */
.tile {
  font-weight: 600;
  border-radius: 16px;
  border: 1px solid #eee7dc;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

.tile:hover {
  transform: translateY(-1px);
}

/* buttons: a little more premium */
.btn {
  box-shadow: 0 10px 18px rgba(47,111,79,0.18);
}

.btn-outline {
  box-shadow: none;
}

/* links: stop looking like default blue links */
a {
  color: #6c3e8e;
}

a:visited {
  color: #6c3e8e;
}

/* sections feel airier */
.section {
  padding: 52px 0;
}

.section-soft {
  background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
}

/* mobile tuning */
@media (max-width: 768px) {
  h1 { font-size: 34px; }
  .hero { padding: 52px 0; }
}
/* ===== Simple Home: 1 big image + 3 small images ===== */

.site-content { padding: 0; }

.home-hero {
  padding: 24px 0 10px 0;
}

.home-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #eee7dc;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);

  padding: 10px;          /* small breathing room */
  background: #ffffff;    /* white frame effect */
	
	opacity: 1;
  transition: opacity 1s ease-in-out;
	
}

.home-tiles {
  padding: 14px 0 44px 0;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;   /* ? add */
}

.tile-img {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #eee7dc;
  border-radius: 18px;
  padding: 12px;   /* 👈 add this */
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
	
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tile-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #ffffff;
}
.tile-tag{
  font-size:13px;
  color:#666;
  display:block;
  margin-top:4px;
  line-height:1.3;
}

.tile-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  background: #eaf6f1;
}

@media (max-width: 768px) {
  .tiles-grid { grid-template-columns: 1fr; }
  .tile-img img { height: auto; }
}

.brand-tagline {
  text-align: center;
  font-size: 26px;
  color: #6c3e8e;
  margin: 40px 0 25px 0;
  font-style: italic;
}
.tile-img span {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #6c3e8e;
  margin-top: 6px;
}
.home-callout {
  text-align: center;
  font-size: 24px;
  color: #6c3e8e;
  margin: 30px 0 50px 0;
  font-weight: 600;
}
/* ===== Bunnyland Music Page ===== */

.music-hero{
  padding: 10px 0 18px 0;
}

.music-hero-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:24px;
  align-items:center;
}

.music-cover-img{
  width: 100%;
  max-height: 352px;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #eee7dc;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  padding: 10px;
  background: #ffffff;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.music-album-title{
  text-align: center;
  font-size: 20px;
  color: #6c3e8e;
  margin-top: 10px;
  font-weight: 700;
}

.music-album-sub{
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

.music-player-note{
  font-size:22px;
  color:#6c3e8e;
  margin-top:12px;
  text-align:center;
}
.music-downloads{
  padding: 0 0 40px 0;
}

.music-downloads-head{
  text-align: center;
  margin: 10px 0 8px 0;
}

.music-downloads-intro{
  text-align: center;
  color: inherit;
  margin-bottom: 18px;
}

/* Instruction line under album covers */
.music-instructions{
  text-align:center;
  font-size:16px;
  margin:15px 0 25px 0;
  color:inherit;
}

.download-list{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
}

.download-list li{
  background: #ffffff;
  border: 1px solid #eee7dc;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 10px 0;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

.download-list a{
  text-decoration: none;
  font-weight: 600;
}

.download-list a:hover{
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px){
  .music-hero-grid{
    grid-template-columns: 1fr;
  }
  #spotifyPlayer{
    height: 352px;
  }
}

.site-footer {
  background: #f7f2fb;   /* soft lavender tint */
  padding: 40px 0;
  margin-top: 60px;
  border-top: 1px solid #eee7dc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-left p {
  margin: 0;
  font-size: 14px;
  color: #6c3e8e;
}

.footer-right a {
  margin-left: 22px;
  text-decoration: none;
  font-size: 14px;
  color: #6c3e8e;
}

.footer-right a:hover {
  background: #eaf6f1;
  padding: 4px 8px;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right a {
    margin: 8px;
  }
}  /* ? add this */
/* ? CLOSE THE MEDIA QUERY HERE */
/* ===== Books Page Portrait Tiles ===== */

.book-tiles .tile-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


	/* ===== BOOKS PAGE: portrait tiles only ===== */
.book-tiles .tile-img {
  padding: 6px;            /* keeps a little breathing room */
}

/* BOOKS PAGE: portrait covers (responsive, not too tall) */
.book-tiles .tile-img img {
  width: 100%;
  height: auto;
  display: block;
}
.book-card{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.amazon-button{
  display:inline-block;
  margin-top:10px;
  background:#ff9900;
  color:#111 !important;
  font-weight:600;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  text-align:center;
}

.amazon-button:hover{
  background:#e68a00;
}
/* ===== Music Instruction Color Fix ===== */

.music-downloads-intro{
  text-align:center;
  color:#6c3e8e !important;
  margin-bottom:18px;
}

.music-instructions{
  color:#6c3e8e;
}
.brand-tagline {
  text-align: center;
  font-size: 28px;
  color: #6c3e8e;
  margin: 40px 0 25px 0;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.5px;
}
/* ===== Meet The Bunnies Page ===== */
.bunny-tiles{
  grid-template-columns: repeat(4, 1fr);
}

/* Mobile */
@media (max-width:768px){
  .bunny-tiles{
    grid-template-columns: repeat(2,1fr);
  }
}
/* ===== Individual Bunny Page ===== */

.bunny-single{
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.bunny-description{
  text-align: center;
  max-width: 600px;
  margin: 30px auto 60px auto;
  font-size: 18px;
  line-height: 1.6;
  color: #6c3e8e;
}
.bunny-single .tile-img{
  padding: 20px;
}

.bunny-single .tile-img img{
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
/* Bunny character hover zoom */

.bunny-single .tile-img img{
  transition: transform 0.4s ease;
}


/* ===== Bunny Character Hover Animation ===== */

.bunny-single .tile-img{
  transition: transform 0.35s ease;
}

.bunny-single .tile-img img{
  transition: transform 0.35s ease;
}

.bunny-single .tile-img:hover{
  transform: translateY(-6px);
}

.bunny-single .tile-img:hover img{
  transform: scale(1.05);
}
.about-page{
  padding: 40px 0 60px;
}

.about-wrap{
  max-width: 960px;
}

.about-intro,
.about-section,
.creator-section,
.about-links{
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.about-intro h1,
.about-section h2,
.creator-section h2,
.about-links h2{
  color: #6c3e8e;
  margin-top: 0;
  margin-bottom: 16px;
}

.about-intro p,
.about-section p,
.creator-text p{
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-closing{
  font-weight: bold;
  color: #6c3e8e;
  margin-bottom: 0;
}

.creator-card{
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.creator-photo{
  flex: 0 0 260px;
}

.creator-photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid #eee7dc;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  background: #fff;
}

.creator-text{
  flex: 1 1 420px;
}

.creator-text h3{
  margin-top: 0;
  color: #6c3e8e;
  font-size: 28px;
}

.about-links-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-link-card{
  display: block;
  background: #fdfaf4;
  border: 1px solid #eee7dc;
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-link-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.about-link-title{
  display: block;
  font-weight: bold;
  font-size: 20px;
  color: #6c3e8e;
  margin-bottom: 8px;
}

.about-link-text{
  display: block;
  line-height: 1.6;
}

@media (max-width: 900px){
  .about-links-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .about-intro,
  .about-section,
  .creator-section,
  .about-links{
    padding: 22px;
  }

  .creator-card{
    flex-direction: column;
  }

  .creator-photo{
    flex: 0 0 auto;
    max-width: 320px;
  }

  .creator-text h3{
    font-size: 24px;
  }
}
/* =====================================
   CONTACT PAGE
   ===================================== */

.contact-page{
  padding: 40px 0 60px;
}

.contact-wrap{
  max-width: 960px;
}

.contact-intro,
.contact-section{
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.contact-intro h1,
.contact-section h2{
  color: #6c3e8e;
  margin-top: 0;
  margin-bottom: 16px;
}

.contact-intro p,
.contact-section p,
.contact-card-text p{
  line-height: 1.75;
  margin-bottom: 16px;
}

.contact-card{
  background: #fdfaf4;
  border: 1px solid #eee7dc;
  border-radius: 18px;
  padding: 24px;
}

.contact-card-text h3{
  margin-top: 0;
  margin-bottom: 8px;
  color: #6c3e8e;
  font-size: 28px;
}

.contact-card a{
  color: #6c3e8e;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover{
  text-decoration: underline;
}

.contact-links-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-link-card{
  display: block;
  background: #fdfaf4;
  border: 1px solid #eee7dc;
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.contact-link-title{
  display: block;
  font-weight: bold;
  font-size: 20px;
  color: #6c3e8e;
  margin-bottom: 8px;
}

.contact-link-text{
  display: block;
  line-height: 1.6;
}

@media (max-width: 900px){
  .contact-links-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .contact-intro,
  .contact-section{
    padding: 22px;
  }

  .contact-card-text h3{
    font-size: 24px;
  }
}
/* =====================================
   VIDEOS PAGE
   ===================================== */

.videos-page{
  padding: 40px 0 60px;
}

.videos-wrap{
  max-width: 960px;
}

.videos-hero-card,
.videos-coming-card,
.videos-placeholder-card,
.videos-links-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.videos-hero-card h1,
.videos-coming-card h2,
.videos-links-card h2{
  color: #6c3e8e;
  margin-top: 0;
  margin-bottom: 16px;
}

.videos-hero-card p,
.videos-coming-card p{
  line-height: 1.75;
  margin-bottom: 16px;
}

.videos-lead{
  font-size: 24px;
  font-weight: bold;
  color: #6c3e8e;
}

.videos-feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.videos-feature-box{
  background: #fdfaf4;
  border: 1px solid #eee7dc;
  border-radius: 18px;
  padding: 20px;
}

.videos-feature-box h3{
  margin-top: 0;
  margin-bottom: 10px;
  color: #6c3e8e;
  font-size: 22px;
}

.videos-feature-box p{
  margin: 0;
  line-height: 1.6;
}

.video-placeholder{
  background: linear-gradient(180deg, #f7f1e6 0%, #efe4cf 100%);
  border: 2px dashed #d7c6a7;
  border-radius: 18px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.video-placeholder-inner{
  max-width: 500px;
}

.video-placeholder-label{
  display: inline-block;
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  color: #6c3e8e;
}

.videos-links-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.videos-link-card{
  display: block;
  background: #fdfaf4;
  border: 1px solid #eee7dc;
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.videos-link-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.videos-link-title{
  display: block;
  font-weight: bold;
  font-size: 20px;
  color: #6c3e8e;
  margin-bottom: 8px;
}

.videos-link-text{
  display: block;
  line-height: 1.6;
}

@media (max-width: 900px){
  .videos-feature-grid,
  .videos-links-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .videos-hero-card,
  .videos-coming-card,
  .videos-placeholder-card,
  .videos-links-card{
    padding: 22px;
  }

  .videos-lead{
    font-size: 22px;
  }

  .video-placeholder-label{
    font-size: 24px;
  }
}
.home-callout{
  text-align:center;
  font-size:20px;
  margin:30px 0;
}

.home-callout a{
  color:#6c3e8e;
  text-decoration:none;
  font-weight:600;
}

.home-callout a:hover{
  text-decoration:underline;
}
/* ===== About Page Learning Table ===== */
.table-wrap{
  overflow-x:auto;
  margin-top:20px;
}

.learning-table{
  width:100%;
  border-collapse:collapse;
  background:#fffdf8;
  border:1px solid #eee7dc;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.learning-table th{
  background:#6c3e8e;
  color:#ffffff;
  text-align:left;
  padding:14px 16px;
  font-size:16px;
}

.learning-table td{
  padding:14px 16px;
  border-top:1px solid #eee7dc;
  line-height:1.6;
  vertical-align:top;
}

.learning-table tr:nth-child(even) td{
  background:#fdfaf4;
}

@media (max-width: 700px){
  .learning-table th,
  .learning-table td{
    padding:10px 12px;
    font-size:14px;
  }
}
.contact-form{
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
}

.contact-form button{
  background: #6c3e8e;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover{
  background: #5a3276;
}