/* SMOKE TEXT Design #072 - ACN Agency */
/* Simple, working implementation - smoke as background layer */

:root {
  --deep-charcoal: #1a1a1a;
  --warm-ash: #8b8b8b;
  --white: #ffffff;
  --amber: #d4a574;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background-color: var(--deep-charcoal);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smoke Canvas - Fixed background layer */
#smoke-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Main content wrapper - always above smoke */
.main-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(26,26,26,0.95), transparent);
}

.logo {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--warm-ash);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  padding-top: 6rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.1;
}

.hero .tagline {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--amber);
  font-weight: 400;
  letter-spacing: 0.3em;
  margin-bottom: 3rem;
}

.hero .cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
}

.hero .cta-button:hover {
  background: var(--amber);
  color: var(--deep-charcoal);
}

/* Page Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  color: var(--white);
  text-align: center;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-content p {
  font-size: 1.2rem;
  color: var(--warm-ash);
  line-height: 1.8;
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--amber);
  background: rgba(255,255,255,0.05);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.service-card p {
  color: var(--warm-ash);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-ash);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--amber);
  background: rgba(255,255,255,0.08);
}

/* Contact Section */
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  color: var(--warm-ash);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--amber);
  color: var(--deep-charcoal);
}

/* Docs Section */
.docs-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.doc-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.doc-item:hover {
  border-color: var(--amber);
}

.doc-item span {
  color: var(--white);
  font-size: 1.1rem;
}

.doc-item small {
  color: var(--warm-ash);
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--warm-ash);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding-top: 8rem;
  }
  
  section {
    padding: 4rem 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-ash);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 60px; }
}
