/* style.css - Bespoke Styles for AI Voice and Web */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --bg-color: #0A0A0C;
  --text-color: #FFFFFF;
  --neon-purple: #9D4EDD;
  --neon-purple-glowing: #8A2BE2;
  --plane-bg: #121216;
  --plane-bg-hover: #181822;
  
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-mono: 'Space Grotesk', monospace;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--bg-color);
  padding: 1.5rem 2rem 2.5rem 2rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.01em;
  user-select: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Diagonal Trapezoidal Nav Items via background pseudo-element only */
.nav-item-wrapper {
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--neon-purple);
  border-left: none; /* Avoid double borders */
  transform: skewX(-20deg);
  background-color: transparent;
  transition: background-color 0.2s ease;
  pointer-events: none;
  z-index: 1;
}

.nav-item-wrapper:first-child::before {
  border-left: 1px solid var(--neon-purple);
}

.nav-item-wrapper:hover::before {
  background-color: rgba(157, 78, 221, 0.15);
}

.nav-link {
  color: var(--text-color);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-link svg {
  transition: transform 0.2s ease;
}

.nav-item-wrapper:hover .nav-link svg {
  transform: translateY(2px);
}

.header-cta-btn {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid #8A2BE2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  padding: 0.65rem 1.6rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-cta-btn:hover {
  background-color: rgba(138, 43, 226, 0.15);
  transform: translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--plane-bg);
  border: 1px solid var(--neon-purple);
  padding: 0.75rem 0;
  min-width: 180px;
  display: none;
  z-index: 10;
  border-radius: 0;
}

.dropdown-item {
  color: var(--text-color);
  padding: 0.5rem 1.5rem;
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.dropdown-item:hover {
  background-color: rgba(157, 78, 221, 0.2);
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

/* SVG Line Border at bottom of Header */
.header-bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  pointer-events: none;
  z-index: 1;
}

.header-bottom-line svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hero Section */
.hero {
  padding: 10rem 2rem 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-container {
  width: 100%;
  max-width: 550px;
  border: 1px solid var(--neon-purple);
  border-radius: 4px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 0 0 1px var(--neon-purple);
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.hero-subheadline {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.cta-plane-container {
  grid-column: span 2;
  margin-top: 2rem;
  border: 1px solid #8A2BE2;
  background-color: var(--plane-bg);
  border-radius: 4px;
  overflow: hidden;
}

.cta-plane {
  background-color: var(--plane-bg);
  padding: 1.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-color);
}

.cta-buttons-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.book-btn-wrapper {
  display: inline-block;
}

.book-btn {
  background-color: var(--text-color);
  color: #000000;
  border: none;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  padding: 0.75rem 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.book-btn:hover {
  background-color: #E2E2E8;
  transform: translateY(-2px);
}

.cta-phone-link {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.cta-phone-link:hover {
  color: var(--neon-purple);
}

/* Service Showcase ("What We Architect") */
.showcase {
  background-color: var(--bg-color);
  padding: 6rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.showcase-title-container {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--neon-purple);
  padding-bottom: 0.5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  position: relative;
}

.showcase-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.showcase-icon-wrapper {
  width: 50px;
  height: 50px;
  border: 1px solid var(--neon-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background-color: var(--plane-bg);
}

.showcase-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: var(--text-color);
}

.showcase-block-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-item {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.showcase-item::before {
  content: "•";
  color: var(--neon-purple);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.showcase-item strong {
  font-weight: 700;
}

/* Star Accent */
.star-accent {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.star-accent svg {
  width: 100%;
  height: 100%;
  fill: var(--text-color);
  opacity: 0.8;
}

/* Footer */
.footer {
  border-top: 2px solid var(--neon-purple);
  background-color: var(--bg-color);
  padding: 3rem 2rem;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-keyword {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-color);
  display: flex;
  align-items: center;
}

.footer-keyword:not(:last-child)::after {
  content: "|";
  margin-left: 1.5rem;
  color: var(--neon-purple);
}

.footer-right {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-right a {
  color: var(--text-color);
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: var(--neon-purple);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta-plane-container {
    grid-column: span 1;
    clip-path: none;
  }
  
  .cta-plane {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    clip-path: none;
    padding: 2rem;
  }
  
  .cta-buttons-group {
    align-items: flex-start;
    width: 100%;
  }
  
  .book-btn-wrapper {
    width: 100%;
    text-align: center;
  }
  
  .book-btn {
    width: 100%;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .header-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .header {
    position: relative;
    padding-bottom: 1.5rem;
  }
  
  .header-bottom-line {
    display: none;
  }
  
  .hero {
    padding-top: 3rem;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.6rem;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .nav-item-wrapper {
    transform: none;
    border: 1px solid var(--neon-purple);
  }
  
  .nav-link {
    transform: none;
    padding: 0.5rem 1rem;
  }
  
  .hero-headline {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1.2rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-left {
    justify-content: center;
  }
  
  .footer-keyword:not(:last-child)::after {
    display: none;
  }
  
  .footer-keyword {
    border: 1px solid var(--neon-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
  }
}
