@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body.tamara-home-page {
  margin: 0;
  padding-inline: 14px;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bottom) 55%, var(--sky-bottom) 100%);
  font-family: Poppins, sans-serif;
  color: rgb(44, 57, 56);
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; } /* NEW */

.tlp-card {
  width: 100%;
  max-width: 1400px;     /* CHANGED from 580px — scales with the window, capped on huge screens */
  margin: 40px auto 40px;    /* CHANGED from "40px auto" so it sits flush under the new top bar */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 32px rgba(0,0,0,0.15);
  background-color: #6DD2E8;
  position: relative;
}
body.tamara-home-page {
  --sky-top: #bfe6f2;
  --sky-bottom: #8fd0e6;
  --ink: #1c2b33;
  --ink-soft: #3a4a52;
  --card: rgba(255,255,255,0.55);
  --card-strong: rgba(255,255,255,0.72);
  --pill-shadow: 0 6px 18px rgba(28,43,51,0.14);
}

body.tamara-home-page h1,
body.tamara-home-page h2,
body.tamara-home-page h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

/* NEW: top bar */
.tlp-topbar { width: 100%; padding: 18px 24px; box-sizing: border-box; position: relative; z-index: 10; }
.tlp-topbar-inner { width: 100%; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.tlp-topbar-logo { font-weight: 600; font-size: 1.05rem; color: #2C3938; text-decoration: none; white-space: nowrap; }
.tlp-topbar-nav { display: flex; gap: 32px; }
.tlp-topbar-nav a { color: #2C3938; text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.tlp-topbar-nav a:hover { opacity: 0.7; }
.tlp-topbar-menu-btn { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: #2C3938; }
.tlp-topbar-menu-btn svg { width: 24px; height: 24px; }

@media (max-width: 700px) {
  .tlp-topbar-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #4FA7C4; flex-direction: column; gap: 0; padding: 8px 24px 16px; }
  .tlp-topbar-nav.is-open { display: flex; }
  .tlp-topbar-nav a { padding: 12px 0; border-top: 1px solid rgba(0,0,0,0.08); }
  .tlp-topbar-menu-btn { display: block; }
}

.tlp-hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
@media (min-width: 600px) {
  .tlp-hero { height: 620px; }
}
@media (max-width: 599px) {
  .tlp-hero {
    height: auto;
  }
  .tlp-hero-img {
    height: auto;
  }
}
.tlp-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 20%;
  display: block;
}
.tlp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(109,210,232,0) 0%, rgba(109,210,232,0.85) 90%, #6DD2E8 100%); 
}

.tlp-profile {
  padding: 16px 24px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tlp-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.tlp-bio {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 20px;
}

.tlp-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}
.tlp-social-icons svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: #000;
}

.tlp-links {
  padding: 16px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tlp-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(rgba(34, 72, 90, 0.55), rgba(22, 50, 63, 0.55));
  color: rgb(255, 255, 255);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.06);
  padding: 14px 20px;
  text-decoration: none;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tlp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.tlp-link-icon,
.tlp-link-icon svg {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  fill: #000;
}
.tlp-link-label {
  flex: 1;
  text-align: center;
}
.tlp-link-spacer {
  width: 40px;
  flex-shrink: 0;
}

.tlp-link--feature {
  flex-direction: column;
  align-items: stretch;
  padding: 12px;
  gap: 10px;
  background:transparent; box-shadow:none; border:1.5px solid rgba(28,43,51,0.35); font-weight:700;
  color: var(--ink);
  box-shadow: none;
  font-weight: 700;
}
.tlp-link-feature-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.tlp-link--feature .tlp-link-label {
  padding: 0 0 6px;
}
.tlp-social-icons a {
    color: #000;
    display: block;
}
.tlp-share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  padding: 0;
}
.tlp-share-btn svg {
  width: 20px;
  height: 20px;
}
.tlp-share-btn:hover {
  background: rgba(255, 255, 255, 0.85);
}
@keyframes tlp-buzz {
  0%    { transform: translateX(3px) rotate(1deg); }
  2.5%  { transform: translateX(-3px) rotate(-1deg); }
  5%    { transform: translateX(3px) rotate(1deg); }
  7.5%  { transform: translateX(-3px) rotate(-1deg); }
  10%   { transform: translateX(2px) rotate(1deg); }
  12.5% { transform: translateX(-2px) rotate(-1deg); }
  15%   { transform: translateX(2px) rotate(1deg); }
  17.5% { transform: translateX(-2px) rotate(-1deg); }
  20%   { transform: translateX(1px) rotate(1deg); }
  22.5% { transform: translateX(-1px) rotate(-1deg); }
  25%   { transform: translateX(0) rotate(0); }
}
.tlp-link--shake {
  animation: tlp-buzz 3s linear infinite;
}
.tlp-home-wrap {
  max-width: 580px;
  margin: -10px auto 40px;
  text-align: center;
}
.tlp-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 30%;
  background: rgba(0,0,0,0.15);
  color: #000;
  text-decoration: none;
}
.tlp-home-link svg {
  width: 22px;
  height: 22px;
}
.tlp-home-link:hover {
  background: rgba(255,255,255,0.85);
}




