body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #000000f6;
  color: #ffffff;
}

header, footer {
  color: rgb(255, 255, 255);
  text-align: center;
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
}

section {
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: rgb(255, 255, 255);
}

input, textarea, button {
  padding: 0.5rem;
  font-size: 1rem;
}

button {
  background: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0113b4;
}

#calendar h2,
#booking h2,
#booking label,
#booking p {
  color: #ffffff;
}

/* --- Sample Work Section --- */
#samples {
  text-align: center;
  padding: 0px 20px;
  background-color: #111;
  color: #fff;
}

#samples h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

#samples p {
  margin-bottom: 30px;
  color: #ffffff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 700px;
  height: 200px;
  border-radius: 12px;
}

/* --- Container for Calendar and Sample Videos --- */
#schedule-samples {
  display: flex;
  justify-content: space-between;
  gap: 20px;                  /* spacing between columns */
  width: 100vw;               /* full viewport width */
  margin: 0;
  padding: 0 10px;            /* small padding on sides */
  box-sizing: border-box;
  flex-wrap: nowrap;
  overflow-x: hidden;         /* prevent horizontal scroll */
}

/* Side sample videos */
#schedule-samples .samples {
  flex: 0 0 28%;              /* left & right wider */
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}

/* Center calendar */
#schedule-samples #calendar {
  flex: 0 0 40%;              /* center slightly smaller */
  min-width: 300px;
}

/* --- Make all sample images same size --- */
#schedule-samples .samples img {
  width: 100%;
  height: 200px;              /* uniform height */
  object-fit: cover;          /* keep proportions & crop edges */
  border-radius: 8px;
  display: block;
}

/* ----- RESPONSIVE DESIGN ----- */
@media screen and (max-width: 900px) {
  #schedule-samples {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px;
  }

  #schedule-samples .samples,
  #schedule-samples #calendar {
    max-width: 100%;
  }
}