/*
Theme Name: Sam Chegini Cinematic Portfolio
Theme URI: https://samchegini.com
Author: Sam Chegini
Description: Minimal cinematic portfolio theme.
Version: 1.0
*/

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

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

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

.container {
  width: 92%;
  max-width: 1280px;
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.logo {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 14px;
  font-weight: 700;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px;
}

.hero {
  padding: 180px 0 100px;
}

.hero-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 11px;
  opacity: .5;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 6rem;
  line-height: .9;
  font-weight: 300;
  margin: 0;
}

.hero-description {
  font-size: 20px;
  opacity: .65;
}

.button-group {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.button-outline,
.button-dark {
  padding: 18px 30px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
}

.button-outline {
  border: 1px solid #000;
}

.button-dark {
  background: #000;
  color: #fff;
}

.featured-image {
  padding-bottom: 100px;
}

.featured-image img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  border-radius: 40px;
}

.section {
  padding: 120px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading h2,
.about-grid h2,
.contact h2 {
  font-size: 4rem;
  line-height: 1;
  font-weight: 300;
  margin: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 32px;
}

.project-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 32px;
  overflow: hidden;
  transition: .3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.project-content {
  padding: 32px;
}

.project-category {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
  opacity: .5;
}

.about-section {
  background: #f5f5f5;
}

.contact {
  text-align: center;
}

.contact-button {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 30px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 11px;
}

@media(max-width: 900px){

.hero-grid,
.about-grid,
.section-heading,
.projects-grid {
  grid-template-columns: 1fr;
  display: grid;
}

.hero h1,
.section-heading h2,
.about-grid h2,
.contact h2 {
  font-size: 3rem;
}

.nav-menu {
  display: none;
}

}
