/* AMADYNE Weihnachtsclip - Corporate Design */
/* Colors: Magenta #9c2a85, Dark Gray #404040, Gray #595959, Light Gray #cccccc */

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

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

html {
  font-size: 62.5%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  color: #404040;
  background-color: #ffffff;
  line-height: 1.5;
}

/* Header */
.header {
  background: #595959;
  padding: 20px 0;
  text-align: center;
  border-bottom: 4px solid #9c2a85;
}

.header-logo {
  max-height: 80px;
  width: auto;
  /* SVG has its own corporate colors - no filter needed */
}

.header h1 {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 300;
  margin-top: 10px;
  letter-spacing: 0.05em;
}

.header h1 span {
  color: #fcadf3;
  font-weight: 700;
}

/* Main Content */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Video Section */
.video-section {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}

.video-section:last-child {
  border-bottom: none;
}

.video-year {
  display: inline-block;
  background: #9c2a85;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.video-title {
  color: #404040;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* Footer */
.footer {
  background: #404040;
  color: #cccccc;
  text-align: center;
  padding: 20px;
  font-size: 1.3rem;
}

.footer a {
  color: #fcadf3;
  text-decoration: none;
}

.footer a:hover {
  color: #9c2a85;
}

/* Responsive */
@media (max-width: 600px) {
  .header h1 {
    font-size: 1.8rem;
  }
  
  .video-year {
    font-size: 1.5rem;
  }
  
  .main {
    padding: 20px 10px;
  }
}
