/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background-color: #09090b;
  color: #fafafa;
  line-height: 1.5;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #27272a;
  z-index: 50;
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #dc2626;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f87171;
}

.nav-logo-text {
  color: #09090b;
  font-weight: 900;
  font-size: 0.75rem;
}

.nav-brand {
  font-size: 1.125rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.nav-link {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #ef4444;
}

/* Sections */
.section {
  padding: 6rem 2rem;
}

.section-intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-video {
  padding: 6rem 2rem;
  background-color: rgba(24, 24, 27, 0.3);
}

.section-portfolio {
  padding: 8rem 2rem;
}

.section-about {
  padding: 8rem 2rem;
  background-color: rgba(24, 24, 27, 0.3);
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.container-medium {
  max-width: 64rem;
  margin: 0 auto;
}

.container-small {
  max-width: 56rem;
  margin: 0 auto;
}

/* Intro Section */
.intro-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.logo-hero {
  width: 12rem;
  height: 12rem;
  margin: 0 auto 3rem;
  background-color: #18181b;
  border: 2px solid #27272a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-hero-text {
  text-align: center;
}

.logo-hero-main {
  font-size: 6rem;
  font-weight: 900;
  color: #ef4444;
  margin-bottom: 0.5rem;
}

.logo-hero-sub {
  font-size: 0.75rem;
  color: #52525b;
  font-weight: 700;
}

.subtitle {
  font-size: 0.75rem;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.title-main {
  font-size: 8rem;
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1;
}

.title-underline {
  width: 6rem;
  height: 0.25rem;
  background-color: #ef4444;
  margin: 0 auto 2rem;
}

.intro-description {
  font-size: 1.875rem;
  color: #d4d4d8;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.highlight {
  color: #ef4444;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-link {
  color: #a1a1aa;
  transition: color 0.2s;
  display: inline-block;
}

.social-link:hover {
  color: #ef4444;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 8rem;
  padding-top: 3rem;
  border-top: 1px solid #27272a;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-number.accent {
  color: #ef4444;
}

.stat-label {
  font-size: 0.75rem;
  color: #71717a;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Video Section */
.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-subtitle {
  font-size: 0.75rem;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.video-title {
  font-size: 3rem;
  font-weight: 900;
}

.video-container {
  aspect-ratio: 16 / 9;
  background-color: #18181b;
  border: 1px solid #27272a;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(127, 29, 29, 0.2), transparent);
}

.video-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-button {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border: 2px solid #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.video-container:hover .video-play-button {
  background-color: #ef4444;
}

.video-play-icon {
  color: #ef4444;
  margin-left: 0.25rem;
  transition: color 0.2s;
}

.video-container:hover .video-play-icon {
  color: #09090b;
}

.video-text {
  color: #52525b;
  font-weight: 700;
  font-size: 0.875rem;
}

.video-subtext {
  color: #3f3f46;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* Portfolio Section */
.section-header {
  margin-bottom: 5rem;
}

.section-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-underline {
  width: 6rem;
  height: 0.25rem;
  background-color: #ef4444;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.portfolio-item {
  cursor: pointer;
}

.portfolio-image {
  aspect-ratio: 1 / 1;
  background-color: #18181b;
  border: 1px solid #27272a;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.portfolio-item:hover .portfolio-image {
  border-color: #dc2626;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent, rgba(127, 29, 29, 0.2));
  opacity: 0;
  transition: opacity 0.2s;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.1;
}

/* Notice Box */
.notice-box {
  margin-top: 5rem;
  border: 1px solid #27272a;
  padding: 3rem;
  text-align: center;
}

.notice-title {
  font-size: 0.75rem;
  color: #52525b;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.notice-text {
  color: #71717a;
  font-size: 1.125rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.about-photo-column {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.about-photo {
  aspect-ratio: 3 / 4;
  background-color: #18181b;
  border: 1px solid #27272a;
  overflow: hidden;
}

.about-photo-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-photo-icon {
  font-size: 6rem;
  margin-bottom: 1rem;
  opacity: 0.2;
}

.about-photo-text {
  color: #52525b;
  font-weight: 700;
  font-size: 0.875rem;
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-paragraph {
  font-size: 1.5rem;
  color: #d4d4d8;
  line-height: 1.6;
}

.skills-section {
}

.skills-title {
  font-size: 0.75rem;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.skill-item {
  background-color: #18181b;
  border: 1px solid #27272a;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: border-color 0.2s;
}

.skill-item:hover {
  border-color: #dc2626;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid #27272a;
}

.service-item {
}

.service-number {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #71717a;
  line-height: 1.6;
}

/* Footer */
.footer {
  border-top: 1px solid #27272a;
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #52525b;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-name {
  font-weight: 900;
}

.footer-divider {
  color: #ef4444;
  font-size: 0.875rem;
}

.footer-tagline {
  color: #52525b;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .title-main {
    font-size: 4rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-links {
    display: none;
  }
}