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

/* BODY */
body {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.7;
    text-align: center;
    background-image: url('../images/sienna6x93.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #ffffff;
}

/* NAVIGATION */
nav {
    position: fixed;
    top:0; width:100%;
    z-index:999;
    padding:12px 0;
    text-align:center;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s, padding 0.3s;
}
nav.shrink { padding:6px 0; background-color: rgba(255,255,255,0.95); }

.nav-container {
    display:flex;
    justify-content:center;
    align-items:center;
    max-width:1100px;
    margin:0 auto;
    gap:20px;
}

/* NAV MENU */
.nav-menu { 
    list-style:none; 
    display:flex; 
    gap:20px; 
}
.nav-menu a {
    text-decoration:none; 
    color:#000; 
    font-weight:bold;
    font-size:1.2rem; 
    background-color: rgba(255,255,255,0.8);
    padding:10px 20px; 
    border-radius:6px; 
    transition: all 0.3s;
    font-family:'Tw Cen MT Condensed', sans-serif;
}
.nav-menu a:hover, .nav-menu a.active { 
    background-color:#f7c6c6; 
    color:#000; 
}

/* =========================
   HAMBURGER BUTTON - TOP LEFT
========================= */

/* Hamburger button */
.hamburger {
    display: none; /* hide on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1100; /* above menu */
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger X animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hamburger button bars */
.hamburger {
  display: none; /* hide by default on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001; /* above other content */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000; /* black bars */
  border-radius: 2px;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none; /* hide menu by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 60px; /* adjust based on nav height */
    right: 20px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  .nav-menu.active {
    display: flex;
  }
}


/* MOBILE MENU (slides down from top) */
@media (max-width: 768px) {

    .hamburger {
        display: flex; /* show hamburger on mobile */
    }

    .nav-menu {
        position: fixed;
        top: 60px; /* below hamburger */
        left: 0;
        width: 100%;
        max-height: 0;       /* hidden initially */
        overflow: hidden;
        background-color: rgba(255, 255, 255, 0.97);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        transition: max-height 0.4s ease, padding 0.4s ease;
        z-index: 1050;
    }

    /* Show menu when active */
    .nav-menu.active {
        max-height: 500px; /* enough to show all menu items */
        padding: 15px 20px;
    }

    .nav-menu li {
        text-align: left;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 10px 0;
    }
}



/* SECTIONS */
section {
    padding:90px 20px; 
    max-width:1100px; 
    margin:40px auto;
    background-color: rgba(255,255,255,0.9);
    border-radius:6px; 
    position:relative; 
    text-align:center;
}
section h2 { 
    margin-bottom: 25px; 
    font-family: 'Tw Cen MT Condensed', sans-serif; 
    text-transform: uppercase;
    font-size: 2.2rem;
}

/* =========================
   HERO SECTION - FULLY SCOPED
============================= */
.hero {
    text-align: center;
    padding: 90px 20px;
    max-width: 1100px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    position: relative;
}

/* HERO TEXT ABOVE IMAGE */
.hero .hero-text-above h1 {
    font-family: 'Lora', serif;
    font-weight: bold;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: center;
}

/* FADE ANIMATION */
.hero .hero-text-above.fade-section {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 2s ease, transform 1.8s ease;
}
.hero .hero-text-above.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HERO IMAGE */
.hero .hero-image-wrapper {
    text-align: center;
    margin: 20px 0;
}

.hero .hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

/* GLOBAL FADE SECTION */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HERO TEXT BELOW IMAGE */
.hero .hero-text-below {
    text-align: center;
    padding: clamp(20px, 5vw, 40px) 20px;
}

.hero .hero-text-below.fade-section {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero .hero-text-below.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Quote */
.hero .hero-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: bold;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    line-height: 1.3;
    color: #000;
    margin-bottom: clamp(15px, 2vw, 25px);
}

/* Hero Subtitle */
.hero .hero-text-box {
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: center;
    padding: 0 10px;
}

.hero .hero-subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.5;
    margin: 0;
}

/* Main Title / Tagline */
.hero h1.tagline {
    font-family: 'Tw Cen MT Condensed', sans-serif;
    font-weight: bold;
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.3;
    margin-top: clamp(15px, 2vw, 25px);
    text-align: center;
}

/* HERO CTA BUTTON */
.hero .hero-cta {
    margin-top: 20px;
    text-align: center;
}

.hero .hero-cta.fade-section {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.5s ease, transform 1.5s ease 0.6s;
}

.hero .hero-cta.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .hero-cta .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #f7c6c6;
    color: #000;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero .hero-cta .cta-button:hover {
    background-color: #e69b9b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px;
        margin: 20px auto;
    }
    .hero .hero-image {
        max-width: 90%;
    }
    .hero .hero-text-below {
        padding: 20px 15px;
    }
    .hero .hero-quote {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 15px;
    }
    .hero .hero-text-box {
        max-width: 90%;
        padding: 0 10px;
    }
    .hero h1.tagline {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }
}