.tt-home{
  --sky-top:#bfe6f2;
  --sky-bottom:#8fd0e6;
  --ink:#1c2b33;
  --ink-soft:#3a4a52;
  --card:rgba(255,255,255,0.55);
  --card-strong:rgba(255,255,255,0.72);
  --pill-shadow: 0 6px 18px rgba(28,43,51,0.14);

  font-family:'Nunito', sans-serif;
  color:var(--ink);
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bottom) 55%, var(--sky-bottom) 100%);
}
.tt-home *{box-sizing:border-box;}
.tt-home img{display:block; max-width:100%;}
.tt-home a{color:inherit;}


/* decorative bloom accents */
.tt-bloom{
  position:absolute; width:220px; height:220px; pointer-events:none;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.5) 35%, rgba(255,255,255,0) 70%);
  filter: blur(2px);
  opacity:.8;
}
.tt-bloom--hero{ top:-40px; left:-60px; }
.tt-bloom--about{ bottom:-60px; right:-60px; width:260px; height:260px; }






/* NAV */
.tt-nav {
  margin-inline: -14px;
  width: calc(100% + 28px);
}
.tt-nav{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 6vw;
  background: rgba(191,230,242,0.55);
  backdrop-filter: blur(10px);
}
.tt-brandmark{font-family:'Playfair Display', serif; font-size:19px; font-weight:600;}
.tt-navlinks{display:flex; gap:22px; font-size:13px; font-weight:700;}
.tt-navlinks a {
  text-decoration: none;
  opacity: 0.75;
  color: #000;
}
.tt-navlinks a:hover{opacity:1;}
.tt-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #000;
}
.tt-menu-btn svg {
  width: 24px;
  height: 24px;
}
.tt-share-btn{
  width:38px; height:38px; border-radius:50%; background:var(--card-strong);
  display:flex; align-items:center; justify-content:center; box-shadow:var(--pill-shadow);
  border:none; cursor:pointer;
}
@media (max-width: 720px) {
  .tt-navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    background: rgba(191, 230, 242, 0.97);
  }
  .tt-navlinks.is-open {
    display: flex;
  }
  .tt-navlinks a {
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .tt-menu-btn {
    display: block;
  }
}





/* HERO */
.tt-hero{position:relative; padding:56px 6vw 40px; overflow:hidden;}
.tt-hero-inner{
  max-width:1100px; margin:0 auto; display:grid;
  grid-template-columns:0.95fr 1.1fr; gap:44px; align-items:center; position:relative;
}
.tt-hero-photo{
  position:relative; border-radius:28px; overflow:hidden; aspect-ratio:4/5;
  box-shadow: var(--pill-shadow); background:#cfe7ee;
}
.tt-hero-photo img{width:100%; height:100%; object-fit:cover;}
.tt-hero-copy h1{font-size:clamp(34px,4.4vw,52px); line-height:1.05; margin-bottom:16px;}
.tt-eyebrow{font-size:13px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:12px;}
.tt-sub{font-size:16px; line-height:1.65; color:var(--ink-soft); max-width:46ch; margin:0 0 26px;}
.tt-cta-row{display:flex; flex-wrap:wrap; gap:14px; align-items:center;}
@media(max-width:820px){
  .tt-hero-inner{grid-template-columns:1fr;}
  .tt-hero-photo{max-width:340px; margin:0 auto;}
}
.tt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(109,210,232,0.85) 0%, rgba(109,210,232,0) 45%, #6DD2E8 100%);
}

