/* Global Reset & Base Styles */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

img, .responsive-video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
header {
  text-align: center;
}

header h1 {
  font-family: "Arial", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 20px 0;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #000; /* fallback */
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 400px;
  background: url("../images/mets1.jpg") no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__content {
  padding-top: 80px;
  color: #ffffff;
}

/* Navigation */
.top-nav {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.menu-toggle {
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 24px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background-color: #333;
  color: #fff;
}

/* Skip Link */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  background-color: #005fcc;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 4px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid #ffea00;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #005fcc;
  color: white;
  width: 40px;
  height: 40px;
  font-size: 24px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #003f99;
}

/* Visit Card */
.visit-card {
  width: 100%;
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  text-align: center;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 15px;
}

.visit-card h2 {
  margin: 10px 0 5px;
}

.visit-card p {
  margin: 5px 0;
  color: #555;
}

.visit-card a {
  color: #0077cc;
  text-decoration: none;
}

/* Rounded Boxes */
.rounded {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 10px 15px;
}

#special {
  background-color: #e0ffe0;
  border: 1px solid #66cc66;
  border-radius: 10px;
  padding: 12px;
}

/* Centered Image */
.center-img {
  height: 225px;
  width: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
}

/* Responsive Video */
.video-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.responsive-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Styles */
@media (max-width: 600px) {
  .visit-card {
    padding: 10px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .top-nav {
    right: 10px;
    left: 10px;
  }
}