.about-text-box {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: justify;   /* default justification for body text */
    line-height: 1.7;
}

.about-text-box p {
    margin-bottom: 1.5em;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
}

/* Center the first line */
.about-text-box .about-hero-text {
    text-align: center;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
}


/* ==========================
   QUOTE SECTIONS
=========================== */
.quote-section { background:transparent; padding:40px 20px; text-align:center; max-width:900px; margin:30px auto; }
.quote-section .quote { font-style:italic; font-size:1.3rem; color:#000; line-height:1.6; opacity:0; transition: opacity 1.5s ease, transform 1.5s ease; transform:translateY(20px); }
.quote-section.visible .quote { opacity:1; transform:translateY(0); }
.quote-section .quote-author { font-style:italic; font-size:1.1rem; color:#000; margin-top:10px; opacity:0; transition: opacity 1.5s ease 0.3s, transform 1.5s ease 0.3s; transform:translateY(20px); }
.quote-section.visible .quote-author { opacity:1; transform:translateY(0); }


/* ==========================
   UNIVERSAL SAMPLE BUTTONS
========================== */

.sample-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap; /* allows clean wrapping */
}

.sample-button {
    display: inline-block;
    padding: 12px 24px;
    background: #f7c6c6;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    color: #000;
    font-size: 1.15rem;
    white-space: nowrap; /* prevents ugly word breaks */
}

.sample-button:hover {
    background: #e69b9b;
}

/* Mobile */
@media (max-width: 768px) {
    .sample-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .sample-button {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* Ensure content containers don’t restrict mobile buttons */
.sample-content-wrapper,
.sample-content,
.text-box {
    width: 100%;
    box-sizing: border-box;
}

/* Slight padding adjustment for small screens only */
@media (max-width: 768px) {
    .sample-content-wrapper {
        padding: 25px 15px;
    }
}

.sample-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px auto 60px; /* bottom margin added */
    flex-wrap: wrap;
}


/* ==========================
   SIENNA'S WORLD
=========================== */
#sienna .quote-section { margin-bottom:10px; }
#sienna p:first-of-type { margin-top:5px; }
.world-image { width:100%; max-width:700px; height:auto; display:block; margin:30px auto 0; border-radius:8px; }

/* ==========================
   CHARACTER CARDS
=========================== */
.character-grid { display:flex; flex-wrap:wrap; gap:25px; justify-content:center; }
.character-card { background:#fff; width:260px; border-radius:8px; padding:18px; text-align:center; box-shadow:0 3px 10px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s; }
.character-card:hover { transform:translateY(-5px); box-shadow:0 6px 15px rgba(0,0,0,0.2); background-color:#f7c6c6; }
.character-card h3 { margin-bottom:10px; font-family:'Tw Cen MT Condensed', sans-serif; font-size:1.45rem; text-transform:uppercase; }
.character-card p { font-size:1rem; margin:0 0 12px 0; color:#555; line-height:1.4; }
.character-card p .italic-desc { font-style:italic; color:#a33; font-size:0.95rem; margin-bottom:4px; background-color:#fde2e2; padding:2px 6px; border-radius:4px; display:inline; }
.character-card ul { text-align:left; padding-left:20px; margin:0; list-style-type:disc; }
.character-card ul li { margin-bottom:6px; font-size:0.95rem; color:#333; }

/* ==========================
   BUY BUTTONS UNIFORM
========================== */
.buy-buttons,
.buy-audio-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.buy-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ensures full height distribution */
    align-items: center;
    min-width: 220px;
    max-width: 300px;
    height: 120px;               /* fixed height for uniformity */
    padding: 14px 20px;
    background-color: #f7c6c6;
    color: #000;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.15rem;
    transition: 0.3s;
    text-align: center;
    box-sizing: border-box;
}

.buy-link:hover {
    background-color: #e69b9b;
}

.buy-link .buy-text {
    display: block;
    font-size: 1.15rem;
    line-height: 1.2;
}

.buy-link .note {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-top: 8px;
    font-weight: normal;
    text-transform: none;
    line-height: 1.2;
}

/* Coming soon button style */
.buy-link.coming-soon {
    background-color: #ccc;
    cursor: not-allowed;
}

.buy-link.coming-soon:hover {
    background-color: #bbb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .buy-buttons,
    .buy-audio-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .buy-link {
        min-width: 100%;
        max-width: 100%;
        height: auto;  /* auto height on mobile so content wraps */
        padding: 12px 15px;
        font-size: 1.1rem;
    }

    .buy-link .buy-text {
        font-size: 1.1rem;
    }

    .buy-link .note {
        font-size: 0.8rem;
    }
}
/* ==========================
   BUY BUTTONS HOLDING
========================== */

/* Existing styles stay as-is */

/* Pre-launch / disabled buy buttons */
.buy-link.disabled {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.release-note {
    text-align: center;
    font-weight: bold;
    margin-bottom: 25px;
}

/* ===========================
   Newsletter Section Fixed
=========================== */
#newsletter {
    padding: 70px 20px;                
    background-color: #f9f9f9;         
    display: flex;
    justify-content: center;
}

#newsletter .newsletter-box {
    max-width: 700px;                  
    padding: 2em 1.5em;                
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
    text-align: center;                 
}

/* Headings and paragraphs */
#newsletter .newsletter-box h2 {
    margin-top: 0;
    margin-bottom: 1em;
    font-size: clamp(1.8rem, 4vw, 2.2rem); /* scales responsively */
    color: #333;
}

#newsletter .newsletter-box p {
    font-size: clamp(0.9rem, 2.5vw, 1rem); /* scales responsively */
    line-height: 1.5;
    color: #555;
    margin-bottom: 1.2em;
}

#newsletter .newsletter-box .gdpr-note {
    font-size: clamp(0.75rem, 2vw, 0.9rem); /* scales responsively */
    color: #555;
    margin-bottom: 1.5em;
}

#newsletter .newsletter-box .gdpr-note a {
    color: #1a73e8;
    text-decoration: underline;
}

/* Subscribe button */
#newsletter .newsletter-box #subscribeButton {
    display: inline-block;
    margin: 0 auto;
    padding: 12px 24px;
    font-size: clamp(0.9rem, 2vw, 1rem); /* scales responsively */
    font-weight: bold;
    text-transform: uppercase;
    background-color: #f7c6c6; 
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#newsletter .newsletter-box #subscribeButton:hover {
    background-color: #e69b9b;
    transform: translateY(-2px);
}

