/* style.css - Clean, standalone styles for coco music */

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
  --primary-color: #2b2b2b;
  --secondary-color: #f4b842;
  /* The orange/amber from original links */
  --text-color: #e0e0e0;
  --bg-color: #1a1a1a;
  --bg-light: #242424;
  --font-main: 'Open Sans', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#start {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/coco-start.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Über mich (About) Section
   ========================================================================== */
#uebermich {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image Slider */
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

/* About Content */
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #fff;
  border-bottom: 3px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 5px;
}

.about-list {
  margin-bottom: 30px;
}

.about-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-list li::before {
  content: '•';
  color: var(--secondary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* ==========================================================================
   Collage Section (Divider)
   ========================================================================== */
.collage-section {
  width: 100%;
  line-height: 0;
}

.collage-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
#kontakt {
  padding: 100px 20px;
  background-color: var(--bg-color);
  text-align: center;
}

#kontakt h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.4;
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
  display: inline-block;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ==========================================================================
   Footer Bottom Image & Footer
   ========================================================================== */
footer {
  background-color: #0a0a0a;
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-text {
  color: #999;
  font-size: 1rem;
}

.footer-text a {
  margin: 0 5px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background: rgba(26, 26, 26, 0.98);
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: left 0.3s ease;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    left: 0;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding: 0 15px;
  }

  #kontakt h2 {
    font-size: 1.8rem;
  }
}