/* Generic Styles */
* {
  margin: 0;
  font-family: poppins, "sans-serif";
  padding: 0;
  color: var(--dark);
  transition: .3s;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Parallax Styles */
.parallax-container {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  perspective: 1px;
  transform-style: preserve-3d;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.parallax-layer-back {
  transform: translateZ(-1px) scale(2);
}

.parallax-layer-base {
  transform: translateZ(0);
}

.parallax-content {
  position: relative;
  z-index: 1;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--pale);
  position: relative;
}

:root {
  --paper: #f9f9f9;
  --pale: #f5f5f5;
  --primary: #3eb8ba;
  --primary-light: #8ee3e5;
  --dark: #1e1e1e;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

button {
  background-color: transparent;
  outline: none;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
}

:not(h1, h3, h2) {
  font-size: 13.5px;
}

/* Navbar Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color: var(--paper);
  position: fixed;
  border-radius: 10px;
  top: 1%;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow);
  z-index: 1000;
}

nav button {
  padding: 10px 20px;
  border: none;
  outline: none;
  border-radius: 100px;
  background-color: var(--primary);
  color: var(--paper);
}

.logo img {
  height: 30px;
}

.logo a:link,
a:visited,
a {
  color: var(--dark);
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
}

.logo span {
  font-size: 16px;
  margin-left: 10px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Audiowide", sans-serif;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  display: flex;
}

/* Footer Styles */
.footer {
  padding: 6rem 4rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text-light {
  color: var(--pale);
}

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

.footer ul li:last-child {
  margin-bottom: 0;
}

.footer a:link,
a:visited,
a {
  color: var(--dark);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer a:hover {
  opacity: 1;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.social-links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}
/* Footer Responsive Styles */
@media (max-width: 1024px) {
  .footer {
    padding: 4rem 2rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  /* Navbar responsive adjustments */
  nav {
    padding: 1rem 1.5rem; /* Adjust padding for smaller screens */
  }
}

/* *{
  background-position: center;
  background-size: cover;
  background: url("https://images.pexels.com/photos/6153343/pexels-photo-6153343.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-repeat: no-repeat;
  background-attachment: fixed;
} */
