/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ===== VARIABLES ===== */
:root {
  --color-bg: #0f0f0f;
  --color-bg-alt: #161616;
  --color-text: #f5f5f5;
  --color-text-muted: #b5b5b5;
  --color-accent: #6ee7ff;

  --container-width: 1100px;
  --radius: 12px;
}

/* ===== GLOBAL ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--color-text-muted);
}

a {
  color: var(--color-text);
  text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  background-color: var(--color-accent);
  color: #000;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-text-muted);
  color: var(--color-text);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo a {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.nav-links a:hover {
  color: var(--color-text);
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.subtitle {
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

.tags {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1rem;
}

.project-video iframe,
.project-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service {
  background-color: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
}

.service ul {
  list-style: none;
  margin-top: 1rem;
}

.service li {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

/* ===== PRICING ===== */
.pricing-intro {
  margin-bottom: 2rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background-color: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
}

/* ===== ABOUT ===== */
.about p {
  max-width: 700px;
}

/* ===== CONTACT ===== */
.contact a {
  color: var(--color-accent);
  font-weight: 600;
}

.social-links {
  margin-top: 1.5rem;
}

.social-links a {
  margin-right: 1rem;
  color: var(--color-text-muted);
}

.social-links a:hover {
  color: var(--color-text);
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== TEXT CENTERED SECTIONS ===== */
.hero,
.projects h2,
.services h2,
.pricing h2,
.pricing-intro,
.footer {
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-actions {
  justify-content: center;
}

.project-card {
  text-align: center;
}

.pricing-card {
  text-align: center;
}

.pricing-details {
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.services-grid {
  text-align: center;
}

/* ===== ABOUT & CONTACT CENTERED ===== */
.about,
.contact {
  text-align: center;
}

.about p,
.contact p {
  max-width: 600px;
  margin: 0 auto;
}

.project-video {
  position: relative;
  display: inline-block;
}

.project-video img {
  width: 100%;
  border-radius: var(--radius);
}

.project-video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--color-accent);
  pointer-events: none;
}
.social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

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

.nav a {
  font-size: 0.95rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  opacity: 1;
  font-weight: 600;
}
@media (max-width: 768px) {
  .nav {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

html {
  scroll-behavior: smooth;
}
#projects,
#services,
#pricing,
#contact {
  scroll-margin-top: 35px;
}


/* ===== HERO BUTTONS CENTER MOBILE ===== */
@media screen and (max-width: 768px) {

  .hero .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important;
    width: 100%;
    padding: 0 1rem;
  }

  .hero .hero-actions a {
    width: 100% !important;
    max-width: 300px;
    text-align: center;
  }
}

/* ===== HEADER MOBILE ===== */
@media screen and (max-width: 768px) {

  .header-inner {
    padding: 0.3rem 1rem !important;
  }

  .logo {
    font-size: 1rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
  }

  .nav a {
    font-size: 0.85rem;
    opacity: 0.85;
    padding: 0.3rem 0.6rem;
  }
}


