/* PeakWaves Studio - Final Design System */

@font-face {
  font-family: 'Diamond Bridge';
  src: url('../assets/DiamondBridge.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Bavista Soulare';
  src: url('../assets/BavistaSoulare.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
  /* Background */
  --bg-dark: #0B0F14;
  --bg-deep: #111827;
  --bg-gradient: linear-gradient(180deg, #0B0F14 0%, #111827 100%);
  
  /* Teal overlays */
  --teal-dark: #088a91;
  --teal-overlay: rgba(0, 174, 181, 0.3);
  --teal-light: rgba(0, 174, 181, 0.5);
  
  /* Accent colors */
  --turquoise: #00aeb5;
  --turquoise-glow: rgba(0, 174, 181, 0.4);
  --vivid-violet: #585aed;
  --vivid-violet-glow: rgba(88, 90, 237, 0.4);
  --gold: #d4af37;
  --gold-minimal: rgba(212, 175, 55, 0.8);
  
  /* Text colors */
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-teal: rgba(0, 174, 181, 0.3);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  background: var(--bg-dark);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.75px;
  max-width: 900px;
}

.section-hero h1 {
  font-size: 42px !important;
}

.section-hero > div > div > h1 {
  font-size: 42px !important;
}

h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  font-size: 38px;
  line-height: 1.2;
}

.bavista-headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1.15;
}

.bavista-highlight {
  font-family: 'Bavista Soulare', serif;
  font-weight: 400;
  font-size: 1.65em;
}

.headline-body {
  font-family: 'Cormorant Garamond', 'Georgia', serif !important;
  font-weight: 400 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: var(--text-white) !important;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
}

h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}

p {
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  flex-shrink: 0;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-right {
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu li a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Manrope', sans-serif;
}

.nav-menu li a:hover {
  color: var(--turquoise);
}

.nav-menu li a.active {
  color: var(--turquoise);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: rgba(20, 184, 166, 0.7);
  color: #ffffff;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
  background: rgba(20, 184, 166, 0.8);
  border-color: rgba(20, 184, 166, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn-secondary:hover {
  border-color: rgba(148, 163, 184, 0.5);
  color: #c5d4e3;
}

.btn-hero {
  background: #00AEB5;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: #1CCFD6;
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(28, 207, 214, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #00AEB5;
  border: 1px solid #00AEB5;
}

.btn-secondary:hover {
  background: rgba(0, 174, 181, 0.12);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
}

.footer-logo {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.footer-links {
  flex: 1;
  display: flex;
  gap: 3rem;
}

.footer-contact {
  flex: 0 0 auto;
  text-align: right;
}

.footer-logo .logo-container {
  margin: 0 auto;
  display: block;
}

.footer-logo .logo-container {
  padding: 1.5rem 3rem;
}

.footer-logo .logo-container img {
  height: 159px;
  max-width: 529px;
  display: block;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-column ul li a:hover {
  color: var(--turquoise);
}
