

.content {

  padding: 1rem 2%;
  display: block; /* Used for old versions of Microsof IE */
}


.tiles {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
}


body {
  background: url('../images/space_background.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  color: white; /* Ensures text is readable everywhere */
}

/* WRAPPER TO KEEP BODY BACKGROUND BEHIND HEADER */
.header-wrapper {
  background: url('../images/space_background.jpg') no-repeat center center;
  background-size: cover;
  width: 100%;
}

/* STAR TREK-THEMED BRIDGE BRIEFING SECTION */
.bridge-briefing {
  position: relative;
  background: none; /* Removed background */
  text-align: center;
  padding: 80px 10% 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  border-top: 5px solid #f4d35e; /* Starfleet Gold Accent */
  border-bottom: 5px solid #f4d35e;
  overflow: hidden;
}

/* REMOVE DARK OVERLAY */
.bridge-briefing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none; /* Fully removed */
  z-index: 1;
}

/* BRIEFING CONTENT - REMOVED BLACK BOX */
.briefing-content {
  max-width: 900px;
  background: none; /* No background */
  padding: 40px;
  border-radius: 0; /* Removed rounded corners */
  box-shadow: none; /* No shadows */
  border: none; /* No borders */
  position: relative;
  z-index: 2;
}

/* HEADER TEXT */
.bridge-briefing h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #f4d35e !important; /* Starfleet Gold */
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 1); /* Stronger text shadow */
}

/* BODY TEXT */
.bridge-briefing p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: white !important;  /* Ensures text remains white */
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 1); /* Stronger shadow */
}

/* CALL-TO-ACTION TEXT */
.bridge-briefing .cta {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 20px;
  color: #f4d35e !important; /* Starfleet Gold */
}

