/* style.css */

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

:root {
  /* Modern Contrast Palette */
  --primary-color: #0d9488; /* Teal 600 */
  --secondary-color: #0f766e; /* Teal 700 */
  --accent-color: #f59e0b; /* Amber 500 */
  --dark-color: #1e293b; /* Slate 800 */
  --bg-light: #f8fafc; /* Slate 50 */
  --text-dark: #334155; /* Slate 700 */
  --text-light: #f1f5f9; /* Slate 100 */
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

html, body {
  font-family: var(--font-text);
  color: var(--text-dark);
  background-color: var(--bg-light);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

main {
  flex: 1;
}

/* Base Styles */
a {
  transition: all 0.3s ease;
}

.text-primary { color: var(--primary-color); }
.bg-primary { background-color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.bg-accent { background-color: var(--accent-color); }

/* Custom Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gradient-primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.5);
  color: #ffffff;
}

.btn-accent {
  display: inline-block;
  background: var(--gradient-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.5);
  color: #ffffff;
}

/* Numbered bullet styling for lists */
.list-numbered-accent {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.list-numbered-accent li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.list-numbered-accent li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--accent-color);
  color: #ffffff;
  font-weight: bold;
  font-family: var(--font-heading);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Navigation */
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
}

/* Form inputs focus */
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

/* Cookie Banner (JS Version) */
.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-color: var(--accent-color);
  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-color: #4B5563;
}

/* Utility for object fit */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Checkbox custom */
.custom-checkbox {
  accent-color: var(--primary-color);
  width: 1.25rem;
  height: 1.25rem;
}