body {
  font-family: 'Montserrat', sans-serif;
  background: #f4f1ea;
  color: #2a2a2a;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Roboto';
}

.retro-header {
  text-align: center;
  padding: 5px;
  /* background: linear-gradient(to right, #4a5fa3, #6b4aa3); */
  /* background: url('../images/grid.png'); linear-gradient(to right, #4a5fa3, #6b4aa3); */
  background-image: url(../images/country-road3.png), linear-gradient(to right, #4a5fa3, #6b4aa3);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff
}

.retro-headerSM {
  text-align: left;
  padding: 5px;
  background: linear-gradient(to right, #4a5fa3, #6b4aa3);
  color: #fff;
}

nav {
  text-align: center;
  margin: 20px;
}

/* Main nav links */
nav a {
  color: #4a5fa3;
  text-decoration: none;
  padding: 10px 15px;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
}

nav a:hover {
  text-shadow: 0 0 5px rgba(255,255,255,0.95);
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Hidden dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  background: #f4ecd2;
  min-width: 180px;
  border: 1px solid #d6c9a8;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  padding: 12px;
  text-align: left;
  border-bottom: 1px dashed #c8bb96;
}

/* Hover effects */
.dropdown-content a:hover {
  background: #efe4bf;
}

/* SHOW dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* TEST ENDS */


.video-grid-title {
  display: grid;
  max-width: 1200px;
  margin: auto;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 20px;
  justify-content: center;
}

.video-grid {
  display: grid;
  max-width: 1200px;
  margin: auto;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 20px;
  justify-content: center;
}

.video-card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
  font-family: 'Roboto';
}

.video-card:hover {
  transform: scale(1.03);
}

.video-card img {
  width: 100%;
}

.tv-frame {
  width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: #2b2b2b;
  border-radius: 20px;
  position: relative;
}

.tv-frame video {
  width: 100%;
  border-radius: 10px;
}

.grain {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url('../images/grain.png');
  opacity: 0.08;
  pointer-events: none;
}

.two-column {
  display: flex;
  max-width: 1200px;
  margin: 30px auto;
  gap: 30px;
}

.main-content {
  flex: 2;
}

.sidebar {
  flex: 1;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
}

/* Make it stack on smaller screens */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }
}

.main-content article {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 5px solid #4a5fa3;
  border-radius: 8px;
}

/*BULLETIN BOARD */

.bulletin-board {
  display: flex;
  flex-wrap: wrap;
  background: url('../images/corkboard_dark.jpg');
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 20px auto;
  padding: 30px;
}

/* PAPER NOTE STYLING */

.note {
  width: 260px;
  padding: 10px;
  background: #fdf8e8;
  border: 1px solid #e0d8c5;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.2);
  font-family: 'Courier New', monospace;
  position: relative;
  text-decoration: none;
}

/* slight random rotation feel */
.note:nth-child(odd) {
  transform: rotate(-1.5deg);
}

.note:nth-child(even) {
  transform: rotate(1.5deg);
}

/* PUSH-PIN EFFECT */

.note::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #c0392b;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

/* TYPEWRITTEN HEADER STYLE */

.note h3 {
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* OPTIONAL BOARD BACKING TEXTURE */

body {
/*  background: #e8e1cf;  */
background: #c3b091;
}

/* SUBTLE AGED PAPER EFFECT */

.note {
  background: linear-gradient(
    to bottom,
    #fdf8e8 0%,
    #f4ecd2 100%
  );
}

/* OPTIONAL HOVER EFFECT FOR NOTES */

.note:hover {
  transform: scale(1.03) rotate(0deg);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

/* MOBILE FALLBACK */

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
    align-items: center;
  }

  .schedule {
    width: 90%;
  }
}

/* LAYOUT CSS */

.layout {
  display: flex;
  max-width: 1200px;
  margin: 30px auto;
  gap: 30px;
}

/* TV SCHEDULE SIDEBAR */

.schedule {
  width: 320px;
  background: #f4ecd2;
/*  background: #C3B091; */
  padding: 15px;
  border: 2px solid #d6c9a8;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
  font-family: 'Courier New', monospace;
}

.schedule h2 {
  text-align: center;
  margin-bottom: 5px;
}

.schedule .day {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.schedule ul {
  list-style: none;
  padding: 0;
}

.schedule li {
  padding: 8px 0;
  border-bottom: 1px dashed #bfb38f;
}

.schedule span {
  display: inline-block;
  width: 50px;
  font-weight: bold;
}

