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

body {
  font-family: 'Trebuchet MS', sans-serif;
  background-color: #041F2C;
  color: #FDFDFD;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Hero Section */
.hero {
  background-image: url('pirate-trio.png'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
}

.title {
  font-family: 'Pirata One', cursive;
  font-size: 4rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #FFD700, #b8860b, #8B4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 3px 3px 0 ##db9c48, 5px 5px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.5rem;
  color: #FDFDFD;
}

/* Content */
.content {
  padding: 2rem;
  text-align: center;
  background-color: #063244;
}

.content p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background-color: #02151D;
  color: #CCCCCC;
}
