﻿@import url("https://fonts.googleapis.com/css2?family=Ruluko&display=swap");

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  font-family: 'Ruluko', 'Segoe UI', sans-serif;
}

body {
  display: block;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

.page {
  width: min(960px, 100%);
  min-height: 100vh;
  padding: 96px 48px 72px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.page-nav {
  position: absolute;
  top: 40px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.page-nav img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-nav.interactive {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-nav.interactive:hover {
  transform: translateY(-4px);
}

.page-nav.back {
  left: 40px;
}

.page-icon {
  right: 40px;
  pointer-events: none;
}

.home-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 48px 72px;
}

.home-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.home-button {
  width: 108px;
  height: 108px;
  background-color: #111;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-button img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.home-button:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 18px 36px rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.85);
}

.self-card {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.self-card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.self-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.self-text h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0;
  text-align: center;
}

.self-text p {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(1.1rem, 2.2vw, 1.25rem);
}

.self-text .cv-link {
  text-decoration: underline;
  text-underline-offset: 6px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.coming-soon {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin: 0;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
  max-width: 520px;
}

.contact-wrapper h2 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.contact-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.contact-icon:hover {
  transform: translateY(-4px);
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.cv-container {
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-top: 32px;
}


.cv-frame {
  width: 100%;
  height: 80vh;
  border: 2px solid #1a1a1a;
  border-radius: 18px;
  background-color: #111;
}

.cv-fallback {
  margin-top: 16px;
  font-size: 1rem;
}

.cv-fallback a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 900px) {
  .page {
    padding: 88px 32px 64px;
  }

  .home-wrapper {
    padding: 88px 32px 64px;
  }

  .page-nav.back {
    left: 24px;
  }

  .page-icon {
    right: 24px;
  }
}

@media (max-width: 768px) {
  .home-buttons {
    gap: 32px;
  }

  .home-button {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }

  .self-card img {
    width: 200px;
    height: 200px;
  }

  .cv-frame {
    height: 70vh;
  }
}

@media (max-width: 560px) {
  .page {
    justify-content: flex-start;
    padding: 72px 24px 60px;
    gap: 28px;
  }

  .page-nav {
    top: 24px;
    width: 42px;
    height: 42px;
  }

  .home-wrapper {
    padding: 72px 24px 60px;
  }

  .home-buttons {
    flex-direction: column;
  }

  .home-button {
    width: 84px;
    height: 84px;
    border-radius: 20px;
  }

  .home-button img {
    width: 54px;
    height: 54px;
  }

  .contact-wrapper,
  .contact-item {
    align-items: center;
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
    gap: 12px;
  }

  .cv-frame {
    height: 60vh;
  }
}




.podcast-wrapper {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.podcast-hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.podcast-cover {
  width: 260px;
  max-width: 42%;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.podcast-description {
  flex: 1;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  line-height: 1.6;
  text-align: left;
}

.podcast-player {
  width: 100%;
}

.podcast-player iframe {
  display: block;
  width: 100%;
}

@media (max-width: 900px) {
  .podcast-hero {
    gap: 28px;
  }

  .podcast-cover {
    width: 220px;
  }
}

@media (max-width: 700px) {
  .podcast-hero {
    flex-direction: column;
    text-align: center;
  }

  .podcast-description {
    text-align: center;
  }

  .podcast-cover {
    max-width: 280px;
  }
}
