html { scroll-behavior: smooth; }
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', sans-serif;
  background:#faf6f2;
  color:#222;
}

/* LANGUAGE */
.lang-switch {
  position:fixed; top:20px; right:20px; z-index:10;
}
.lang-switch button {
  background:none; border:1px solid #fff;
  color:#fff; padding:5px 10px;
}

/* NAV */
.main-nav {
  position:sticky; top:0; z-index:9;
  background:rgb(0, 0, 0);
  display:flex; justify-content:center;
}
.menu-toggle {
  display:none; background:none; border:none;
  color:#fff; font-size:22px;
}
.nav-links {
  display:flex; gap:25px; padding:15px;
  font-family: 'Playfair Display', serif;
}
.nav-links a { color:#fff; text-decoration:none; }
.nav-links a:hover { color:#c28b5b; }
.lang-switch {
    margin-top: -10px;
}
.lang-switch button{
    border-radius: 0.5rem;
    border-color: transparent;
    background-color: whitesmoke;
    color: #111;
}
.lang-switch button:hover{
  background-color: #666;
  color: white;
}
/* HERO */
.hero {
  height:90vh;
  background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("assets/Screenshot\ 2026-02-02\ at\ 10.30.21\ PM.png") center/cover no-repeat;
  filter:grayscale(100%); 
  display:flex; flex-direction:column;
  justify-content:center; align-items:center;
  color:#fff; text-align:center;
}
.hero-title {
    font-family:'Playfair Display', serif;
    font-size:clamp(3rem,8vw,6rem);
    /* typewriter */
    overflow: hidden;
    border-right: 2px solid #ffffff;
    white-space: nowrap;
    animation: typing 3s steps(40), blink .7s step-end infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  0% { border-color: transparent }
}


.hero-subtitle {
  font-family:'Playfair Display', serif;
}

.hero button {
    border: none;
    border-radius: 5rem;
    width: 250px;
    background-color: #111;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: large;
    margin:10px 0; padding: 10px;
    margin-top: 10px;
}
.hero button:hover {
    background-color: #ffffff;
    color: #111;
}
.hero a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: 'Playfair Display', serif;
}

.hero a:hover {
  color: #c28b5b;
}
/* BIO */
.bio-container {
  max-width: 1200px;
  margin: 100px auto 50px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
}

.bio-text {
  grid-column: 1;
  text-align: justify;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bio-text h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.bio-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.bio-photo {
  grid-column: 2;
  align-self: start;
}

.bio-photo img {
  max-width: 260px;
  width: 100%;
}


/* AWARDS */
.awards-section { background:#fff; padding:80px 5%; }
.stats {
  display:flex; 
  justify-content:center;
  gap:60px; margin-bottom:60px;
}
.counter {
  font-family:'Playfair Display', serif;
  font-size:48px;
}
.timeline {
  max-width:900px; 
  margin:auto;
  border-left:2px solid #ddd;
  padding-left:30px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  background: #c28b5b;
  border-radius: 50%;
  position: absolute;
  left: -36px;   /* pulls dot onto the vertical line */
  top: 6px;
}

.timeline-date {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

/* VIDEOS */
.video-carousel {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #333;
}

/* CONTENT */
.content-section {
  max-width:900px;
  margin:80px auto; padding:0 5%;
  text-align: justify;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.content-section h2 {
  font-family:'Playfair Display', serif;
  margin-bottom:20px;
}

/* BOOKING */
/* .booking {
  max-width:600px; margin:80px auto;
  padding:0 5%; text-align:center;
}
.booking h2 {
    font-family: 'Playfair Display', serif;
}
.booking form { 
    display:flex; 
    flex-direction:column; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.booking input, .booking textarea, .booking button {
  margin:10px 0; padding:12px;
}

.booking button {
    border: none;
    border-radius: 1rem;
    background-color: #111;
    color: white;
    font-family: 'Playfair Display', serif;
}
.booking p {
    font-size: small;
    color:#c28b5b;
    font-family: 'Playfair Display', serif;
} */
/* FOOTER */
.personal-info {
  background:#111; color:#eee; padding:60px 5%;
  font-family: 'Playfair Display', serif;
  font-size: small;
}
.personal-info img{
    width: 10px;
    height: 10px;
}
.info-grid {
  max-width:1100px; margin:auto;
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.personal-info a { color:#c28b5b; text-decoration:none; }

.info-grid h4 {
    font-family: 'Playfair Display', serif;
}

.info-grid p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: small;
}

/* MOBILE */
@media(max-width:900px){
  .menu-toggle { display:block; }
  .nav-links { display:none; flex-direction:column; }
  .nav-links.show { display:flex; }
  .bio-container, .stats, .info-grid {
    grid-template-columns:1fr; text-align:center;
  }
}
@media (max-width: 900px) {
  .bio-container {
    grid-template-columns: 1fr;
    margin-top: 60px;
    gap: 30px;
    padding-inline: 20px;
  }

  .bio-text {
    grid-column: 1;
    text-align: left; /* better readability on mobile */
  }

  .bio-photo {
    grid-column: 1;
    order: -1; /* photo goes ABOVE text */
    text-align: center;
  }

  .bio-photo img {
    max-width: 220px;
    margin: 0 auto;
  }
  .nav-links a {
    font-size: small;
  }
  .hero {
    height:70vh;
  }
}

