/* Import Google Fonts in your HTML head (see usage notes below) */

/* Global Styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 18px; /* Increased base size */
}

a {
  text-decoration: none;
  color: inherit;
}

/* Headings use Bentham */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bentham', serif;
}

/* Header with Logos as Hyperlinks */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #121212;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.header img {
  max-height: 50px;
  width: auto;
}

/* Hero Section */
.hero {
  position: relative;
  margin-top: 70px; /* Offset fixed header */
}

.hero video {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Styles */
.section {
  padding: 4rem 2rem;
}

.section.dark {
  background-color: #1c1c1c;
}

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #f0cc6d;
  font-size: 2.5rem;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Two-Column Layout */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.two-column .column {
  flex: 1;
  min-width: 300px;
}

/* Training Areas Grid */
.training-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.training-card {
  background: #1c1c1c;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 1.1rem;
}
/* Workshops Slider */
.workshops-slider {
  position: relative;
  display: flex;
  flex-wrap: nowrap; /* Force a single row */
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  user-select: none; /* Prevent text selection while dragging */
  scroll-behavior: smooth; /* Smooth scrolling when using scrollTo */
}


.workshops-slider::-webkit-scrollbar {
  display: none;
}

.workshop-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 300px; /* Fixed width for each card */
  background: #1c1c1c;
  padding: 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* Swipe Indicator - default position (mobile) */
.swipe-indicator {
  position: absolute;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  font-size: 1rem;
  color: #f0cc6d;
  background: rgba(18, 18, 18, 0.8);
  padding: 0.5rem;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}

/* For desktop: center the swipe indicator horizontally */
@media (min-width: 768px) {
  .swipe-indicator {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
  }
}

.workshop-card h3 {
  margin-top: 0;
  color: #f0cc6d;
  font-size: 2rem;
}

.workshop-card ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  padding: 0;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: #121212;
  padding: 2rem;
  border-top: 1px solid #333;
  font-size: 1rem;
  text-align: center;
}

.footer-content p,
.footer-content a {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.footer-content a {
  color: #f0cc6d;
}

.footer-content .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-content .social-icons img {
  width: 30px;
  height: 30px;
}

/* Floating Sign Up Button */
.floating-signup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f0cc6d;
  color: #121212;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s;
  font-size: 1.1rem;
}

.floating-signup:hover {
  transform: scale(1.05);
}

/* Container for Forms & Common Pages */
.container {
  max-width: 700px;
  margin: auto;
  background: #1c1c1c;
  padding: 2rem;
  border: 1px solid #333;
  border-radius: 8px;
  margin-top: 80px;
  font-size: 1.1rem;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

input, select {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background: #222;
  border: 1px solid #444;
  border-radius: 4px;
  color: #e0e0e0;
  font-size: 1.1rem;
}

/* Number Input for Employee Count */
.number-input {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.number-input button {
  background: #222;
  border: 1px solid #444;
  color: #e0e0e0;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.2rem;
  width: 2.5rem;
  border-radius: 4px;
}

.number-input button:hover {
  background: #333;
}

.number-input input {
  width: 100%;
  text-align: center;
  margin: 0 0.5rem;
  padding: 0.5rem;
  border: 1px solid #444;
  background: #222;
  color: #e0e0e0;
  border-radius: 4px;
  font-size: 1.1rem;
}

/* Table Styles (for forms) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

table, th, td {
  border: 1px solid #444;
}

th, td {
  padding: 0.3rem;
  text-align: left;
  font-size: 1rem;
}

th {
  background-color: #222;
}

table input, table select {
  width: 100%;
  box-sizing: border-box;
  background: #222;
  border: 1px solid #444;
  border-radius: 2px;
  color: #e0e0e0;
  padding: 0.2rem;
  font-size: 1rem;
}

/* Animation */
.slide-fade {
  animation: slideFadeIn 0.4s ease-out;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility: No signups message */
.no-signups {
  font-style: italic;
  color: #aaa;
  margin-bottom: 1rem;
}
