/* Frankfurt-spezifische Stile, die seminar_style.css ergänzen */

:root {
  --frankfurt-primary: var(--primary-color);
  --frankfurt-secondary: var(--secondary-color);
  --frankfurt-accent: var(--accent-color);
  --frankfurt-light: var(--light-text);
  --frankfurt-dark: rgba(255, 255, 255, 0.8);
}

/* Für TV-Optimierung (1920x1080) */
@media (min-width: 1600px) {
  .container {
    max-width: 1800px;
  }

  .header-text h1 {
    font-size: 3.5rem;
  }

  .time {
    font-size: 3rem !important;
  }

  .date {
    font-size: 1.8rem !important;
  }

  .content-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .greeting-section {
    grid-column: span 3;
  }

  .weather-section,
  .events-section {
    grid-column: span 1;
    grid-row: span 2;
  }

  .joke-section,
  .tip-section,
  .transport-section {
    grid-column: span 1;
  }

  .info-card h2 {
    font-size: 2rem !important;
  }

  .joke-container p,
  .tip-container p {
    font-size: 1.5rem !important;
  }

  .transport-icon {
    font-size: 2.5rem !important;
  }

  .transport-info p {
    font-size: 1.3rem !important;
  }

  .event-date {
    font-size: 1.3rem !important;
    min-width: 70px !important;
  }

  .event-info h3 {
    font-size: 1.5rem !important;
  }

  .event-info p {
    font-size: 1.2rem !important;
  }

  .logo {
    height: 150px;
  }
}

.date-time {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.time {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--frankfurt-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.date {
  font-size: 1.4rem;
  color: var(--frankfurt-light);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.greeting-section {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  border-left: 5px solid var(--frankfurt-secondary);
}

.greeting-section h2 {
  color: var(--frankfurt-light);
  margin-bottom: 1.2rem;
  font-size: 2rem;
}

.greeting p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--frankfurt-light);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 1.8rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.15);
}

.info-card h2 {
  color: var(--frankfurt-light);
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--frankfurt-secondary);
  padding-bottom: 0.8rem;
}

/* Wetter-Karte Stile */
.weather-card {
  cursor: pointer;
  overflow: hidden;
  height: 25%;
  min-height: 100px;
}

.weather-slider {
  transition: transform 0.5s ease;
  height: 200%;
}

.weather-slider.show-forecast {
  transform: translateY(-50%);
}

.current-weather {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  height: 50%;
}

.weather-icon img {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.temperature {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--frankfurt-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.weather-desc {
  font-size: 1.6rem;
  color: var(--frankfurt-light);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.forecast {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: rgba(71, 118, 230, 0.2);
  border-radius: var(--border-radius);
  height: 50%;
}

.forecast-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.forecast-day div {
  font-size: 1.2rem;
  color: var(--frankfurt-light);
}

.forecast-day img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

/* Witz und Tipp Stile */
.joke-section {
  border-left: 5px solid var(--frankfurt-accent);
}

.tip-section {
  border-left: 5px solid var(--frankfurt-secondary);
}

.joke-container,
.tip-container {
  font-size: 1.3rem;
  line-height: 1.6;
  padding: 0.8rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.joke-container p,
.tip-container p {
  color: var(--frankfurt-light);
}

/* Verkehrsinfo Stile */
.transport-section {
  border-left: 5px solid var(--frankfurt-primary);
}

.transport-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.transport-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.transport-icon {
  font-size: 2rem;
}

.transport-info p {
  font-size: 1.2rem;
  color: var(--frankfurt-light);
}

/* Veranstaltungen Stile */
.events-section {
  border-left: 5px solid var(--frankfurt-accent);
}

.events-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
}

.event {
  display: flex;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.event:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.event-date {
  background-color: var(--frankfurt-primary);
  color: white;
  padding: 0.8rem;
  border-radius: calc(var(--border-radius) - 2px);
  font-weight: bold;
  min-width: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.event-info h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--frankfurt-light);
}

.event-info p {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Logo Styles */
.logo-container {
  margin-left: 2rem;
}

.logo {
  height: 120px;
  width: auto;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .greeting-section {
    grid-column: span 2;
  }

  .weather-icon img {
    width: 100px;
    height: 100px;
  }

  .temperature {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .header-text h1 {
    font-size: 1.8rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .greeting-section {
    grid-column: span 1;
  }

  .date-time {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .time {
    font-size: 2rem;
  }

  .date {
    font-size: 1.2rem;
  }

  .greeting p {
    font-size: 1.2rem;
  }

  .weather-icon img {
    width: 80px;
    height: 80px;
  }

  .temperature {
    font-size: 2.5rem;
  }

  .weather-desc {
    font-size: 1.3rem;
  }

  .forecast-day img {
    width: 40px;
    height: 40px;
  }

  .info-card h2 {
    font-size: 1.5rem;
  }

  .joke-container,
  .tip-container {
    font-size: 1.1rem;
  }

  .logo-container {
    margin-left: 0;
    margin-top: 1rem;
  }

  .logo {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .time {
    font-size: 1.8rem;
  }

  .date {
    font-size: 1rem;
  }

  .greeting p {
    font-size: 1.1rem;
  }

  .weather-icon img {
    width: 60px;
    height: 60px;
  }

  .temperature {
    font-size: 2rem;
  }

  .weather-desc {
    font-size: 1.1rem;
  }

  .forecast-day div {
    font-size: 0.9rem;
  }

  .forecast-day img {
    width: 30px;
    height: 30px;
  }

  .transport-icon {
    font-size: 1.5rem;
  }

  .transport-info p,
  .event-info p {
    font-size: 0.9rem;
  }

  .event-date {
    min-width: 50px;
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .event-info h3 {
    font-size: 1.1rem;
  }
}