/* Optional tweaks for very small screens */
@media (max-width: 480px) {
    #newsletter {
        padding: 50px 15px;
    }
    #newsletter .newsletter-box {
        padding: 1.5em 1em;
    }
}

/* FADE-IN */
.fade-section { opacity:0; transform:translateY(35px); transition:1s ease; }
.fade-section.visible { opacity:1; transform:translateY(0); }

/* ==========================
   RELEASE NOTE FADE-IN
========================== */
.release-note {
    font-family: 'Tw Cen MT Condensed', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;                  /* start hidden */
    transform: translateY(20px); /* slide up effect */
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.release-note.visible {
    opacity: 1;
    transform: translateY(0);
}

.release-note strong {
    font-size: 2.5rem;       /* large, prominent text */
    color: #e69b9b;          /* pink to match buttons */
    display: block;
    margin-bottom: 10px;
}


/* BACK TO TOP BUTTON */
#backToTop { display:none; position:fixed; bottom:35px; right:35px; background-color:#3c5aa6; color:white; border:none; padding:12px 16px; font-size:18px; border-radius:50%; cursor:pointer; }

/* BACK TO TOP BUTTON - PINK TO MATCH SAMPLE TEXT PAGE */
#backToTop { 
    display: none; 
    position: fixed; 
    bottom: 35px; 
    right: 35px; 
    background-color: #f7c6c6;  /* pink background */
    color: #000;                 /* black arrow */
    border: none; 
    padding: 12px 16px; 
    font-size: 18px; 
    border-radius: 50%; 
    cursor: pointer; 
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.3s;
}
#backToTop:hover {
    background-color: #e69b9b;   /* slightly darker pink on hover */
    transform: scale(1.1);
}

