html {
  scroll-behavior: smooth; /* Enables smooth scrolling */
}

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f8fafc;
  scroll-behavior: smooth; /* Enables smooth scrolling */
}
.catchphrase {
  background: #1a141f;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phrase {
  word-wrap: break-word; /* Ensures proper wrapping for long words */
  word-break: keep-all;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1a141f;
  color: white;
  padding: 10px 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out; /* Smooth transition for changes */
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
}
nav ul li a:hover {
  text-decoration: underline;
}
main {
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
section {
  padding: 20px;
}
section h2 {
  font-size: 40px;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.details-list {
  list-style: none;
  padding: 0;
}
.details-list li {
  padding: 5px 0;
  font-size: 1.1em;
}
iframe {
  border: none;
  width: 740px;
  max-width: 100%;
  height: 800px;
  margin-top: 10px;
}
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }
  section h2 {
    font-size: 1.5em;
  }
}
.row {
  display: flex;
  justify-content: center;
  gap: 32px;
  transition: gap 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .row.scrolled {
    gap: 4px;
  }
}
.logo-image {
  height: 74px;
  transition: height 0.3s ease-in-out, transform 0.3s ease-in-out;
}

nav.scrolled .logo-image {
  height: 50px; /* Shrink logo when scrolled */
  transform: scale(0.9); /* Slight scaling effect */
}
.btn {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  /* margin-right: 10px; */
  white-space: nowrap;
}

.btn-container {
  display: flex;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
}
