@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap");
/* 1. LAYOUT & STICKY FOOTER LOGIC */

:root {
  --primary-color: #1a4a7a;
  --secondary-color: #b03a2e;
  --accent-color: #ffb81c;
  --bg-color: #fcfaf2;
  --text-color: #333333;
  --text-light: #555555;
  --white: #ffffff;
  --success-color: #25d366;
  --gradient-red: linear-gradient(135deg, #b03a2e 0%, #d34536 100%);
}

/* Hide scrollbar for Chrome, Safari and Edge on Desktop */
::-webkit-scrollbar {
  display: none;
}

/* Ensure scrolling still works */
html {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
}

body {
  font-family: "Open Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color); /* Dark Gray for main body text */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 85px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-image: url("../assets/images/laptop-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: var(--primary-color);
}

/* Base section style */
section {
  background-color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-top: 5px solid transparent;
}

section:nth-of-type(even) {
  border-top-color: var(--secondary-color);
}

section:nth-of-type(odd) {
  border-top-color: var(--accent-color);
}

section h2 {
  color: var(--text-color);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  section {
    padding: 1.25rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
