:root {
  --primary: #ff6600;
  --bg: #f9f9f9;
  --text: #111;
  --card-bg: #fff;
  --btn-bg: #ff6600;
  --btn-hover: #e65700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(135deg, #3b0066, #8a00b9);
  color: #fff;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.logo {
  max-width: 240px;
  width: 30vw;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}


.headline {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.subheadline {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.video-section {
  padding: 40px 20px;
  background: #000;
  text-align: center;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* === CAROUSEL WRAPPER === */
.carousel-section {
  margin: 60px 0 40px;
  padding: 0 20px;
}

.carousel-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--title-color);
  text-align: center;
}

.carousel-container {
  overflow-x: auto;
}

.carousel {
  display: flex;
  gap: 20px;
  padding: 10px 20px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 20px;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* === CARD === */
.card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--card-bg);
  border-radius: 12px;
  width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.3;
}

.card-content p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: auto;
  line-height: 1.4;
}

/* === BUTTON === */
.btn {
  background-color: var(--btn-bg);
  color: white;
  text-align: center;
  padding: 10px 14px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: var(--btn-hover);
}

/* === FOOTER === */
footer {
  text-align: center;
  background: #111;
  color: #ccc;
  padding: 30px 15px;
  font-size: 0.85rem;
}

/* Remove scrollbar visual no desktop */
@media (min-width: 1024px) {
  .carousel-container::-webkit-scrollbar {
    display: none;
  }
  .carousel-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

