@import url(https://fonts.googleapis.com/css?family=Raleway:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

/* variables */
:root {
  /* Colors */
  --primary-color: #ffcd42;
  --secondary-color: #ffd35c;
  --bg-primary: #343a3e;
  --text-color: #ffffff;
  --bg-secondary: #ff7eb6;
  --card-background: #ff7eb6;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Font Weight */
  --weight-small: 400;
  --weight-semibold: 600;
  --weight-bold: 800;

  /* Max width */
  --width-small: 600px;
  --width-medium: 1100px;
  --width-large: 1300px;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* Reset default styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

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

/* Main styling */
body {
  background: var(--bg-primary);
  color: var(--text-color);
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--bg-primary);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  height: 80px;
  width: 100%;
}

.navbar .nav-menu {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
}

.navbar .nav-link {
  margin: 0 1rem;
  font-size: 0.8rem;
  font-weight: var(--weight-semibold);
}

.navbar #logo img {
  display: block;
  width: 40px;
}

.navbar .btn {
  margin-right: 1.5rem;
}

.fas.fa-arrow-right {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* about event */
.anietta-container {
  display: flex;
  align-items: center;          /* vertikal zentrieren */
  justify-content: space-between; /* Grafiken am Rand, Box in der Mitte */
  padding: 0 40px;              /* Abstand zu den Rändern */
  margin: 60px 0;
}

.info-box {
  background-color: #21272a;
  color: #ffffff;
  margin-inline: auto;
  padding: 20px;
  border-radius: 15px;
  width: 400px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-family: "Raleway", sans-serif;
}

.info-item {
  margin-bottom: 15px;
  font-size: 16px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.side-graphic {
  width: 100px;      /* Bildgröße anpassen */
  height: auto;
}

/* schedule */

.schedule {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.day {
  background: #21272a;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
}

.day h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #ff7eb6;
}

.day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.day li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s ease;
}

.day li:hover {
  background: #ff7eb6;
}

.time {
  font-weight: bold;
  color: #ffffff;
  min-width: 60px;
  display: inline-block;
}

.schedule-header {
  display: flex;
  gap: 10px; /* Abstand zwischen Icon und Text */
}

.day-icon {
  width: 100px; /* Größe anpassen */
  height: 100px;
}


/* hamburger */
.hamburger {
  margin-bottom: 0.1rem;
  display: none;
}

.bar {
  display: block;
  width: 23px;
  height: 3px;
  margin: 4px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
  background-color: var(--bg-secondary);
}

/* Hero section */
#hero {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.round-big-logo {
  width: 120px;
}

.image {
  display: block;
  margin: 1rem auto;
  width: 100%;
  max-width: clamp(240px, 60vw, 600px); 
  height: auto;
}


.division {
  width: 100%;
  height: 2px;
  background-color: var(--card-background);
  margin: 1.5rem 0;
}
/* textsection */
.textsection {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 5rem;
}

.textsection .btn {
  align-self: center;
  margin: 2rem 0;
}

/* Footer */
#footer {
  background: #111111;
}

#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  min-height: 160px;
  text-align: center;
}

#footer a {
  font-size: 0.8rem;
  color: #fff;
}

#footer a:hover {
  opacity: 0.6;
}

#footer .social {
  margin: 0.9rem 0;
}

#footer .social img {
  width: 20px;
  height: 20px;
}

#footer .social a {
  margin: 0 0.5rem;
}

#footer p {
  font-size: 0.8rem;
}

/* Responsiveness */

@media (max-width: 670px) {
  .navbar .nav-menu {
    position: fixed;
    right: -100vw;
    top: 4.5rem;
    flex-direction: column;
    width: calc(80% - 10px);
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem;
    border-radius: 5px;
    align-items: flex-start;
  }

  .hide-on-hamburger { display: none !important; }

  .navbar .btn {
    margin: 0;
    margin-top: 1rem;
  }

  .nav-menu.active {
    right: 20px;
  }

  .nav-menu .nav-link {
    font-size: 0.9rem;
    margin: 0 0.2rem;
  }

  .nav-menu li {
    margin-bottom: 0.5rem;
    width: 100%;
  }

  .nav-menu .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
  }

  .hamburger.active {
    border: 1px dotted gray;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .project {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-container .btn {
    border-radius: 5px;
    width: 80%;
  }
}