#backToTop:hover, .pink-back-to-top:hover {
    background-color: #ff85c1;  /* lighter pink on hover */
}


/* FOOTER STYLING */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(255,255,255,0.9);
    border-top: 1px solid #ccc;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    margin-right: 15px;
}

.footer-links a:last-child {
    margin-right: 0;
}

.social-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s, filter 0.3s;
}

.social-links a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}


/* ============================
   COOKIE BANNER & MODAL
============================ */
#cookieBanner {
  display:none;
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  max-width:480px;
  width:90%;
  background-color: rgba(255,255,255,0.95);
  color:#000;
  border-radius:12px;
  padding:20px;
  font-family:'Lora', serif;
  z-index:1000;
  text-align:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.2);
  backdrop-filter:blur(8px);
  animation:slideUp 0.5s ease forwards;
}

#cookieBanner .cookie-inner {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
}

#cookieBanner .cookie-lang {
  display:flex;
  gap:8px;
  margin-bottom:10px;
}
#cookieBanner .cookie-lang button {
  padding:6px 12px;
  border:none;
  border-radius:6px;
  background:#f7c6c6;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}
#cookieBanner .cookie-lang button.active { background:#e69b9b; }

#cookieBanner p { margin-bottom:12px; font-size:0.95rem; line-height:1.4; }
#cookieBanner a { color:#f7c6c6; text-decoration:underline; font-weight:bold; }
#cookieBanner a:hover { color:#e69b9b; }

#cookieCategories {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  font-size:0.95rem;
  margin:10px 0;
}
#cookieCategories label {
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}
#cookieCategories input[type="checkbox"] {
  width:18px; height:18px;
  accent-color:#f7c6c6;
  cursor:pointer;
}

#cookieBanner .cookie-buttons {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
#cookieBanner .cookie-buttons button {
  padding:10px 18px;
  border:none;
  border-radius:8px;
  font-weight:bold;
  cursor:pointer;
  font-family:'Tw Cen MT Condensed', sans-serif;
  font-size:0.9rem;
  transition:0.3s;
}
#cookieBanner .cookie-buttons .accept { background-color:#f7c6c6; color:#000; }
#cookieBanner .cookie-buttons .reject { background-color:#ccc; color:#000; }
#cookieBanner .cookie-buttons .save { background-color:#f7c6c6; color:#000; }
#cookieBanner .cookie-buttons button:hover { opacity:0.85; }

@keyframes slideUp {
  0% { opacity:0; transform:translate(-50%,50px); }
  100% { opacity:1; transform:translate(-50%,0); }
}

/* MODAL (if needed for extended settings) */
.cookie-overlay { display:none; }

#cookieBannerModal .cookie-popup {
  position:relative;
  background-color: rgba(255,255,255,0.95);
  padding:25px 30px;
  border-radius:12px;
  max-width:500px;
  width:90%;
  z-index:2000;
  text-align:center;
  font-family:'Lora', serif;
  box-shadow:0 4px 15px rgba(0,0,0,0.2);
  backdrop-filter:blur(8px);
}
#cookieBannerModal .cookie-popup p { margin-bottom:15px; font-size:0.95rem; line-height:1.4; }

#cookieBannerModal #cookieCategories {
  display:flex; flex-direction:column; align-items:center; gap:8px; margin:15px 0;
  font-family:'Tw Cen MT Condensed', sans-serif; font-size:0.95rem; color:#000;
}
#cookieBannerModal #cookieCategories label { display:flex; align-items:center; gap:6px; cursor:pointer; }
#cookieBannerModal #cookieCategories input[type="checkbox"] { width:18px; height:18px; accent-color:#f7c6c6; cursor:pointer; }

