:root {
  --primary-color: #EE4266;
  --secondary-color: #C0392B;
  --accent-color: #577BC1;
  --light-color: #F2E8E8;
  --dark-color: #2E1A1A;
  --gradient-primary: linear-gradient(135deg, #EE4266 0%, #C0392B 100%);
  --hover-color: #A93226;
  --background-color: #F2F2F2;
  --text-color: #000000;
  --border-color: rgba(238, 66, 102, 0.3);
  --divider-color: rgba(238, 66, 102, 0.2);
  --shadow-color: rgba(238, 66, 102, 0.15);
  --highlight-color: #5CB338;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.65;
}

.neumorphism {
  box-shadow: 14px 14px 28px var(--shadow-color),
    -14px -14px 28px rgba(255, 255, 255, 0.85);
  border-radius: 22px;
}

.neumorphism-inset {
  box-shadow: inset 14px 14px 28px var(--shadow-color),
    inset -14px -14px 28px rgba(255, 255, 255, 0.85);
  border-radius: 22px;
}

header {
  padding: 1.4rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(242, 242, 242, 0.95);
  border-bottom: 2px solid var(--border-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}

.navigation a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.navigation a:hover {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.navigation a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navigation a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 24px;
}

.hamburger span {
  height: 4px;
  background: var(--text-color);
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(238, 66, 102, 0.92), rgba(192, 57, 43, 0.85)),
    url('./img/bg.jpg') center/cover fixed;
  color: var(--light-color);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="18" cy="25" r="2.2" fill="rgba(87,123,193,0.18)"/><circle cx="82" cy="75" r="2.8" fill="rgba(92,179,56,0.18)"/><circle cx="45" cy="12" r="1.8" fill="rgba(87,123,193,0.18)"/><circle cx="12" cy="65" r="2.5" fill="rgba(92,179,56,0.18)"/><circle cx="88" cy="30" r="1.5" fill="rgba(87,123,193,0.18)"/><circle cx="55" cy="88" r="2" fill="rgba(92,179,56,0.18)"/><circle cx="25" cy="50" r="1.7" fill="rgba(87,123,193,0.18)"/><circle cx="75" cy="35" r="2.3" fill="rgba(92,179,56,0.18)"/></svg>') repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
}

.hero h1 {
  font-family: var(--main-font);
  font-size: 4.2rem;
  margin-bottom: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navigation {
    display: none;
  }

  .mobile-menu:checked~.navigation {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(242, 242, 242, 0.95);
    padding: 1rem;
  }

  .navigation ul {
    flex-direction: column;
    gap: 1rem;
  }

  .header-container {
    justify-content: center;
  }

  .logo {
    margin: 0 auto;
  }
}

/* Footer styles */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 2rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--highlight-color);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    margin-top: 1rem;
  }
}