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

/* Typography */
body {
  font-family: "Inter", sans-serif;
  background: #f4f4f4;
  color: #111;
  overflow-x: hidden;
}

/* Header */
.header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  z-index: 10;
}
.header .logo {
  font-size: 1.4rem;
  letter-spacing: 4px;
  font-weight: 600;
}
.header .nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
  transition: opacity 0.2s;
}
.header .nav a:hover {
  opacity: 0.6;
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(70%);
}
.hero-content {
  position: absolute;
  bottom: 15%;
  left: 8%;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
  max-width: 400px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* Featured Section */
.featured-section {
  padding: 80px 10%;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 30px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.featured-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.featured-card:hover {
  transform: translateY(-6px);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s forwards;
  animation-delay: 0.2s;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
/* Page Header */
.page-header {
  padding-top: 160px;
  padding-bottom: 40px;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Work Grid */
.work-grid-section {
  padding: 40px 8%;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.work-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.work-card:hover {
  transform: translateY(-6px);
}

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

.work-card-info {
  padding: 18px;
}
.work-card-info h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.work-card-info span {
  opacity: 0.6;
  font-size: 0.9rem;
}
/* Project Header */
.project-header {
  padding-top: 150px;
  text-align: center;
  padding-bottom: 20px;
}
.project-header h1 {
  font-size: 3rem;
}
.project-header p {
  opacity: 0.6;
  margin-top: 6px;
}

/* Media */
.project-media {
  width: 80%;
  margin: 20px auto 50px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.project-media video,
.project-media img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Description */
.project-description {
  width: 80%;
  margin: 0 auto 100px auto;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Back Link */
.back-link {
  text-align: center;
  padding-bottom: 60px;
}
.back-link a {
  text-decoration: none;
  color: #111;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.back-link a:hover {
  opacity: 1;
}
/* About Page */
.about-header {
  padding-top: 150px;
  text-align: center;
  padding-bottom: 30px;
}
.about-header h1 {
  font-size: 3rem;
}
.about-header p {
  opacity: 0.6;
}

.about-content {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 100px;
}
.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
/* Contact */
.contact-header {
  padding-top: 150px;
  text-align: center;
  padding-bottom: 20px;
}
.contact-header h1 {
  font-size: 3rem;
}

.contact-content {
  width: 60%;
  margin: auto;
  padding-bottom: 100px;
}
.contact-info h3 {
  margin-top: 30px;
  font-size: 1.3rem;
}
.contact-info p a {
  color: #111;
  opacity: 0.7;
  text-decoration: none;
}
.contact-info p a:hover {
  opacity: 1;
}

.logo {
  text-decoration: none;
  color: inherit;
  font-size: 1.4rem;
  letter-spacing: 4px;
  font-weight: 600;
}
