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

:root {
  /* Modern Colorful Palette */
  --primary-color: #0284c7; /* Sky Blue - emphasizes clarity/vision */
  --secondary-color: #f59e0b; /* Amber - warm, energetic */
  --dark-color: #0f172a; /* Slate 900 - high contrast text */
  --light-color: #f8fafc; /* Slate 50 - clean background */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

/* 
==============================================
BASE STYLES
==============================================
*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark-color);
}

/* Text Accents */
.text-accent {
  color: var(--primary-color);
}

.text-accent-secondary {
  color: var(--secondary-color);
}

/* 
==============================================
MOBILE MENU LOGIC
==============================================
*/
.mobile-menu-open {
  display: flex !important;
  flex-direction: column;
}

/* 
==============================================
CUSTOM COMPONENTS & UTILITIES
==============================================
*/
.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(2, 132, 199, 0.4);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

/* Custom Numbered List */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
}

.custom-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: var(--font-heading);
}

.list-wrapper {
  counter-reset: list-counter;
}

/* 
==============================================
COOKIE BANNER
==============================================
*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background: #4B5563;
}