/* Optional: make your navbar/logo sit above */
header, .site-header { position: relative; z-index: 5; }

/* HERO this is the actual thing where you can change how long the 3 divided thing is*/
.hero{
  position: relative;
  width: min(1200px, 92vw);      /* optional: contains the hero */
  margin: 48px auto 0;           /* center on the page */
  aspect-ratio: 16 / 6;          /* same look at any screen ratio (≈0.375) */
  overflow: hidden;
  padding: clamp(12px, 2.2vw, 28px);
}


.zero{
  position: relative;
  width: min(1200px, 92vw);      /* optional: contains the hero */
  margin: 48px auto 0;           /* center on the page */
  aspect-ratio: 16 / 9;          /* same look at any screen ratio (≈0.375) */
  overflow: hidden;
  padding: clamp(12px, 2.2vw, 28px);
}
/* 3-panel image wall */
.hero__grid{
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 28px);
}
.hero__grid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(90%);
}

/* Soft white veil over images (like your screenshot) */
.hero::after{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.68);
  pointer-events: none;
}

/* Centered text stack */
.hero__content{
  position: relative;      /* sits above the overlay */
  z-index: 1;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 1rem;
  color: #272727;             /* dark text on pale overlay */
  font-family: "Cormorant Garamond", serif;
} 

/* Eyebrow (PRESENTING) */
.hero__eyebrow{
  font-family: "Cinzel", serif;
  font-size: clamp(12px, 1.6vw, 18px);
  letter-spacing: .4em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  opacity: .8;
}

/* Big title */
.hero__title{
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(36px, 190vw, 120px);
  line-height: .95;
  letter-spacing: .05em;
  margin: 0 0 .6rem 0;
}

/* Tagline */
.hero__tagline{
  font-size: clamp(14px, 2.2vw, 28px);
  letter-spacing: .35em;
  text-transform: uppercase;
  margin: 0;
  opacity: .9;
}

/* Optional: shrink a separate logo elsewhere on the page */
.logo{
  width: 220px;  /* adjust */
  height: auto;  /* keeps aspect ratio */
  display: block;
}


/*-- Vision grid*/
.main__grid {
    position: relative;
    min-height: clamp(220px, 34vh, 52px);
    padding: 24px;
    overflow: hidden;
  }
  
  /* Image fills the section */
  .main_grid_idea {
    position: absolute;
    inset: 0;
  }
  .main_grid_idea img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(90%);
    border-radius: 0;           /* remove rounded corners if any */
  }
  
  /* Soft overlay like hero */
  .main__grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.68);
    pointer-events: none;
  }
  
  /* Centered text overlay (you already have these hero styles) */
  .hero__content {
    position: relative;   /* above overlay */
    z-index: 1;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 1rem;
  }
  
  /* Optional: if bullets show up in nav */
  .nav__menu ul { list-style: none; margin: 0; padding: 0; }

/* --- NAVBAR --- */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  
  .nav__brand img {
    height: 50px;
  }
  
  /* Hide default checkbox */
  .nav__toggle {
    display: none;
  }
  
  /* Burger menu */
  .nav__burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  .nav__burger span {
    width: 25px;
    height: 3px;
    margin: 4px;
    background: #333;
    transition: 0.3s;
  }
  
  /* Desktop menu */
  .nav__menu ul {
    display: flex;
    gap: 1rem;
  }
  .nav__menu a {
    text-decoration: none;
    font-weight: 600;
    color: #333;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .nav__burger {
      display: flex;
    }
    .nav__menu {
      display: none;
      position: absolute;
      top: 70px;
      right: 0;
      background: #fff;
      width: 200px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .nav__menu ul {
      flex-direction: column;
      padding: 1rem;
    }
    /* Show menu when checked */
    .nav__toggle:checked ~ .nav__menu {
      display: block;
    }
  }
  

  main {
    position: relative;
    max-width: none;
    margin: 4rem auto;
    padding: 2rem;
    font-family: Georgia, serif;
    line-height: 1.6;
    text-align: center;
  }
  
  .intro p {
    margin: 1.5rem 0;
  }
  
  .decor {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
  }
  
/* --- container --- */
.definition{
  max-width: 1100px;
  margin: 6rem auto 4rem;
  padding: 0 1.25rem;
  color: #111;
}

