@import "tailwindcss";

/* Reset some default styles */
body,
h1,
p,
ul,
li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: none;
}

.site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background: url("images/background-1.jpeg") no-repeat center center fixed;
  background-size: cover;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1s ease;
  filter: blur(2px);
  transform: scale(1.1);
}

.site-content {
  position: relative;
  z-index: 1;
}

/* Header styles */
.header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 24px 32px 16px 32px;
  border-bottom: 2px solid #e0e0e0;
}

.logo {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.logo img {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 600px;
}

.header-content p {
  margin: 0;
  max-width: 600px;
  text-align: center;
}

.header h1 {
  font-size: 2.5rem;
  color: #2a3d4c;
  margin-bottom: 6px;
  font-weight: bold;
  text-align: center;
}

.header p {
  font-size: 1.1rem;
  color: #5a6e7f;
  margin-top: 0;
}

/* Navbar styles */
.navbar {
  background: #2a3d4c;
  padding: 0 32px;
}

.navbar ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
}

.navbar li {
  margin-right: 28px;
}

.navbar li:last-child {
  margin-right: 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 16px 0;
  display: block;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #ffb347;
}

.grid-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  padding: 0 24px;
}

.grid-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(42, 61, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.grid-item a {
  text-decoration: none;
  color: #2a3d4c;
  font-size: 1.25rem;
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: background 0.2s, color 0.2s;
}

.grid-item:hover,
.grid-item:focus-within {
  box-shadow: 0 4px 24px rgba(42, 61, 76, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.grid-item a:hover,
.grid-item a:focus {
  background: #2a3d4c;
  color: #fff;
}
