body {
  <div class="top-bar">
  <a href="index.html" class="site-title">HIRSTY PRODUCTIONS</a>
  <nav class="top-menu">
    <a href="index.html">Home</a>
    <a href="portfolio.html">Portfolio</a>
  </nav>
</div>
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  background: linear-gradient(180deg, #fff 0px, #fff 300px, #3cb371 60%, #fff 100%);
  min-height: 100vh;
}

@media (max-width: 600px) {
  body {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .services,
  .my-videos,
  .worked-with,
  .contact-us,
  section {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .columns {
    flex-direction: column;
    gap: 1rem;
  }

  button,
  a {
    padding: 1rem;
    font-size: 1.1rem;
  }
}
/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  background: #000;
  color: #fff;
  padding: 1.2rem 4vw;
  font-size: 2rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-sizing: border-box;
}

.site-title {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-menu {
  display: flex;
  gap: 2rem;
  padding-right: 2vw; /* Moves links away from the right edge */
}

.top-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.2s;
}

.top-menu a:hover {
  color: #3cb371;
  text-decoration: underline;
}

/* Welcome Banner styling */
header.welcome-banner {
  background: transparent;
  color: #111;
  text-align: center;
  padding: 5rem 1rem 4rem 1rem;
}

header .welcome-title {
  font-size: 4vw;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.05;
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
}

header .tagline {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

section {
  margin: 2rem auto;
  max-width: 900px;
  padding: 0 1rem;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

h2 {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #222;
  text-align: center;
}

.showreel .video-wrapper {
  text-align: center;
}

.services .service-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.services .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  min-width: 150px;
  background: transparent;
}

.services .service-item svg {
  margin-bottom: 1.5rem;
  stroke: #000 !important;
}

.services .service-item p {
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}

/* My Videos Section */
.my-videos .video-grid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.video-row {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.video-row iframe {
  width: 340px;
  height: 200px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: #fff;
  border: none;
}
.my-videos .video-grid iframe {
  width: 340px;
  height: 200px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: #fff;
  border: none;
}

/* Worked With logos */
.clients .client-logos {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  background: transparent;
}

.clients .client-logos a {
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}

.clients .client-logos a:hover {
  transform: scale(1.07);
}

.clients .client-logos img {
  height: 90px;
  width: auto;
  object-fit: contain;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  display: block;
  transition: box-shadow 0.2s;
}

/* Contact form styling - centered */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
.contact input, .contact textarea {
  padding: 0.5rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  width: 100%;
}
.contact button {
  background: #222;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 0.5rem;
  width: 100%;
}
.contact button:hover {
  background: #444;
}
.contact label {
  align-self: flex-start;
}

/* Social Bottom Bar Styles - bottom left corner */
.bottom-bar {
  width: 100vw;
  background: #000;
  color: #fff;
  padding: 3.5rem 0 2.5rem 0;
  box-sizing: border-box;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  min-height: 180px;
}

.bottom-bar-content {
  padding-left: 2vw;
  padding-bottom: 1.2rem;
  text-align: left;
}

.bottom-bar-title {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.bottom-bar-icons {
  margin-top: 0.7rem;
}

.bottom-bar-icons a {
  display: inline-block;
  margin-right: 1.3rem;
  vertical-align: middle;
}

.bottom-bar-icons svg {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 2px;
}

.bottom-bar-icons a:last-child {
  margin-right: 0;
}

.bottom-bar-icons a:hover svg {
  transform: scale(1.13);
}

/* Remove default footer rights bar */
footer {
  display: none !important;
}
.services,
.my-videos,
.worked-with,
.contact-us,
section {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