#cookieBannerModal .cookie-buttons {
  display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:15px;
}
#cookieBannerModal .cookie-buttons button {
  padding:10px 20px;
  border-radius:6px;
  border:none;
  font-family:'Tw Cen MT Condensed', sans-serif;
  font-weight:bold;
  text-transform:uppercase;
  cursor:pointer;
  transition:0.3s;
  font-size:1rem;
}
#cookieBannerModal .cookie-buttons .accept { background-color:#f7c6c6; color:#000; }
#cookieBannerModal .cookie-buttons .reject { background-color:#ccc; color:#000; }
#cookieBannerModal .cookie-buttons .save { background-color:#ddd; color:#000; }
#cookieBannerModal .cookie-buttons button:hover { opacity:0.85; }

/* About section quote spacing */
.about-text-box .quote-section {
    margin: 1.2em 0; /* Less space above and below the quote */
}

.about-text-box .quote {
    margin-bottom: 0.4em; /* Space between quote text and author */
}

.about-text-box .quote-author {
    margin-bottom: 0.8em; /* Space between quote and buttons */
    font-style: italic;
}

/* SIENNA’S WORLD BOX */
.sienna-container {
    display: flex;
    justify-content: center;   /* center the text box */
    width: 100%;
}

.text-box.sienna-box {
    max-width: 750px;           /* same width as About section */
    padding: 2em 1.5em;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
    text-align: justify;         /* justify body text */
    line-height: 1.7;
}

/* Heading */
.text-box.sienna-box h2 {
    text-align: center;          /* heading centered */
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    text-transform: uppercase;
    color: #333;
}

/* Hero image */
.world-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    border-radius: 8px;
}

/* Sample buttons */
.sample-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.sample-button {
    display: inline-block;
    padding: 10px 20px;
    background: #f7c6c6;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    color: #000;
    font-size: 1.2rem;
}

.sample-button:hover {
    background: #e69b9b;
}

/* Quote section */
.quote-section {
    background: transparent;
    padding: 40px 20px 0 20px;
    text-align: center;
    margin-top: 30px;
}

.quote-section .quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #000;
    line-height: 1.6;
}

.quote-section .quote-author {
    font-style: italic;
    font-size: 1.1rem;
    color: #000;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-box.sienna-box {
        padding: 1.5em 1em;
    }
    .world-image {
        max-width: 100%;
    }
    .sample-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
/* Quote at the top of the box */
.text-box.sienna-box .quote {
    font-style: italic;
    font-size: 1.3rem;
    color: #000;
    text-align: center;   /* keep quote centered for emphasis */
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Optional heading styling is already included in previous CSS */



/* ==========================
   AUTHOR BOX / ABOUT THE AUTHOR
========================== */
.text-box.author-box {
    max-width: 750px;               /* same width as About section */
    margin: 40px auto;              /* center on page with spacing */
    padding: 2em 1.5em;             /* internal padding */
    background-color: #fff;         /* box background */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: justify;            /* justify text for readability */
    line-height: 1.7;
}

/* Heading inside author box */
.text-box.author-box h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    text-transform: uppercase;
    color: #333;
}

/* Paragraph styling */
.text-box.author-box p {
    margin-bottom: 1.5em;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.7;
}

/* Author hero image */
.text-box.author-box .author-hero {
    max-width: 300px;                /* smaller than moodboard */
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
}

/* World/Moodboard image */
.text-box.author-box .world-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    margin: 30px auto 0 auto;
    border-radius: 8px;
    display: block;
}

