/* Greater Nation Insittute */



/* Font and Buttons */
h1 {
  font-size: 5vw; 
}

h2 {
  font-size: 3vw; 
}

h3 {
  font-size: 2vw; 
}

p {
  font-size: 1vw; 
}

p2 {
  font-size: 0.75vw; 
}


.chapter {
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}
.writing {
  background-color: #000;
  color: white;
  text-align: left;
}

.btn {
  display: inline-block;
  font-size: 1.25rem; 
  padding: 1rem 1.5rem;
  background-color: #AAAAAA;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}
.btn:hover {
  background-color: #6699CC;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
 
  h1 {
    font-size: 8vw; 
  }

  h2 {
    font-size: 4vw; 
  }

  h3 {
    font-size: 3vw; 
  }

  p {
    font-size: 2.5vw; 
  }

  p2 {
    font-size: 1.25vw; 
  } 
  
}



/* Body and Background */
body {
  background-color: #000;
  color: white;
  text-align: center;
}



body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/SabalSeal.png');
  background-size: 4vw 4vw;
  opacity: 0.1; 
  pointer-events: none;
  z-index: -1;
}



/* Common */
.navbar {
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: white;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
.nav-links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  background-color: #111;
  flex-direction: column;
  align-items: center;

  max-height: 0;
  overflow: hidden;

  opacity: 0;
  transform: translateY(-10px);

  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}
.nav-links.show {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
}
.nav-toggle {
  display: block;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}
.nav-link:hover {
  background-color: #444;
  color: #6699CC;
}
@media (max-width: 600px) {
  .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}


.footer {
  background-color: #111;
  position: sticky;
  bottom: 0;
  z-index: 1000;
  color: white;
}



/* Homepage */
.header {
  background-image: url('../images/NoKings3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.header .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}
.header .logo img {
  height: 250px;
  width: auto; 	
}



/* About Page */
.about {
  background-image: url('../images/Cantor_with_Flag.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.about .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

/* About Directors */
.directors {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: left;
  color: white;
  text-align: left;
}
.directors .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}



/* Email Page */
.email {
  background-image: url('../images/NoKings2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.email .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}



/* Misc */
.contact {
  text-align: center;
  margin: 40px 0;
}



.support {
  text-align: center;
  margin: 40px 0;
}
.support-links a.btn {
    margin: 10px;
}



.cut {
  text-align: center;
  margin: 5rem 0;
}



.portrait-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}


