@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/PlayfairDisplay-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/SourceSans3-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/SourceSans3-SemiBold.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --orange: #f7931e;
  --charcoal: #2d2d2d;
  --cream: #fdf9f2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: radial-gradient(circle at top, #fff7ec 0%, #f7f1e6 48%, #efe3d1 100%);
  display: flex;
  justify-content: center;
}

body.layout-center {
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

body.layout-top {
  align-items: flex-start;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.card,
.page {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card {
  width: min(1100px, 100%);
}

.page {
  width: min(1100px, 100%);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

header {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.card > header {
  border-bottom: none;
  padding-bottom: clamp(1.25rem, 3vw, 2.1rem);
}

.brand {
  flex: 1 1 240px;
}

.brand h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin: 0 0 0.35rem;
}

.brand p {
  margin: 0;
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  color: rgba(45, 45, 45, 0.8);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 1rem;
}

.nav__link {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav__link:hover {
  color: var(--orange);
}

.nav__link--active {
  border-color: var(--orange);
  color: var(--orange);
}

.nav--footer {
  gap: 0.5rem;
  font-size: 0.95rem;
}

.nav--footer span {
  color: rgba(45, 45, 45, 0.4);
}

.media {
  position: relative;
  background: #000;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.badge {
  margin: clamp(-2rem, -4vw, -1.5rem) auto clamp(1.5rem, 4vw, 2.5rem);
  max-width: calc(100% - clamp(1.5rem, 4vw, 3rem));
  background: rgba(245, 132, 37, 0.98);
  color: #fff;
  padding: clamp(0.75rem, 2.4vw, 1.35rem) clamp(1rem, 3vw, 2rem);
  border-radius: 18px;
  font-size: clamp(1rem, 2.8vw, 1.4rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.35;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.badge small {
  display: block;
  font-size: 0.85em;
  opacity: 0.95;
  font-weight: 400;
}

.workshop {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  gap: 1.5rem;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  line-height: 1.4;
  border-top: 1px solid rgba(45, 45, 45, 0.08);
}

.workshop h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
  color: var(--charcoal);
  text-align: center;
}

.workshop-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  margin: 0 0 0.5rem;
  color: var(--charcoal);
  font-weight: 600;
}

.workshop-subtitle {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin: 0 0 0.75rem;
  color: var(--orange);
  font-weight: 600;
}

.workshop-location {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.75rem;
  color: var(--orange);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
}

.workshop-content {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .workshop-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.workshop-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.workshop-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
  border-radius: 0 0 12px 12px;
}

.workshop-info,
.workshop-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem 0;
  border-radius: 12px 12px 0 0;
  flex: 1;
  min-height: 0;
}

.workshop h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  margin: 0 0 0.75rem;
  color: var(--charcoal);
  font-weight: 600;
}

.workshop-details-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  margin: 0 0 0.75rem;
  color: var(--charcoal);
  font-weight: 600;
}

.workshop h4 {
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  margin: 0;
  font-weight: 600;
  color: var(--charcoal);
}

.workshop-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.workshop-item i {
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
}

.icon-palette {
  font-size: 1.5rem;
}

.icon-brush {
  font-size: 1.5rem;
}

.icon-clock {
  font-size: 1.3rem;
}

.icon-check {
  color: #28a745;
  font-weight: 600;
  font-size: 1.2rem;
}

.icon-group {
  font-size: 1.3rem;
}

.icon-euro {
  font-size: 1.3rem;
  font-weight: 600;
}

.workshop-item-text {
  flex: 1;
}

.workshop-item-text p {
  margin: 0;
  line-height: 1.4;
}


.workshop-features {
  margin: 0.5rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
}

.workshop-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.workshop-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 600;
  font-size: 1.1rem;
}

.instructors {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.instructors img {
  width: 175px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.workshop-btn {
  display: block;
  background: var(--charcoal);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
  transition: background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.workshop-btn:hover {
  background: rgba(45, 45, 45, 0.85);
  text-decoration: none;
  color: #fff;
}

.workshop p {
  margin: 0;
}

.workshop strong {
  font-weight: 600;
}

.contact {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  gap: 0.75rem;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.5;
  border-top: 2px solid rgba(45, 45, 45, 0.15);
  margin-top: 1rem;
}

.contact h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
  color: var(--charcoal);
}

.contact strong {
  font-weight: 600;
}

.contact p {
  margin: 0;
}

.contact span {
  display: inline-block;
  min-width: 5rem;
  color: rgba(45, 45, 45, 0.75);
}

main {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  gap: 1.25rem;
}

main h2,
main h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--charcoal);
  margin: 0 0 0.35rem;
}

main h2 {
  font-size: 1.6rem;
}

main h3 {
  font-size: 1.3rem;
}

main p,
main li {
  margin: 0;
  line-height: 1.55;
  font-size: 1rem;
}

main ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

footer {
  padding: 1.25rem clamp(1.75rem, 4vw, 3rem) 2rem;
  font-size: 0.95rem;
  color: rgba(45, 45, 45, 0.65);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
  align-items: center;
}

a {
  color: inherit;
}

a[href^="mailto:"] {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

a[href^="mailto:"]:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  header,
  footer {
    flex-direction: column;
    text-align: center;
  }

  .badge {
    border-radius: 14px;
  }

  body {
    padding: 1.5rem;
  }

  .instructors {
    flex-direction: column;
  }

  .instructors img {
    width: 100%;
    max-width: 200px;
  }

  .workshop-info,
  .workshop-details {
    padding: 1rem;
  }
}

