﻿/* ===== БАЗА ===== */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #000;
  margin: 0;
  line-height: 1.6;
}

a {
  color: #000;
}

a:focus,
button:focus {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -200px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 10px;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* ===== HEADER + NAV ===== */
header {
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 6px 10px;
}

nav a:hover,
nav a:focus {
  background-color: #333;
}

/* ===== MAIN ===== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  background: #fff;
  margin-bottom: 60px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== TEXT ===== */
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

p {
  font-size: 1.1rem;
}

/* ===== CTA ===== */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
}

.cta-button:hover,
.cta-button:focus {
  background: #333;
}

/* ===== BIO ===== */
blockquote {
  border-left: 4px solid #000;
  padding-left: 16px;
  margin: 20px 0;
  font-style: italic;
}

/* ===== RELEASES ===== */
article {
  background: #f0f0f0;
  padding: 20px;
  margin-bottom: 20px;
}

/* ===== LISTS ===== */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
}

/* ===== BUTTON ===== */
button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1.1rem;
  cursor: pointer;
}

button:hover,
button:focus {
  background: #444;
}

/* ===== CONTACT INFO ===== */
#contact-info[hidden] {
  display: none;
}

#contact-info {
  margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}