/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif, sans-serif;
  background: #f5f5f5;
  color: #111;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

.logo {
  font-family: 'Orbitron';
  font-weight: bold;
  font-size: 18px;
  color: #f5f5f5;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.ham{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-color: black;
    color: white;
}

.menu {
  position: absolute;
  right: 40px;
  top: 60px;
  background: white;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.menu a {
  text-decoration: none;
  color: black;
}

.menu.active {
  display: flex;
}

/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  color: rgb(255, 61, 61);
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Orbitron';
  font-size: 4rem;
}

/* SECTIONS */
.section {
  padding: 120px 10%;
  min-height: 100vh; /* FULL SCREEN SCROLL */
}

.light {
  background: #f5f5f5;
}

/* WORK GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.card h3 {
  padding: 15px;
}

.card:hover {
  transform: scale(1.03);
}

/* CONTACT */
.contact {
  position: relative;
  height: 100vh;
  color: white;
}

.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 120px 10%;
}

.contact-left h2 {
  font-size: 3rem;
  font-weight: bold;
}

/* SOCIAL LINKS LOOK LIKE TEXT */
.socials a {

  color: white;
  text-decoration: none;   /* removes underline */
  font-size: 2rem;
  opacity: 0.85;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 50px;
}

/* hover effect */
.socials a:hover {
  opacity: 1;
  transform: translateX(5px);
}

/* QUOTE */
.quote {
  position: absolute;
  bottom: 25px;
  left: 25px;
  font-size: 30px;
  color: white;
  opacity: 0.75;
  max-width: 320px;
  z-index: 2;
  font-style: italic;
  padding-left: 30px;
  padding-bottom: 30px;
}

.email{
    margin-bottom: 50px;
    font-size: 3rem;
}