/* style.css */

/* Page background */
body {
  margin: 0;
  padding: 0;
  background-image: url('https://st3.depositphotos.com/12034556/19115/i/450/depositphotos_191159178-stock-photo-scene-stage-light-with-colored.jpg');
  background-size: cover;       /* Make image cover the whole screen */
  background-position: center;  /* Center the image */
  background-repeat: no-repeat; /* Prevent tiling */
  height: 100vh;                 /* Full viewport height */
  font-family: Arial, sans-serif;
  color: white; /* Makes ALL text white */
}

/* Link styles */
a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: #dddddd;
}

/* Box1 styles */
.box1 {
  background-color:ghostwhite;
  width: 100px;
  height: 1000px;
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  padding: 25px;
  box-sizing: border-box;
  color: black;
}

/* Generic box styles */
.box {
  background-color: ghostwhite;
  padding: 20px;
  color: black;
  border-radius: 5px;
}


.home-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #007BFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    border: 2px solid #007BFF;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    
}

.home-btn:hover {
    background-color: #007BFF;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}




.article-preview {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.article-preview a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
}






#head {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  margin-top: 20px; /* space from top */
}

#head img {
  width: 800px;
  height: auto;
}



.nav-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* space between buttons */
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #ff4ecd, #7a5cff);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

/* hover effect = makes it feel alive */
.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* click effect */
.btn:active {
  transform: scale(0.98);
}


















