@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
  --bg-dark: #0e0e0e;
  --text-light: #f5f5f5;
  --accent: #cccccc;
  --blur-bg: rgba(0, 0, 0, 0.6);
  --font-main: 'Helvetica Neue', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--blur-bg);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.signature-container svg,
.signature-footer svg {
  height: 50px;
  width: auto;
}

.signature-svg text.script {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  fill: white;
}
.signature-svg text.plain {
  font-family: sans-serif;
  font-size: 12px;
  fill: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.8rem;
  cursor: pointer;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar nav ul li a {
  color: var(--text-light);
  text-decoration: none;
}
.navbar nav ul li a:hover {
  color: var(--accent);
}

.fullscreen-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fullscreen-section h1 {
  font-size: 2rem;
  margin-top: 5rem;
}

footer {
  background: var(--blur-bg);
  text-align: center;
  padding: 2rem 1rem;
}

.signature-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar nav {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    background: var(--blur-bg);
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1rem;
    width: 100%;
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar nav ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
  }
}