/* --- grid for word + pronunciations --- */
.definition__grid{
  display: grid;
  grid-template-columns: 1fr auto;   /* two columns for the two parts */
  column-gap: clamp(24px, 8vw, 80px);
  align-items: end;
}

/* big word */
.term{
  grid-column: 1 / -1;               /* span full width on small screens */
  display: grid;
  grid-template-columns: subgrid;    /* use the same two columns when supported */
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1.05;
  margin: 0 0 .5rem 0;
  letter-spacing: .02em;
}
.term__part{
  display: inline-block;
}

/* pronunciations, placed under the respective word parts */
.pron{
  display: grid;
  grid-template-columns: inherit;
  grid-column: 1 / -1;
  gap: clamp(16px, 6vw, 80px);
  font-family: "Inter", system-ui, Arial, sans-serif;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  color: #555;
  margin-bottom: 1.25rem;
}
.pron__part{ white-space: nowrap; }

/* part of speech */
.pos{
  font-family: "Inter", system-ui, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: .25rem 0 1rem;
}

/* meaning list */
.meaning{
  font-family: "Inter", system-ui, Arial, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.75;
  margin: 0 0 1.75rem 1.25rem;
}
.meaning li{ padding-left: .5rem; }

/* quote */
.quote{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin: 1.25rem 0 0;
}

/* responsive: stack the two parts on narrow screens */
@media (max-width: 720px){
  .definition__grid{
    grid-template-columns: 1fr;      /* stack */
  }
  .term{ grid-template-columns: 1fr; }
  .pron{ grid-template-columns: 1fr; }
}



.footer {
  background: #ffffff;
  color: #eee;
  padding: 3rem 1.5rem 1rem;
  font-family: "Inter", Arial, sans-serif;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__brand img.footer__logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #000000;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  text-decoration: none;
  color: #000000;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: #000000;
}

.footer__contact p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #000000;
}
.footer__contact a {
  color: #000000;
  text-decoration: underline;
}

.footer__socials {
  margin-top: 0.75rem;
}
.footer__socials a {
  margin-right: 1rem;
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer__socials a:hover {
  color: #000000;
}

.footer__bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}



/* for the archive one*/
/* Reset */
body,html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Playfair Display", serif;
  color: #fff;
}

/* NAVBAR */
.navbar {
  background: rgba(255,255,255,0.9);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}
.navbar .logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
}
.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.navbar ul li a:hover {
  color: #e91e63;
}

/* FULL SCREEN HERO */
.coming-soon {
  height: 100vh;
  background: url("background.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.content {
  position: relative;
  text-align: center;
  z-index: 2;
  margin-top: 60px; /* push below navbar */
}
h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Countdown */
#countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
#countdown div {
  background: #fff;
  color: #222;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
#countdown span {
  font-size: 1.6rem;
  color: #e91e63;
}

/* Button */
.notify-btn {
  background: linear-gradient(135deg, #ff4081, #e91e63);
  color: #fff;
  border: none;
  padding: 14px 34px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.3s ease;
}
.notify-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #e91e63, #c2185b);
}


/* TEAMMM */
/* style.css */
body {
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.intro-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
}

.left {
  width: 40%;
  text-align: center;
}

.profile-img {
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
}

.left h2 {
  margin-top: 15px;
  font-size: 22px;
  font-weight: bold;
}

.title {
  font-size: 14px;
  color: #333;
}

.right {
  width: 55%;
  font-size: 18px;
  line-height: 1.8;
  font-family: 'Georgia', 'Times New Roman', serif; /* standard serif font */
}

