body {
  margin: 0;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Segoe UI', sans-serif;
  padding-top: 80px;
  padding-bottom: 100px;
}


.box-area header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1); /* light transparent white */
  backdrop-filter: blur(5px); /* optional: gives a frosted glass effect */
  padding: 20px 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.wrapper {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 110px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  color: #ffe3d8;
  transform: scale(1.1);
}

nav button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0 10px;
  text-decoration: underline;
}

#movecontainer {
background: none !important;
  transition: background-position 0.2s ease;
  height: 100vh;
  width: 100%;
}

.container {
  height: 100vh;
  width: 100%;
  background-size: cover; /* Fixed: Now stretches to any screen size */
  background-position: 50% 50%;
  transition: background 0.2s ease;
}

.contact-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  width: 90%;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 2000;
}

.skills {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f9f9;
}

.skills h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-image-wrapper {
  margin-top: 1em;
  text-align: center;
}

.contact-image {
  max-width: 200px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

#runner {
  position: absolute;
  width: 150px;
  height: 150px;
  user-select: none;
  pointer-events: none;
  transition: left 0.4s ease, top 0.4s ease;
}

nav span {
  padding: 0 10px;
}

.skills-description {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.03);
  opacity: 1;
}

.intro {
  background: #9dbbbf75;
  padding: 100px 20px 60px;
  text-align: center;
}

.intro-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: -1;
}

.intro-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  background-image: url('Img/Holder.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.intro-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: url('Img/Holder.png') no-repeat bottom right;
  background-size: contain;
  opacity: 0.3;
  animation: pulse-image 6s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse-image {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

.intro-box h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffffff;
}

.intro-box p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}

.skills-ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background-color: #8fa9ac;
  border-top: 2px solid #738f92;
  border-bottom: 2px solid #738f92;
  padding: 12px 0;
  position: relative;
  margin-bottom: 40px;
}

.skills-ticker {
  display: flex;
  animation: ticker-scroll 50s linear infinite;
}

.skills-ticker-content {
  flex-shrink: 0;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 100%;
}

.skills-ticker h2 {
  font-size: 1.4rem;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.skills-ticker p.skills-description {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #e6f1f2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.site-footer {
  background: linear-gradient(145deg, #8fa9ac, #738f92);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.95rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.site-footer a {
  color: #ffe3d8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  z-index: 999;
}

.announcement-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0f0f0f;
  padding: 5rem 1rem;
  margin-top: 4rem;
}

.announcement-box {
  max-width: 1000px;
  width: 90%;
  padding: 3rem 2rem;
  border: 2px solid #444;
  border-radius: 15px;
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.announcement-box h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: #ff3b3b;
}

.announcement-box h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #38bdf8;
}

.announcement-box p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #fff;
}

.announcement-logo {
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}