/* Styling for the Jedi Temple page */
body {
   font-family: 'Roboto', sans-serif;
   line-height: 1.6;
   background-image: url('images/c2.webp');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   background-color: #000000;
   color: #ffffff;
   text-align: center;
}

header {
   background-color: rgba(0, 0, 0, 0.6);
   padding: 2rem 0;
   border-bottom: 3px solid gold;
}

h1, h2 {
   font-family: 'Orbitron', sans-serif;
   color: gold;
   text-transform: uppercase;
}

h3 {
   font-family: 'Orbitron', sans-serif;
   color: white;
   margin-top: 0;
}

main {
   max-width: 800px;
   margin: 2rem auto;
   background-color: rgba(0, 0, 0, 0.7);
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

hr {
   border: none;
   height: 1px;
   background-color: gold;
   margin: 2rem 0;
}

.location {
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-bottom: 2rem;
}

.location img {
   max-width: 100%;
   height: auto;
   border: 2px solid gold;
   border-radius: 5px;
   box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
   margin-top: 1rem;
}

.location p {
   text-align: left;
   margin: 1rem 0;
   padding: 0 1rem;
}

.back-home-button {
   display: inline-block;
   background-color: gold;
   color: #000;
   padding: 0.75rem 1.5rem;
   text-decoration: none;
   border-radius: 5px;
   margin-top: 2rem;
   font-weight: bold;
   transition: background-color 0.3s ease;
}

.back-home-button:hover {
   background-color: #ffd700;
   box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}