
:root {
  --color-deep-blue: #022c5b;
  --color-water: #34b3ff;
  --color-soft-water: #dbeffd;
  --color-sun: #ffc857;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.18);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* BACKGROUND IMAGE – dark, soft, elegant */
body::before {
content: "";
position: fixed;
inset: 0;
background: 
linear-gradient(rgba(59, 96, 128, 0.65), rgba(163, 198, 233, 0.75)),
url("images/water1.png") center/cover no-repeat;
opacity: 1;               /* cât de vizibilă este imaginea */
z-index: -2;
}

body {
background: #021526;      /* fallback navy */
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--color-text);
line-height: 1.6;
overflow-x: hidden;
position: relative;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--color-water);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3rem;
}

/* HEADER */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--color-sun), var(--color-deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-soft);
}

.brand-text-title {
  font-weight: 600;
  font-size: 1rem;
}

.brand-text-sub {
  font-size: 0.85rem;
  color: #000;

}

nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* 🌼 Flower Navigation Buttons */

.nav-flower {
  position: relative;
  padding: 0.45rem 1rem 0.45rem 1.9rem; /* spațiu pentru floare la stânga */
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.87rem;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  text-decoration: none;
}

/* 🌼 Flower Navigation Buttons with full gradient background */
.nav-flower {
position: relative;
padding: 0.5rem 1.2rem 0.5rem 2rem;
border-radius: 999px;
background: linear-gradient(135deg,
#ffd35c 0%,
#f9c547 20%,
#d7eaff 65%,
#5ab5ff 100%
);
border: 1px solid rgba(148, 163, 184, 0.35);
font-size: 0.9rem;
font-weight: 600;
color: #0f172a;
display: inline-flex;
align-items: center;
gap: 0.4rem;
backdrop-filter: blur(6px);
box-shadow: 0 6px 14px rgba(0,0,0,0.08);
transition: all 0.25s ease;
text-decoration: none;
}

/* Floarea */
.nav-flower::before {
content: "✿";
font-size: 1rem;
position: absolute;
left: 0.8rem;
top: 50%;
transform: translateY(-50%);
color: #3c3c3c;
opacity: 0.8;
transition: all 0.25s ease;
}

/* Hover — mai glossy */
.nav-flower:hover {
transform: translateY(-2px);
box-shadow: 0 10px 24px rgba(0,0,0,0.12);
filter: brightness(1.08);
}

/* Hover floarea */
.nav-flower:hover::before {
color: #7a4b00;
opacity: 1;
}

/* Active — un gradient aurit mai intens */
.nav-flower.active {
filter: brightness(1.15);
border-color: rgba(234, 179, 8, 0.8);
box-shadow: 0 12px 28px rgba(234, 179, 8, 0.35);
}

.nav-flower.active::before {
background: linear-gradient(120deg, #fbbf24, #f97316, #facc15);
-webkit-background-clip: text;
color: transparent;
text-shadow: 0 0 6px rgba(255,255,255,0.5);
}

/* HERO / INTRO */

.hero {
  display: grid;
  gap: 1.75rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2.5rem;
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 0.6rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--color-water), var(--color-sun));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 34rem;
}

.hero-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.tag-chip {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(219, 239, 253, 0.9);
  color: #0f172a;
}

.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  background: linear-gradient(135deg, rgba(2, 44, 91, 0.95), rgba(52, 179, 255, 0.9));
  color: #e0f2fe;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.3rem;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/happines-cover.jpg") center/cover no-repeat;
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-image-text {
  position: relative;
  font-size: 0.9rem;
}

.hero-image-meta {
  position: relative;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* SECTIONS COMMON */

section {
  margin-bottom: 2.5rem;
}

.section-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 40rem;
  margin-bottom: 1.2rem;
}

/* SECTION 1: ABOUT ME & SWIMMING */

.about-layout {
  display: grid;
  gap: 1.4rem;
}

.about-text p {
margin: 0 0 1.4rem;   /* mai mult spațiu între p-uri */
font-size: 0.95rem;
}


.about-text p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--color-water);
  background: rgba(219, 239, 253, 0.6);
  border-radius: 12px;
  font-size: 0.9rem;
  margin-top: 0.7rem;
}

.about-gallery {
  display: grid;
  gap: 0.65rem;
}

.about-gallery figure {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.about-gallery img {
  border-radius: 18px;
}

/* SECTION 2: UNDERWATER THOUGHTS (BLOG CARDS) */

.thoughts-grid {
  display: grid;
  gap: 1.1rem;
}

.thought-card {
  border-radius: 18px;
  padding: 1rem 1rem 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(219,239,253,0.9));
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.thought-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

/* Toate titlurile devin flex ca să stea poza lângă text */
.thought-title {
display: flex;
align-items: center;
gap: 0.5rem;
}

/* Card 1 */
.thought-card:nth-child(1) .thought-title::before {
content: "";
width: 22px;
height: 22px;
background: url("images/logy1.jpg") center/contain no-repeat;
display: inline-block;
}

/* Card 2 */
.thought-card:nth-child(2) .thought-title::before {
content: "";
width: 22px;
height: 22px;
background: url("images/logy2.jpg") center/contain no-repeat;
display: inline-block;
}

/* Card 3 */
.thought-card:nth-child(3) .thought-title::before {
content: "";
width: 22px;
height: 22px;
background: url("images/logy3.jpg") center/contain no-repeat;
display: inline-block;
}


.thought-body {
  font-size: 0.93rem;
  color: #111827;
}

/* SECTION 3: PHOTO STRIP / GALLERY */

.gallery-strip {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-strip figure {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* SECTION 4: LITTLE RITUALS */

.rituals-layout {
  display: grid;
  gap: 1.3rem;
}

.ritual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.ritual-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.ritual-bullet {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-water);
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.ritual-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

/* SECTION 5: TRAINING SNAPSHOTS */

.sessions-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.session-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.6);
}

.session-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.session-title {
  font-weight: 600;
}

.session-mood {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.brand-logo-img {
width: 70px;
height: 70px;
border-radius: 14px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-soft);
}

.brand-logo-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}



/* FOOTER */

footer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 1.5rem;
}

.footer-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.footer-tags span {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(255,255,255,0.8);
}

/* RESPONSIVE */

@media (min-width: 720px) {
  .hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }

  .about-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .thoughts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rituals-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.3rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}



.gallery-strip .video-wide {
grid-column: 1 / -1;       /* ocupă toate coloanele */
}

.video-local video {
width: 100%;               /* întinde video pe toată lățimea figurii */
border-radius: 18px;       /* același stil ca pozele */
box-shadow: var(--shadow-soft);
display: block;
}








