/* ------------------------------
   GLOBAL BODY STYLING
--------------------------------*/
body {
  font-family: Arial, sans-serif;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  line-height: 1.7;

  /* Dark storm background */
  background-color: #0d0d0d;
  background-image: url("photos/STORM.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;

  /* Make text readable */
  color: #f2f2f2;
}

/* ------------------------------
   HEADER BANNER
--------------------------------*/
header {
  position: relative;
  background-image: url("photos/header.jpg");
  background-size: cover;
  background-position: center;
  height: 240px;
  border-radius: 12px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* Dark overlay */
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Title inside header */
.header-title {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 25px;
  color: #ffffff;
  font-size: 38px;
  font-weight: bold;
  text-shadow: 2px 2px 10px black;
}

/* ------------------------------
   NAVIGATION BAR
--------------------------------*/
nav {
  background: rgba(0, 0, 0, 0.55);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 25px;
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

nav a {
  color: #ffffff;
  font-weight: bold;
  margin: 0 12px;
  text-decoration: none;
  transition: 0.2s;
}

nav a:hover {
  color: #00aaff;
}

/* ------------------------------
   SECTIONS (Glass Panels)
--------------------------------*/
section {
  background: rgba(0, 0, 0, 0.55);   /* dark glass panel */
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 12px rgba(0,0,0,0.5);
  color: #eaeaea;  /* readable text */
}


/* ------------------------------
   HEADINGS
--------------------------------*/
h1, h2 {
  color: #ffffff;
  text-shadow: 1px 1px 4px black;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  color: #cccccc;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ------------------------------
   HORIZONTAL RULE
--------------------------------*/
hr {
  margin: 20px 0;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ------------------------------
   OPTIONAL: Storm Text Boxes
--------------------------------*/
.box {
  background: rgba(0, 0, 0, 0.55);
  padding: 15px;
  border-radius: 10px;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  border-left: 4px solid #00aaff;
}