/* PILLS (shared button style) */
.tt-pill{
  display:inline-flex; align-items:center; gap:10px; padding:15px 26px; border-radius:999px;
  background: linear-gradient(180deg, #ffffff, #e4f3f8);
  box-shadow: var(--pill-shadow); font-weight:800; font-size:14.5px; text-decoration:none;
}
.tt-pill--primary{background: linear-gradient(180deg, #22485a, #16323f); color:#eaf6fb;}
.tt-pill--ghost{background:transparent; box-shadow:none; border:1.5px solid rgba(28,43,51,0.35); font-weight:700;}
.tt-pill--sm{padding:10px 20px; font-size:13px;}
.tt-pill svg{width:18px; height:18px; flex-shrink:0;}
.tlp-link--ghost {
  background: transparent;
  border: 1px solid rgba(28, 43, 51, 0.35);
  color: var(--ink);
  box-shadow: none;
  font-weight: 700;
  border-radius: 999px;
}

/* CREDENTIAL STRIP */
.tt-cred-strip{
  position:relative; max-width:900px; margin:8px auto 0; padding:16px 26px; border-radius:999px;
  background-color:#FFF;
  display:flex; justify-content:center; gap:34px; flex-wrap:wrap; font-size:13.5px; font-weight:700;
}
.tt-cred-strip span{display:flex; align-items:center; gap:8px;}
.tt-cred-strip svg{width:16px; height:16px;}

/* ABOUT / PILLARS */
.tt-about{padding:20px 6vw 50px; position:relative;}
.tt-about-head{text-align:center; max-width:640px; margin:0 auto 42px; position:relative;}
.tt-about-head h2{font-size:30px; margin-bottom:14px;}
.tt-about-head p{color:var(--ink-soft); font-size:15.5px; line-height:1.7; margin:0;}
.tt-pillars{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; position:relative;}
.tt-pillar{background:var(--card); border-radius:22px; padding:26px 22px; box-shadow:var(--pill-shadow);}
.tt-tag{font-size:12px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:10px;}
.tt-pillar h3{font-size:19px; margin-bottom:8px;}
.tt-pillar p{font-size:13.5px; color:var(--ink-soft); line-height:1.55; margin:0;}
@media(max-width:820px){ .tt-pillars{grid-template-columns:1fr;} }

/* FEATURED VIDEO */
.tt-feature{padding:60px 6vw;}
.tt-section-head{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:24px; gap:16px; flex-wrap:wrap;}
.tt-section-head h2{font-size:26px;}
.tt-video-card{
  display:grid; grid-template-columns:1.4fr 1fr; border-radius:26px; overflow:hidden; box-shadow:var(--pill-shadow);
  background:var(--card-strong);
}
.tt-video-thumb, .tt-video-embed{
  aspect-ratio:16/9; background: linear-gradient(135deg,#22323a,#0f1a1f);
  display:flex; align-items:center; justify-content:center; position:relative;
  text-decoration:none;
}
.tt-video-embed iframe{width:100%; height:100%; border:0;}
.tt-play-btn{width:58px; height:58px; border-radius:50%; background:rgba(255,255,255,0.92); display:flex; align-items:center; justify-content:center;}
.tt-play-btn svg{width:20px; height:20px;}
.tt-video-info{padding:28px; display:flex; flex-direction:column; justify-content:center; gap:10px;}
.tt-video-info h3{font-size:20px; line-height:1.3;}
.tt-video-info p{font-size:13.5px; color:var(--ink-soft); line-height:1.6; margin:0;}
@media(max-width:720px){ .tt-video-card{grid-template-columns:1fr;} }

/* SHORTS */
.tt-shorts{padding:50px 6vw;}
.tt-shorts-row{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
.tt-short-card{
  aspect-ratio:9/16; border-radius:22px; box-shadow:var(--pill-shadow); position:relative; overflow:hidden; transition: transform 0.15s, box-shadow 0.15s;
  background:linear-gradient(160deg,#d8f0f6,#a9dcec); display:block;
}
.tt-short-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.tt-playmini{
  position:absolute; bottom:12px; right:12px; width:32px; height:32px; border-radius:50%;
  background:rgba(28,43,51,0.85); display:flex; align-items:center; justify-content:center;
}
.tt-playmini svg{width:13px; height:13px;}
.tt-short-thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(160deg, #d8f0f6, #a9dcec) center / cover;
}
.tt-short-info {
  padding: 16px 18px 18px;
}
.tt-short-title {
  font-family: Nunito, sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tt-short-title {
  font-weight: 400;
}

.tt-short-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tt-short-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}
@media(max-width:720px){ .tt-shorts-row{grid-template-columns:repeat(2,1fr);} }

/* SOCIAL GRID */
.tt-social{padding:50px 6vw;}
.tt-social-cols{display:grid; grid-template-columns:1fr 1fr; gap:30px;}
.tt-social-col h3{font-family:'Nunito'; font-size:15px; font-weight:800; margin-bottom:14px; display:flex; align-items:center; gap:9px;}
.tt-social-col svg{width:19px; height:19px;}
.tt-grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:10px;}
.tt-post-tile{
  aspect-ratio:1; border-radius:16px; box-shadow:var(--pill-shadow); display:block;
  background:linear-gradient(160deg,#d8f0f6,#bfe6f2);
}
@media(max-width:820px){ .tt-social-cols{grid-template-columns:1fr;} }


/* FOOTER */
.tt-footer{padding:10px 6vw 75px; text-align:center; font-size:13px; color:var(--ink-soft); font-weight:700;}
.tt-footer a{text-decoration:underline; color: inherit;}

/* Reveal-on-scroll (progressively enhanced by homepage.js; content is
   visible by default if JS fails to load) */
.tt-reveal{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease;}
.tt-reveal.tt-in{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .tt-reveal{opacity:1; transform:none; transition:none;}
}

/* Stylized Pills on homepage */
.tt-pill {
  color: var(--ink);
}
a.tt-pill--primary {
  color: rgb(255, 255, 255);
  background: linear-gradient(rgba(34, 72, 90, 0.55), rgba(22, 50, 63, 0.55));
  backdrop-filter: blur(6px);
  transition: transform 0.15s, box-shadow 0.15s;
}

a.tt-pill--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* buttons at bottom smaller side to side */
@media (min-width: 600px) {
  .tlp-links {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}