/* style.css */

:root {
  --primary: #1b1c1e; /* dark gray/navy */
  --accent: #febb01;  /* bright yellow */
  --secondary: #4db2ff; /* light blue */
  --bg: #f8f9fa;
  --text: #222;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  margin: 0;
  text-align: center;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loader img {
  width: 230px;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

body.loaded #loader {
  opacity: 0;
  pointer-events: none;
}

/* Header */
header {
  background-color: var(--primary);
  padding: 1rem;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

/* Sections */
section {
  padding: 3rem 1rem;
}

h2 {
  text-align: center;
  color: var(--primary);
}

p, li {
  font-size: 1.1rem;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  margin-top: 1.5rem;
  padding: 0.8rem;
  background-color: var(--accent);
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #e6a700;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem;
}