/* STARFLEET-STYLE BUTTON */
.btn-commence {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 35px;
  background: #00b4d8; /* Federation Blue */
  color: white !important;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
  border: none; /* Removed black border */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

.btn-commence:hover {
  background: #0077b6; /* Darker Federation Blue */
  transform: scale(1.1);
}

/*----------- HEADER --------------*/

/* HEADER STYLING */
header {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('../images/sfbanner.png') no-repeat center center;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

/* HEADER TITLE */
header h1 {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 6rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

/* HEADER IMAGE */
header img {
  width: 100%;
  height: auto;
}

/* HEADINGS */
.headings {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.headings h1 {
  font-size: 1.6rem;
  margin: 0 0 0 17px;
  font-family: 'Darker Grotesque', cursive;
}

.motto {
	font-style: italic;
	letter-spacing: 1pt;
	margin-left: 20px;
  font-size: .9rem;
  padding-right: 10px;
  font-family: 'Darker Grotesque', cursive;
}

nav button {
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  font-size: 1.6rem;
  color: rgb(48, 44, 44);
  margin-top: 0;
  margin-right: 0;
}

.logo {
  border-radius: 50px;
}

header button {
  display: block;
}

nav ul.hide {
  display: none;
}
/*----------- NAVIGATION --------------*/

/* NAVIGATION BAR */
nav {
  background: transparent; /* Makes the background match the body */
  text-align: center;
  padding: 10px 0;
}

/* MAKE NAVIGATION HORIZONTAL */
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex; /* Puts links side by side */
  justify-content: center; /* Centers the links */
  background: rgba(0, 0, 0, 0.6); /* Adds a subtle dark overlay for readability */
  padding: 10px 0;
  border-radius: 10px; /* Soft rounded corners */
}

/* NAVIGATION LINKS */
nav ul li {
  margin: 0 15px; /* Spacing between links */
}

/* NAVIGATION LINKS STYLE */
nav ul li a {
  display: block;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
}

/* HOVER EFFECT */
nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3); /* Light transparent hover */
  color: white;
  border-radius: 5px;
}

/* ACTIVE PAGE */
nav ul li.active a {
  background-color: rgba(244, 211, 94, 0.6); /* Starfleet Gold */
  color: black;
  border-radius: 5px;
}


/* ACTIVE PAGE */
nav ul li.active a {
  background-color: #A790A5;
  color: black;
  border-radius: 5px;
}




/*------------- All Columns-------------*/
.homeSection, .ebbySection, .cards, .contactSection {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}  

/*------------- Home Page -------------*/
.homeSection, .ebbySection {
  width: 100%;
  margin-top: 2rem;
  font-family: "Darker Grotesque";
}


.column-1, .column-2, .column-3 {
  border-radius: .5rem;
  background-color: #FFCAAF;
  padding: 1rem;
}

.column-3 img {
  max-width: 95%;
  margin: 0 auto;
  text-align: center;
 }

 .homeSection img 
 {
  margin-left: auto;
  margin-right: 20px;
 }

.weather {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1rem;
  width: 100%;
}

 .weather-summary {
  display: block;
	top: 25px;
	left: 25px;
	background-color: rgba(90, 111, 230, 0.1);
	border: 1px solid #000;
  border-radius: 10px;
	box-shadow: 0 0 30px #111;
  color: black;
  width: 66%;
  justify-content: right;
  }

.weather-summary h3 {
  margin: 0;
  text-align: center;
  text-decoration: underline;
  margin: 10px;
}
.weather-summary p {
  font-family: 'Righteous', cursive;
  line-height : 5px;
  margin: 10px;
 }

 .column-1 img, .column-2 img, .column-3 img {
   margin: 5px auto;
   box-shadow: 5px 5px 5px 5px #7785AC;
   border-radius: .5rem;
 }


 .column-1, .column-2, .column-3 {
  margin: 5px auto;
  box-shadow: 5px 5px 5px 5px #7785AC;
}
 /*----------- Events --------------*/
.upcomming_events {
  font-family: "Darker Grotesque";
  text-align: center;
}

.upcomming_events h3 {
  
  color: black;
  border: 2px double black;
  border-radius: 10px;
  border-width: 2px;
  width: 50%;
  margin: 0 auto;
}


/*-------- Artemis Info -----------*/
/* ARTEMIS INTRO SECTION */
.artemis-intro {
  background: rgba(0, 0, 0, 0.7); /* Darkened background for readability */
  color: white;
  text-align: center;
  padding: 60px 10%;
  border-top: 5px solid #f4d35e; /* Starfleet Gold */
  border-bottom: 5px solid #f4d35e;
}

/* CONTENT WRAPPER */
.artemis-content {
  max-width: 900px;
  margin: auto;
}

/* HEADINGS */
.artemis-intro h2 {
  font-size: 2.5rem;
  color: #f4d35e; /* Starfleet Gold */
  margin-bottom: 20px;
}

.artemis-intro h3 {
  font-size: 1.8rem;
  color: #00b4d8; /* Federation Blue */
  margin-top: 30px;
}

/* BULLET POINTS */
.artemis-intro ul {
  list-style-type: none;
  padding: 0;
}

.artemis-intro li {
  font-size: 1.2rem;
  margin: 10px 0;
  padding-left: 20px;
  text-align: left;
}

/* ADD ICON STYLING FOR CREW ROLES */
.crew-roles {
  text-align: left;
  display: inline-block;
  margin: auto;
}

/* CALL-TO-ACTION TEXT */
.cta-text {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 20px;
  color: #f4d35e; /* Starfleet Gold */
}


/*---------- Directory ------------*/

.cards {
  justify-content: center;
  align-content: center;
  grid-gap: 1rem;
  box-sizing: border-box;
  border: 2px black;
  background-color: #FFCAAF;
  margin: 5px;
 }

 .details {
  border: 1px red;
 }
 
 
/*----------- FOOTER --------------*/
footer {
  max-width: 100%;
  margin: 1rem 0rem;
  background-color: #360568;
  color: white;
  
  border-radius: 10px;
}

.bottom img {
  margin: 1rem 0;
  border-radius: 10px;
}



.footer-address h2 {
  text-align: center;
  color: white;
  font-family:"sigmar one";
  margin: 1rem 0rem;
 
}

.address p, .contact p {
  margin: 1rem 5rem;
  font-family: "Darker Grotesque";
}

.contact p {
  margin-top: 4rem;
}

.footer-social { 
  display: block;
  max-width: 100%;
  margin-left:30px;
  margin-right:30px;
  text-align: right;
}

.footer-social img {
  border-radius: 10px;
}
  
.footer-p {
  text-align: center;
}
/*----------- City --------------*/
.ebbyimage3 {
 margin: auto 0;
}

/*------------- ebbyVille -------------*/



/*----------- Contact --------------*/
.contactSection {
  border: 1px solid black;
  border-radius: 10px;
}


.contact-1 {

  background-color: #FFCAAF;
}


.contact-2 {
  text-align: center;
  background-color: #FFCAAF;
}

.contactMap {
  display: block;
  width: 80%;
  text-align: center;
  border: 2px solid black;
  border-radius: 10px;
  margin: 1rem auto;
  background-color: #FFCAAF;
}

/*----- Clearfix: Force an Element not to collapse -----*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

