@font-face {
  font-family: 'Death';
  src: url('death.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'seagram';
  src: url('seagram.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  background: url('rdbg.jpg') no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

 
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Death', sans-serif;
  color: white;
}

 
#menuBtn {
  font-size: 60px;         
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: transparent;   
  border: none;          
  color: white;            
  padding: 10px 15px;     
  letter-spacing: 4px;
}

 
#navbar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.3s;
  z-index: 1000;
  padding-top: 60px;
}

 
#navbar .nav-item {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: white;
  font-size: 50px;        
  letter-spacing: 4px;  
  margin: 15px 10px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s, opacity 0.3s;
}

 
#navbar .nav-item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

h1 {
  font-family: 'Death', sans-serif;
  font-size: 200px;
  text-align: center;
  color: white;
  letter-spacing: 6px;
  margin-top: 50px;

  text-shadow:
    -1px -1px 0 black,
    1px -1px 0 black,
    -1px 1px 0 black,
    1px 1px 0 black;

  font-weight: normal;  
}

#pageFooter {
  position: relative;     
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  font-family: 'Seagram', sans-serif;  
  font-size: 16px;
  display: flex;            
  align-items: center;     
  justify-content: space-between;
  margin-top: 50px;       
  z-index: 100;
}

 
#newsletter {
  display: flex;         
  align-items: center;
  gap: 5px;              
  font-family: 'Seagram', sans-serif;
}

#newsletter input[type="email"] {
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  font-family: 'Seagram', sans-serif;
  color: black;
}

#newsletter button {
  padding: 5px 12px;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background-color: white;
  color: black;
  font-family: 'Seagram', sans-serif;
}

#confirmationMsg {
  margin-left: 10px;
  color: lightgreen;
  font-size: 14px;
  font-family: 'Seagram', sans-serif;
}

#emailInput:disabled {
  color: lightgreen;  
  background-color: #222;
}

#aboutSection {
  max-width: 800px;
  margin: 100px auto;
  color: white;
  font-family: 'seagram', sans-serif !important;  
  line-height: 1.8;
  text-align: center;
  font-size: 22px;  
  margin-top: 20px;  
  margin-bottom: 20px;
}

#aboutSection h2 {
  font-family: 'seagram', sans-serif !important;  
  font-size: 50px;   
  margin-bottom: 30px;
  letter-spacing: 3px;
}

#aboutSection p {
  font-family: 'seagram', sans-serif !important;
  font-size: 22px;  
  margin-bottom: 25px;
}

#editorSection {
  display: flex;
  justify-content: flex-start;   /* align box to left */
  padding: 50px;
  color: white;
  font-family: 'Seagram', sans-serif;
}

.editor-box,
.subscribe-box,
.upcoming-box {
  background-image: url('editor-bg.png');
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.5);  /* black overlay at 50% opacity */
  background-blend-mode: overlay; 
  padding: 30px;
  border-radius: 12px;
  border: 2px solid white;
  width: 600px;               /* width of box */
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: seagram !important;
  color: white !important;
  margin-left: 10px;
  margin-right: 10px;
}

.editor-box h2,
.subscribe-box h2,
.upcoming-box h2{
  font-size: 36px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: seagram !important;
  text-align: center;
}

.editor-box p,
.subscribe-box p,
.upcoming-box p{
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: seagram !important;
}

.subscribe-box li,
.upcoming-box li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: seagram !important;
}


.editor-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;           /* makes it circular */
  position: absolute;
  bottom: 20px;
  right: 20px;
  border: 2px solid white;      /* optional border */
}
