/*
Theme Name: Off Mic Media
Theme URI: https://offmicmedia.com
Description: A custom WordPress theme designed for Off Mic Media. Inspired by the minimalist, grid-based aesthetic of Wieden+Kennedy Amsterdam, this theme uses bold typography, generous white space, and a flexible portfolio grid to showcase your content.
Author: Off Mic Media
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Basic reset and typography */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #111;
  background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5rem 0;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Header navigation */
.site-header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .site-brand {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
}

.primary-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.primary-nav .menu li {
  position: relative;
}

.primary-nav .menu li a {
  font-size: 1rem;
  padding: .5rem 0;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .2s ease;
}

.primary-nav .menu li a:hover {
  color: #888;
}

/* Hero section */
/* Hero section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000; /* fallback color */
}

/* Video inside hero */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Content overlay on hero */
.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 4rem 2rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ddd;
}

/* Project grid */
.projects {
  padding: 2rem 2rem 4rem;
  background-color: #f5f5f5;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-item {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.project-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16/9;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  padding: 1rem;
}

.project-title {
  font-size: 1.25rem;
  margin: 0;
}

.site-footer {
  padding: 2rem;
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid #eee;
  font-size: .875rem;
  color: #666;
}

@media (min-width: 768px) {
  .hero-overlay h1 {
    font-size: 4rem;
  }
}