@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600;700;800&display=swap');

:root {
  --bg-color: #050505;
  --surface-color: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.05);
  --text-primary: #f5f5f7;
  --text-secondary: #86868b;
  --accent-color: #f1f1f1; /* Ultra clean white/silver approach */
  --highlight-color: #d4af37; /* Muted aesthetic gold */
  
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --section-padding: 180px 40px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0px;
  color: var(--text-secondary);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}

.lang-switch {
  display: flex;
  gap: 15px;
  border-left: 1px solid var(--glass-border);
  padding-left: 40px;
}

.lang-switch a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.lang-switch a.active {
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.8)), url('images/photo1.jpg');
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  z-index: -1;
  animation: heroFadeIn 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content {
  text-align: center;
  padding: 40px;
  animation: contentFadeUp 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes contentFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-secondary);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  font-weight: 300;
}

/* Massive Luxury Typography */
.hero-title {
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 0px;
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.hero-scroll:hover {
  opacity: 1;
}

/* Sections Configuration */
section {
  padding: var(--section-padding);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: left;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-img-container {
  width: 100%;
}

.about-img {
  width: 100%;
  border-radius: 2px;
  filter: brightness(0.9);
  transition: var(--transition-smooth);
  margin-bottom: 40px;
}

.about-img:hover {
  filter: brightness(1.05);
}

.about-text {
  padding-top: 20px;
}

.about-text p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.7;
}

.about-text p strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Stats (Records) */
.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.stat-card {
  background: transparent;
  padding: 30px 0;
  border-top: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.medals-list {
  display: flex;
  flex-direction: column;
}

.medal-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 35px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.medal-item:hover {
  transform: translateX(15px);
}

.medal-item:last-child {
  border-bottom: none;
}

.medal-icon {
  font-size: 1.8rem;
  filter: grayscale(0.5);
  transition: var(--transition-smooth);
}

.medal-item:hover .medal-icon {
  filter: grayscale(0);
}

.medal-info h4 {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.medal-info p {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.results-img-container {
  position: relative;
}

.results-img {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: var(--transition-smooth);
}

.results-img:hover {
  filter: grayscale(0%);
}

.pb-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--text-primary);
  color: var(--bg-color);
  padding: 30px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pb-badge span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
}

.pb-badge small {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
footer {
  padding: 80px 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-right: 20px;
}

.social-links a:hover {
  color: var(--text-primary);
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 300;
}

.seo-links {
  margin-top: 40px;
  text-align: center;
}

.seo-links p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

.seo-links p a {
  color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.seo-links p a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Luxury Design */
@media (max-width: 1024px) {
  .hero-title { font-size: 8rem; }
  .about-grid, .results-grid { grid-template-columns: 1fr; gap: 60px; }
  .results-grid { order: -1; }
  .section-title { font-size: 3.5rem; }
  .section-padding { padding: 100px 30px; }
}

@media (max-width: 768px) {
  header { padding: 20px 30px; }
  .hero-title { font-size: clamp(4.5rem, 15vw, 6rem); letter-spacing: -3px; }
  .nav-links { display: none; /* simple nav hide on mobile */ }
  .about-text p { font-size: 1.15rem; }
  .stat-value { font-size: 2.8rem; }
  .medal-item { padding: 25px 0; gap: 20px; }
  .pb-badge { width: 110px; height: 110px; bottom: -15px; right: -15px; }
  .pb-badge span { font-size: 1.5rem; }
  .footer-content { flex-direction: column; gap: 30px; text-align: center; }
  .social-links { margin-right: 0; }
  .social-links a { margin: 0 10px; }
}
