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

:root {
  --brand-main: #064E3B; /* Deep Emerald */
  --brand-highlight: #D97706; /* Amber */
  --ui-base-light: #F9FAFB; /* Soft Gray */
  --ui-base-dark: #1F2937; /* Charcoal */
  
  --gradient-primary: linear-gradient(135deg, var(--brand-main), #047857);
  --gradient-accent: linear-gradient(135deg, var(--brand-highlight), #F59E0B);
  
  --font-accent: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ui-base-dark);
  background-color: var(--ui-base-light);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .accent-heading {
  font-family: var(--font-accent);
}

.max-bounds-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Custom Navigation */
.nav-menu-layer {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .nav-menu-layer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    z-index: 50;
  }
  .nav-menu-layer.active {
    display: flex;
  }
}

.hamburger-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

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

/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ui-base-dark);
  color: white;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}

.cookie-actions button {
  font-family: var(--font-accent);
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

#accept-cookie {
  background-color: var(--brand-highlight);
  color: #fff;
}
#accept-cookie:hover {
  background-color: #B45309;
}

#decline-cookie {
  background-color: #4B5563;
  color: white;
  margin-left: 0.5rem;
}
#decline-cookie:hover {
  background-color: #374151;
}

/* Unique Structural Classes */
.cardio-visual-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.overlay-tint {
  background: rgba(31, 41, 55, 0.7);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.content-front {
  position: relative;
  z-index: 10;
}

.info-block-item {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  transition: transform 0.3s ease;
}
.info-block-item:hover {
  transform: translateY(-5px);
}

.num-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--brand-highlight);
  color: white;
  font-weight: bold;
  font-family: var(--font-accent);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.list-row-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.input-field-custom {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}
.input-field-custom:focus {
  outline: none;
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

.action-btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  color: white !important;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.3s, transform 0.3s;
}
.action-btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer-area-wrap {
  background-color: var(--ui-base-dark);
  color: #D1D5DB;
  padding: 3rem 0;
}