/*Basic Page setup for all*/
/*Revision 41*/
/* Remember to purge cache*/
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #2e3b4e;
  color: #fff;
}

header {
  background-color: #445b75;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 20px;
}

h1, h2, h3 {
  margin: 0.5em 0;

}

img.coast-path-img {
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
}

footer {
  margin-top: 40px;
  padding: 20px;
  background-color: #1d1f21;
  text-align: center;
  color: #ccc;
}
/* Index */
.content {
  margin: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #ccc;
}


.email-link {
  color: #007BFF;
  text-decoration: none;
}



/*Electric style page*/

.ele_content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.7;
}

.h1_electrics {
margin: 0.5em 0;
text-align: center;
}


/*Navigation Styles*/

.nav-columns {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.nav-column {
list-style: none;
padding: 0;
margin: 0;
}

.nav-column li {
margin-bottom: 12px;
}

.nav-link,
.nav-button {
display: inline-block;
width: 260px;
box-sizing: border-box; /* Ensures padding is included in the width */
padding: 12px;
background-color: #495b6e;
color: white;
text-decoration: none;
border: none;
border-radius: 6px;
font-size: 16px;
text-align: center;
cursor: pointer;
transition: background-color 0.3s ease;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}


.nav-link:hover,
.nav-button:hover {
background-color: #354758;
}


/* Astronomy Styles */
.astro-body {
  background: radial-gradient(ellipse at bottom, #0d1b2a 0%, #000000 100%);
  color: #e0e6f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.astro-header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(to right, #1a2a4f, #000c1f);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.astro-header h1 {
  font-size: 2.5em;
  margin-bottom: 0.3em;
}

.astro-header h2 {
  font-weight: 300;
  font-size: 1.4em;
  color: #a8d2ff;
}

.astro-link {
  display: inline-block;
  width: 200px;
  padding: 12px 20px;
  margin: 8px auto;
  background: linear-gradient(145deg, #1f2a44, #2a3554);
  color: #a8d2ff;
  text-align: center;
  text-decoration: none;
  border: 1px solid #354a6a;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.1);
}

.astro-link:hover {
  background: linear-gradient(145deg, #2a3554, #1f2a44);
  color: #ffffff;
  border-color: #4aa8ff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  transform: scale(1.05);
}


.astro-item {
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.astro-item figcaption {
  margin-top: 10px;
  color: #a8d2ff;
  font-size: 0.9em;
  font-style: italic;
  line-height: 1.4;
}


.astro-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px;
  gap: 20px;
}

.astro-img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.astro-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.astro-img.wide {
  max-width: 100%;
  border-radius: 30;
}

.fade-in {
  animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.astro-footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  color: #999;
  margin-top: 40px;
  border-top: 1px solid #333;
}

.astro-setup {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(17, 25, 40, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  color: #d6e8ff;
  line-height: 1.6;
}

.astro-setup h2 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #a8d2ff;
}

.astro-reflection {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background-color: rgba(8, 12, 20, 0.75);
  border-left: 5px solid #4aa8ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  color: #f1f4fb;
  font-style: italic;
  line-height: 1.7;
}

.astro-reflection h2 {
  text-align: center;
  color: #9ddcff;
  font-weight: 400;
  font-size: 1.6em;
  margin-bottom: 20px;
}

.astro-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 30px auto;
  padding: 10px;
}

.astro-image img {
  max-width: 400px;
  width: 100%;
  display: inline-block;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.astro-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.astro-image figcaption {
  color: #9fcfff;
  font-size: 0.9em;
  margin-top: 10px;
  font-style: italic;
}