/* Quote inside author box */
.text-box.author-box .quote {
    text-align: center;
    font-style: italic;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1.5em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-box.author-box {
        padding: 1.5em 1em;
    }
    .text-box.author-box .author-hero {
        max-width: 90%;
    }
    .text-box.author-box .world-image {
        max-width: 100%;
    }
    .text-box.author-box .sample-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Author image pink glow effect */
.author-hero {
  border-radius: 50%; /* Makes the image circular */
  box-shadow: 0 0 25px rgba(247, 198, 198, 0.6);
  transition: box-shadow 0.3s ease;
}

.author-hero:hover {
  box-shadow: 0 0 40px rgba(247, 198, 198, 0.85);
}

/* ==========================
   UNIVERSAL READABLE TEXT BOX
   (Matches About / Author / Sienna’s World)
========================== */
.text-box {
    max-width: 750px;
    margin: 0 auto;
    padding: 2em 1.5em;
    background-color: #ffffff;   /* solid background = readable */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    line-height: 1.7;
}

/* Body text inside box */
.text-box p {
    text-align: justify;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    margin-bottom: 1.5em;
}

/* Headings inside box */
.text-box h2 {
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 2.2rem;
}
/* ==========================
   SAMPLE TEXT BOX (Matches About and Author sections)
========================== */
.text-box {
    max-width: 750px;
    margin: 0 auto;
    padding: 2em 1.5em;
    background-color: #ffffff;   /* solid background = readable */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    line-height: 1.7;
}

/* Body text inside the box */
.text-box p {
    text-align: justify;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    margin-bottom: 1.5em;
}

/* Heading inside the box */
.text-box h2 {
    text-align: center;
    margin-bottom: 25px;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 2.2rem;
}

.newsletter-container {
  text-align: center;        /* Center all text inside */
  display: flex;
  justify-content: center;   /* Center the box horizontally */
}

.newsletter-box {
  max-width: 600px;          /* Keeps the text from stretching too wide */
  margin: 0 auto;            /* Center the box itself */
}

.newsletter-box h2,
.newsletter-box p,
.newsletter-box .gdpr-note {
  text-align: center;        /* Ensure all headings & paragraphs are centered */
}

.subscribe-button {
  margin: 20px auto 0 auto;  /* Center button horizontally */
  display: inline-block;     /* Needed to center with margin auto */
}

/* ----------------------------
   HAMBURGER MENU STYLING
---------------------------- */

/* Hamburger button */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000; /* black bars */
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger open animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive nav menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none; /* hide menu by default */
    flex-direction: column;
    position: absolute;
    top: 60px; /* adjust to nav height */
    right: 20px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu.active {
    display: flex;
  }
}

@media (max-width: 600px) {
    .hero-sample h1 {
        font-size: 1.8rem;
    }
    .hero-sample p {
        font-size: 1rem;
    }
}

/* MOBILE BUTTON FIX */
@media (max-width: 600px) {
    .sample-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sample-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
/* General Privacy Box Styles */
.privacy-box {
  width: 80%; /* Adjust the width as per your design */
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9; /* Light background */
  border: 1px solid #ddd;  /* Light border */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  font-family: Arial, sans-serif;
}

.privacy-box h2 {
  color: #333; /* Dark text color */
  font-size: 24px;
  margin-bottom: 20px;
}

.privacy-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.privacy-box table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.privacy-box table th,
.privacy-box table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.privacy-box table th {
  background-color: #f0f0f0;
  color: #333;
}

/* Make cookie tables scrollable on small screens */
.cookie-table {
  width: 100%;
  overflow-x: auto; /* allows horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* optional: ensures table doesn’t shrink too much */
}
/* ==========================
   BACK TO HOME BUTTON
========================== */
.back-home-container {
    text-align: center;
    margin: 40px 0 20px 0;
}

.back-home-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f7c6c6;
    color: #000;
    font-family: 'Tw Cen MT Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.back-home-btn:hover {
    background-color: #e69b9b;
}

/* Release note: pink, responsive, always visible */
.release-note {
    font-size: clamp(1rem, 4vw, 1.4rem);
    font-weight: 600;
    text-align: center;
    color: #ff4a8d;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.4;

    /* Force visibility */
    display: block !important;
    opacity: 1 !important;
    position: relative; 
    z-index: 10;
}
/* Author image with soft pink border */
.author-hero {
  border-radius: 50%; /* circular image */
  border: 8px solid rgba(247, 198, 198, 0.7); /* thick soft pink border */
  box-shadow: 0 0 20px rgba(247, 198, 198, 0.3); /* subtle glow on edges */
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

/* Optional hover: slightly stronger glow */
.author-hero:hover {
  box-shadow: 0 0 30px rgba(247, 198, 198, 0.5);
}


