:root {
  --bg1: #051712;
  --bg2: #0c2f25;
  --glow: #5cf2a5;
  --text: #e8f7ec;
  --glass: rgba(255, 255, 255, 0.09);
  --primary: #5cf2a5;
  --primary-dark: #4dd894;
}

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

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background-color: #041611;
  background-image: url("/static/background.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}

.page-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  height: 70px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 23, 18, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 242, 165, 0.1);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-weight: 700;
  font-size: 22px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  opacity: 0.85;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  opacity: 1;
  text-shadow: 0 0 6px var(--glow);
}

.nav-link.active {
  opacity: 1;
  color: var(--glow);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--glow);
  box-shadow: 0 0 8px var(--glow);
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  flex: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 20px;
  opacity: 0.9;
  font-weight: 400;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  display: grid;
  gap: 30px;
}

.info-card {
  background: var(--glass);
  border: 1px solid rgba(92, 242, 165, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--glow);
  box-shadow: 0 10px 40px rgba(92, 242, 165, 0.2);
  transform: translateY(-5px);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.info-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 20px;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--glow);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.info-link:hover {
  color: var(--primary-dark);
  text-shadow: 0 0 8px rgba(92, 242, 165, 0.5);
}

.info-link:hover .link-arrow {
  transform: translateX(5px);
}

.link-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.contact-hours {
  background: var(--glass);
  border: 1px solid rgba(92, 242, 165, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  height: fit-content;
}

.hours-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(92, 242, 165, 0.1);
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-weight: 600;
  color: var(--text);
}

.hours-time {
  color: var(--glow);
  font-weight: 500;
}

.hours-note {
  font-size: 14px;
  opacity: 0.7;
  font-style: italic;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 60px 20px 30px;
  background: rgba(5, 23, 18, 0.8);
  border-top: 1px solid rgba(92, 242, 165, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  text-decoration: none;
  color: var(--text);
  opacity: 0.8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--glow);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(92, 242, 165, 0.1);
  opacity: 0.6;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-hours {
    position: static;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
    font-size: 12px;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-subtitle {
    font-size: 18px;
  }

  .info-card {
    padding: 30px;
  }

  .contact-hours {
    padding: 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

