@import "loading.css";
:root {
  --primary-color: #0066cc;
  --primary-hover: #0052a3;
  --secondary-color: #1a1d21;
  --accent-color: #ffffff;
  --text-primary: #1a1d21;
  --text-secondary: #6b7280;
  --background-light: #f8fafc;
  --background-card: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.5) 0%, rgba(0, 82, 163, 0.9) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-light);
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

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

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
}

/* Navigation Styles */
nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--background-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 1rem;
}

nav.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

nav ul {
  display: flex;
  flex-direction: column;
}

nav ul li {
  border-radius: 8px;
  overflow: hidden;
}

nav ul li a {
  display: block;
  padding: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: var(--background-light);
  color: var(--primary-color);
}

nav ul li.current a {
  background: var(--gradient-primary);
  color: var(--accent-color);
}

.nav-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-nav-cta {
  margin-top: 1rem;
  text-align: center;
}

.desktop-nav-cta {
  display: none;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.show span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.show span:nth-child(2) {
  opacity: 0;
}

.hamburger.show span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
  pointer-events: none;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .container {
  text-align: center;
  color: var(--accent-color);
  max-width: 800px;
  padding: 2rem 1rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero a {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.hero a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: var(--background-card);
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.heading h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.heading p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Footer Styles */
footer {
  background: var(--secondary-color);
  color: var(--accent-color);
  padding: 3rem 0 2rem;
}

footer .content-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

footer ul li {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

footer ul li:hover {
  color: var(--accent-color);
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-color);
}

.stay-connected div {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.stay-connected img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.stay-connected img:hover {
  transform: scale(1.1);
}

footer .container > p {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--accent-color);
}

.card {
  background: var(--background-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}