/*
 * Tides Talk Website Styles
 *
 * This stylesheet defines the look and feel of the Tides Talk web platform.
 * The design takes inspiration from Apple's product pages: clean layouts,
 * generous spacing, subtle motion, and a focus on typography. Colours are
 * drawn from an oceanic palette to reflect the Tides Talk brand.
 */

/* Base colours */
:root {
  --deep-ocean: #0C2D48;
  --teal: #00A6A6;
  --sand: #F5F2EB;
  --text-light: #F9FAFB;
  --text-dark: #2E2E2E;
  --accent-gradient: linear-gradient(90deg, #00A6A6 0%, #0C2D48 100%);
  --transition-speed: 0.3s;
  --max-width: 1200px;
  --nav-height: 70px;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  letter-spacing: 1px;
}

h1.hero-headline {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--text-light);
}

p {
  font-size: 1rem;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
}

header.scrolled {
  background-color: rgba(12, 45, 72, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  height: var(--nav-height);
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition-speed);
}

.nav-links li a:hover {
  color: var(--teal);
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--deep-ocean);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.hero-logo {
  width: 200px;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.hero-subheading {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-indicator .arrow {
  font-size: 1.5rem;
  margin-top: -0.2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* Sections Generic */
section {
  padding: 6rem 1rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity var(--transition-speed) ease-out, transform var(--transition-speed) ease-out;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

/* Brand Values */
.values-section {
  background-color: var(--sand);
  color: var(--text-dark);
}

.values-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--deep-ocean);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.value-item h3 {
  font-size: 1.3rem;
  color: var(--deep-ocean);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* About Section */
.about-section {
  background-color: var(--deep-ocean);
  color: var(--text-light);
}

.about-section h2 {
  color: var(--teal);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* Podcast Section */
.podcast-section {
  background-color: var(--sand);
  color: var(--text-dark);
}

.podcast-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--deep-ocean);
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.podcast-grid {
  /* Static podcast embeds arranged in a responsive grid */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Individual podcast item styling */
.podcast-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.podcast-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
}
.podcast-item iframe {
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.podcast-card {
  background-color: var(--deep-ocean);
  color: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  cursor: pointer;
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.podcast-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.podcast-card .card-content {
  padding: 1rem;
}

.podcast-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--teal);
}

.podcast-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.coming-soon {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.coming-soon .badge {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

/* Therapy Section */
.therapy-section {
  background-color: var(--sand);
  color: var(--text-dark);
}

.therapy-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
}

.therapy-hero {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapy-logo {
  max-width: 300px;
  width: 100%;
}

.therapy-content {
  flex: 2 1 400px;
  max-width: 700px;
}

.therapy-content h2 {
  font-size: 2.2rem;
  color: var(--deep-ocean);
  margin-bottom: 1rem;
}

.therapy-content h3 {
  font-size: 1.5rem;
  color: var(--deep-ocean);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.services-table {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 0.5rem;
  border-collapse: collapse;
  margin-bottom: 1rem;
  word-break: break-word;
}

.services-header {
  font-weight: 600;
  background-color: var(--deep-ocean);
  color: var(--text-light);
  padding: 0.75rem;
  display: contents;
}

.services-header > div {
  padding: 0.75rem;
  background-color: var(--deep-ocean);
  color: var(--text-light);
}

.service-row {
  display: contents;
}

.service-row > div {
  padding: 0.75rem;
  border-bottom: 1px solid var(--deep-ocean);
  font-size: 0.9rem;
}

.coming-soon-tag {
  background-color: var(--teal);
  color: var(--text-light);
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.calendly-embed iframe {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Merch Section */
.merch-section {
  background-color: var(--deep-ocean);
  color: var(--text-light);
}

.merch-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--teal);
  margin-bottom: 1rem;
}

.merch-section .section-description {
  /* Ensure the merchandise tagline is clearly visible against the dark background */
  color: var(--text-light);
  font-size: 1.1rem;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Featured merch grid for embedded products */
.merch-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.product-embed {
  background-color: var(--deep-ocean);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.product-embed iframe,
.product-embed script {
  width: 100%;
}

/* View All Merch button */
.view-all-merch {
  text-align: center;
  margin-top: 2rem;
}
.view-all-button {
  display: inline-block;
  background-color: #2BA6A6;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color var(--transition-speed);
}
.view-all-button:hover {
  background-color: #238B8B;
}

.product-card {
  background-color: var(--sand);
  color: var(--text-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card .product-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.5rem 0;
  color: var(--deep-ocean);
}

.product-card .buy-button {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-align: center;
  transition: background-color var(--transition-speed);
}

.product-card .buy-button:hover {
  background: var(--teal);
}

/* Brand Hub */
.brandhub-section {
  background-color: var(--sand);
  color: var(--text-dark);
}

.brandhub-section h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--deep-ocean);
  margin-bottom: 1rem;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.instagram-post {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.instagram-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.resource-links {
  text-align: center;
  margin-top: 2rem;
}

.resource-button {
  display: inline-block;
  background: var(--deep-ocean);
  color: var(--text-light);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color var(--transition-speed);
}

.resource-button:hover {
  background: var(--teal);
}

/* Instagram follow button and placeholder styles */
.instagram-follow {
  text-align: center;
  margin-bottom: 1.5rem;
}

.follow-button {
  display: inline-block;
  background: var(--teal);
  color: var(--text-light);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color var(--transition-speed);
}

.follow-button:hover {
  background: var(--deep-ocean);
}

.instagram-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Donate Section */
.donate-section {
  background-color: var(--deep-ocean);
  color: var(--text-light);
  text-align: center;
}

.donate-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--teal);
}

.donate-section p {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1rem;
  color: var(--text-light);
}

.donate-button {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--text-light);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

/* Footer */
.site-footer {
  background-color: var(--deep-ocean);
  color: var(--text-light);
  padding: 2rem 1rem;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav li a {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-nav li a:hover {
  color: var(--teal);
}

/* Modal styles for podcast video player */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed);
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: var(--deep-ocean);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.modal-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-speed);
}

.modal-close:hover {
  color: var(--teal);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  /* We can add mobile menu in JS if desired */
  .therapy-container {
    flex-direction: column;
  }
  /* On small screens stack the service table into vertical cards for readability */
  .services-table {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  /* Hide the header row on mobile since each card will include its own labels */
  .services-header {
    display: none;
  }
  .service-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--deep-ocean);
    padding: 0.75rem 0;
  }
  .service-row > div {
    padding: 0.25rem 0;
  }
  /* Make the first cell (service name) stand out */
  .service-row > div:first-child {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  .podcast-card img {
    height: 180px;
  }
  .product-card img {
    height: 180px;
  }
}
/* ==========================
   YouTube Subscribe Button
   ========================== */
.youtube-btn {
  background-color: #1ABC9C; /* Same teal as Instagram button */
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.youtube-btn:hover {
  background-color: #159E87; /* Slightly darker teal on hover */
}
.youtube-subscribe {
  text-align: center;
  margin-bottom: 1.5rem; /* Matches Instagram button spacing */
}

}

/* Make the subscribe button take a full row under the grid, no matter if the parent uses grid or flex */
.youtube-subscribe {
  grid-column: 1 / -1;   /* if parent is CSS Grid */
  flex-basis: 100%;      /* if parent is Flexbox */
  text-align: center;
  margin-top: 16px;
}

.about-list { margin: 0.5rem 0 1rem 1.25rem; }  /* slight indent + space above/below */
.about-list li { margin: 0.25rem 0; }            /* a little breathing room per line */


/* Center the list visually under About */
.about-list {
  max-width: 720px;          /* match your about-text width (adjust if needed) */
  margin: 0.5rem auto 1rem;  /* centers the block */
  list-style-position: inside; /* bring bullets inside the box */
  padding-left: 0;             /* remove extra left padding */
}
.about-list li { margin: .25rem 0; }

/* (optional) brand the bullets a touch */
.about-list li::marker { color: #2ba6a6; }


/* Mobile: put 'Tides Talk' on its own line under 'About' */
@media (max-width: 640px){
  .stack-mobile{ display:block; }
}

/* add gentle space between stacked about paragraphs */
.about-text + .about-text { margin-top: 0.75rem; }

/* MOBILE: tidy bullets so wrapped lines align under the text */
@media (max-width: 640px){
  .about-list{
    list-style: none;      /* hide default bullets */
    padding-left: 0;       /* no extra inset */
  }
  .about-list li{
    position: relative;
    padding-left: 1.25rem; /* space for our custom dot */
    margin: .25rem 0;
  }
  .about-list li::before{
    content: "";
    position: absolute;
    left: 0;               /* place dot in the left gutter */
    top: 0.7em;            /* vertical alignment of dot */
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ba6a6;   /* your teal */
  }
}

/* Keep the section itself as a normal block container */
.podcast-section-v10{ display:block; }

/* Center the subheading + intro and limit line length */
.podcast-subheading{
  text-align:center;
  margin: 0 0 8px;
}
.podcast-intro{
  max-width: 720px;     /* match About width */
  margin: 0 auto 16px;  /* center + space under */
  text-align: center;
}

/* The grid should apply ONLY to the cards */
.podcast-grid-v10{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 8px;      /* space between intro and first row */
}

/* (Safety) If some global CSS ever turns the section into a grid, keep the intro full-width */
.podcast-section-v10 > .podcast-subheading,
.podcast-section-v10 > .podcast-intro{
  grid-column: 1 / -1;
}


.podcast-intro{
  max-width:720px;
  margin:0 auto 24px;   /* center + breathing room under the intro */
  text-align:center;
}
.podcast-grid-v10{ 
  margin-top: 8px;      /* keep a small buffer so it never hugs */
}

@media (min-width: 768px){
  .podcast-intro{ margin-bottom: 32px; }
  .podcast-grid-v10{ margin-top: 16px; }
}

/* Podcast subheading: match the same navy as your other section subheads */
.podcast-section-v10 .podcast-subheading{
  color: #0f3850;
  font-weight: 700;
}

.podcast-cta{
  color: inherit;        /* <-- this line fixes the blue */
  font-weight: 600;
  max-width: 720px;
  margin: 12px auto 28px;
  text-align: center;
}


@media (min-width: 768px){
  .podcast-intro{ margin-bottom: 18px; }
  .podcast-cta{   margin: 14px auto 34px; }
}

.podcast-subheading{
  font-weight:400;          /* not bold */
  font-size:1rem;           /* match your body size */
  line-height:1.6;
  text-align:center;
  margin:0 0 8px;
  color:#0f3850;            /* your navy */
}
.podcast-intro{ max-width:720px; margin:0 auto 16px; text-align:center; }




Preview build trigger – okay to remove later

