* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

/* bridden.com text */
.site-name {
  position: absolute;
  bottom: 33%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6.5em;
  font-weight: 900;
  color: #4a90e2;
  font-family: Arial, sans-serif;
  text-transform: lowercase;
  text-align: center;
  text-shadow:
    -1px -1px 0 #222,
     1px -1px 0 #222,
    -1px  1px 0 #222,
     1px  1px 0 #222;
  z-index: 3;
}

/* Hero Section */
.hero {
  background-color: #4a90e2;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #4a90e2;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background-color: #e6e6e6;
}

/* Links Section */
.links-section {
  background-color: #fff;
  border-top: none;
  border-bottom: 4px solid #4a90e2;
  padding: 40px 0;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.links-column {
  flex: 1;
  min-width: 280px;
}

.links-title {
  color: #4a90e2;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
}

.logo-grid a img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-grid a img:hover {
  transform: scale(1.05);
}

/* About & Contact */
.about, .contact {
  background-color: #fff;
  padding: 30px 0;
}

.about h2, .contact h2 {
  text-align: center;
  margin-bottom: 20px;
}

.about p, .contact p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: center;
}

.contact ul {
  list-style: none;
  text-align: center;
}

.contact li {
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Video Background */
.video-bg-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.video-bg-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none; /* ensures underlying video remains clickable if needed */
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .site-name {
    font-size: 3em;
    bottom: 33%;
  }

  .video-bg-wrapper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .site-name {
    font-size: 2.5em;
    bottom: 33%;
  }

  .video-bg-wrapper {
    height: 250px;
  }
}

/* Kill unused top-bar class if it existed */
.top-bar {
  display: none;
}
