/*  margin & padding navigatè a */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

 
body {
  overflow-x: hidden;
  width: 100vw;
  height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #004080;
}
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/storage/emulated/0/DCIM/Facebook/FB_IMG_1750506587841.jpg') no-repeat center center/cover;
  filter: blur(0px);
  z-index: 9999; 
}

.splash-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  z-index: 10000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.splash-content button {
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  background-color: #004080;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.splash-content button:hover {
  background-color: #0056b3;
}

/* Header */
header {
  background-color: #004080;
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.site-logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.site-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-left: 20px;
}

nav {
  width: 100%;
  background-color: #f8f8f8;
  padding: 15px 0;
  margin-top: 10px;
  border-top: 2px solid #ccc;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #004080;
  font-weight: bold;
  padding: 10px 20px;
  background-color: yellow;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #004080;
  color: white;
}

/* Sections */
section {
  padding: 20px;
  background-color: #004080;
  margin: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  color: white;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  border: 4px solid #ccc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  border: 4px solid #999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  margin-top: 40px;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}

input,
textarea {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  font-size: 16px;
}

label {
  font-weight: bold;
  color: white;
}

h1, h2, h3 {
  color: yellow;
  margin-bottom: 10px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .site-title {
    margin-left: 0;
    margin-top: 10px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .splash-content {
    width: 90%;
    padding: 20px;
  }
}
