/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0f0f15;
  color: #f0f0f5;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 9rem 0 7rem;
}

h1, h2 {
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 21, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  z-index: 100;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #e07a5f;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #e07a5f;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, #0f0f15, #15151f);
}

.hero-content {
  max-width: 820px;
  padding: 2rem;
}

.hero h1 {
  font-size: 4.8rem;
  margin-bottom: 1.4rem;
}

.highlight {
  color: #e07a5f;
}

.tagline {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  color: #d0d0e0;
  font-weight: 400;
}

.subtext {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  color: #a0a0b5;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background: #e07a5f;
  color: #0f0f15;
}

.btn.primary:hover {
  background: #c96a50;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(224, 122, 95, 0.25);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #e07a5f;
  color: #e07a5f;
}

.btn.secondary:hover {
  background: #e07a5f;
  color: #0f0f15;
}

.btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* About & Works */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.work-card {
  background: #16161f;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #222;
  transition: all 0.35s ease;
}

.work-card:hover {
  transform: translateY(-10px);
  border-color: #e07a5f44;
  box-shadow: 0 20px 50px rgba(224,122,95,0.08);
}

.work-placeholder {
  height: 240px;
  background: linear-gradient(135deg, #1e1e2a, #252535);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #777;
  font-weight: 500;
}

.work-info {
  padding: 2rem;
  text-align: center;
}

.work-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #fff;
}

.work-info p {
  color: #b0b0c5;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Contact */
.contact-text {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: #d0d0e0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.form {
  max-width: 620px;
  margin: 0 auto;
}

.form input,
.form textarea {
  width: 100%;
  padding: 1.1rem;
  margin-bottom: 1.4rem;
  background: #1a1a24;
  border: 1px solid #333;
  border-radius: 10px;
  color: #f0f0f5;
  font-size: 1.05rem;
}

.form input:focus,
.form textarea:focus {
  border-color: #e07a5f;
  outline: none;
}

.form button {
  width: 100%;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
    justify-content: center;
  }

  .hero h1 { font-size: 3.6rem; }
  .section { padding: 6rem 0 5rem; }
  h2 { font-size: 2.6rem; }
}