.signature {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.signature img {
  height: 50px;
}

.signature span {
  font-size: 18px;
  font-weight: bold;
}


/* Team */
/* ===== Founder section ===== */
.founder-hero{
  /* full-width gallery background (same image as your slide) */
  background: url("gallery-bg.jpg") center/cover no-repeat;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: 48px 6vw;
}

.founder-wrap{
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 5vw;
  align-items: start;
}

/* Left photo card */
.founder-card{
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(1px);
}

.founder-card img{
  display: block;
  width: 100%;
  height: auto;
}

/* Name + title overlay at bottom-left */
.founder-card figcaption{
  position: absolute;
  left: 22px;
  bottom: 18px;
  right: 22px;
  color: #0b0b0b;
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
}

.founder-card h2{
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 6px;
  letter-spacing: .3px;
}

.founder-card figcaption p{
  font-family: "Georgia", serif;
  font-size: clamp(12px, 1.2vw, 16px);
  margin: 0;
}

/* Right column copy */
.founder-copy{
  color: #0b0b0b;
  /* subtle readability lift while still feeling like it's on the wall */
  background: rgba(255,255,255,.18);
  padding: 18px 12px;
  border-radius: 6px;
  max-width: 700px;
}

.founder-copy p{
  /* handwriting-like feel for paragraphs */
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.85;
  margin: 0;
  letter-spacing: .2px;
}

/* Signature row bottom-right of text block */
.signature{
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.signature img{
  height: 56px;              /* tune to match your autograph size */
  width: auto;
  display: block;
}

.signature span{
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 16px;
}

/* Responsiveness */
@media (max-width: 900px){
  .founder-wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .founder-copy{
    background: rgba(255,255,255,.3);
  }
}

/* Pictures */
.member-section {
  background: url("gallery-bg.jpg") center/cover no-repeat;
  padding: 60px 8vw;
}

.member {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto 70px auto;
  background: rgba(255,255,255,0.35); /* frosted effect */
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 12px;
}

/* LEFT */
.member-left {
  flex: 0 0 250px;
  text-align: center;
}

.member-left img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}

.member-left h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #000000; /* change this to whatever color you want */
}


.member-left .role {
  font-size: 14px;
  font-style: italic;
  color: #333;
  margin: 0;
}

/* RIGHT */
.member-note {
  flex: 1;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.8;
  color: #111;
}
.member-left h3 {
  font-size: 20px;
  margin: 10px 0 5px;
  font-weight: bold;
}

.member-left .role {
  font-size: 14px;
  font-style: italic;
  color: #444;
  margin: 0;
}


/* INVOLVEMENT */

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.6;
}

.block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: auto;
}

.block-reverse {
  flex-direction: row-reverse;
}
.image {
  flex: 1;

}

.image img {
  height: auto;
  display: block;
}

.text {
  flex: 1;
  padding: 20px;
  color:#000
}

.text h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
}


:root{
  --panel-bg: #fff;
  --ink: #141414;
  --muted: #e9e9e9;
  --shadow: 0 10px 28px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }

body{
  margin: 0;
  color: var(--ink);
  background: #f6f6f6;
}

/* Split layout (image | text box) */
:root{
  --panel-bg: #fff;
  --ink: #141414;
  --muted: #e9e9e9;
  --shadow: 0 10px 28px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }

body{
  margin: 0;
  color: var(--ink);
  background: #f6f6f6;
}

/* Split layout (image | text box) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr; /* half + half */
  align-items: center;           /* center things vertically */
  margin: 5px 0;                /* spacing between sections */
}

/* left image */
.split__image {
  overflow: hidden; /* crop overflow if needed */
}
.split__image img {
  width: 100%;
  height: 400px;     /* control how tall the image is */
  object-fit: cover; /* crops nicely */
  display: block;
}
/* right text */
.split__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}


.split__text-inner {
  max-width: 500px;   /* limit the width of the text box */
  margin: 0 auto;     /* center it */
}
.split__text h2 {
  margin-bottom: 1rem;
}
.split__text p {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 45ch;
}

/* stack on mobile */
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split__image {
    flex: 0 0 300px;   /* image column is 300px wide */
  }
}



/* style.css */
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6; /* the divider line */
  max-width: 1000px;       /* optional, for nicer measure */
  margin: 24px auto;       /* center the block on the page */
}

/* Left text */
.cta-copy {
  margin: 0;
  max-width: 640px;        /* keeps line length similar to your screenshot */
  line-height: 1.45;
  color: #111;
  font-size: 16px;
}

/* Right side */
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Outlined “button” */
.btn-outline {
  display: inline-block;
  padding: 12px 20px;
  border: 1.5px solid #1a1a1a;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a1a;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;        /* similar vibe */
  font-variant-caps: all-small-caps;/* if the font supports it */
  transition: transform 0.06s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn-outline:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

/* Tiny caption under the button */
.tiny-link {
  font-size: 13px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;  /* subtle underline like the screenshot label */
  line-height: 1;
}
.tiny-link:hover {
  opacity: 0.75;
}

/* Responsive: stack on small screens */
@media (max-width: 640px) {
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-action {
    align-items: stretch;
    width: 100%;
  }
  .btn-outline {
    text-align: center;
    width: 100%;
  }
}
