/* Import Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

/* Reset & Basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background-color: #001938;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  background: #001e42;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 490px;
  height: 90px;
  display: block;
}




/* Icon-Buttons */
.nav-icons {
  display: flex;
  gap: 0.5rem;
}
.icon {
  background: #02428b;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.icon:hover {
  background: #0350c0;
  transform: translateY(-2px);
}
/* Such-Icon */
.icon.search::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.icon.search::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 10px;
  height: 4px;
  background: #fff;
  transform: rotate(-45deg);
  transform-origin: top left;
}
/* Hamburger-Menü-Icon */
.icon.menu::before,
.icon.menu::after,
.icon.menu div {
  content: "";
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: background 0.2s;
}
.icon.menu::before { top: 12px; }
.icon.menu div       { top: 19px; }
.icon.menu::after    { top: 26px; }

/* Hero */
.hero {
  position: relative;
  height: calc(100vh - 56px);
  overflow: hidden;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  padding: 0 1rem;
}
.hero-text .lead {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.hero-text .highlight {
  font-size: 2.5rem;
  font-weight: 700;
}
.hero-text .highlight span {
  color: #f2c500;
}
.cta-circle {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}

/* Umrandung – runder conic-gradient */
.cta-border {
  width: 224px; /* 200px + 2*12px padding */
  height: 224px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ffffff 0%,
    #ffffff 25%,
    #f2c500 25%,
    #f2c500 50%,
    #ffffff 50%,
    #ffffff 75%,
    #0d2348 75%,
    #0d2348 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 234, 0, 0.8);
}

/* Innerer Kreis */
.cta-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #0d2348;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.cta-inner .small {
  font-size: 1rem;
  font-weight: 700;
  color: #f2c500;
}
.cta-inner .big {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.cta-inner .more {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.5rem;
  color: #ffffff;
}



.banner-cta {
  background-color: #f2c500;
  padding: 3rem 1rem;
  text-align: center;
  color: #001e42;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.banner-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.banner-cta .apply-btn {
  display: inline-block;
  background-color: #001e42;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-cta .apply-btn:hover {
  background-color: #003277;
}
/* Cards Section */
.cards {
  padding: 3rem 0;
  background: #001f4b;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 2rem;
}
.card {
  background: linear-gradient(135deg, #002b5c, #004579);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.card-content {
  padding: 2rem;
  flex-grow: 1;
}
.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  color: #f2c500;
}
.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ics-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: background 0.2s;
}
.ics-link:hover {
  background: rgba(255,255,255,0.3);
}
.countdown {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.countdown div {
  background-color: #ffffff;
  color: #001e42;
  padding: 1rem;
  border-radius: 10px;
  width: 70px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.countdown span {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}

.countdown small {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}

.card-btn {
  background: #f2c500;
  color: #001e42;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s;
}
.card-btn:hover {
  background: #ffd047;
}

/* Modal Overlay Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.modal {
  background: #ffffff;
  color: #001938;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  max-height: 90vh;
  overflow-y: auto;
}

/* Input Field */
#confirmation-code {
  margin-top: 1rem;
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Modal Button */
#modal-close {
  margin-top: 1.5rem;
  background-color: #002b5c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: not-allowed;
  transition: background 0.3s;
  opacity: 0.6;
}
#modal-close.enabled {
  cursor: pointer;
  opacity: 1;
}
#modal-close:hover.enabled {
  background-color: #00458d;
}

.burger-menu {
  position: absolute;
  top: 60px; /* je nach Höhe der Navbar anpassen */
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border-radius: 4px;
  width: 150px;
  z-index: 1000;
}

.burger-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.burger-menu ul li {
  border-bottom: 1px solid #eee;
}

.burger-menu ul li:last-child {
  border-bottom: none;
}

.burger-menu ul li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
}

.burger-menu ul li a:hover {
  background-color: #f0f0f0;
}

.hidden {
  display: none;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-text .lead {
    font-size: 1.5rem;
  }
  .hero-text .highlight {
    font-size: 2rem;
  }
  .cta-inner {
    width: 140px;
    height: 140px;
  }
  .cta-inner .big {
    font-size: 1rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
