* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'acier-bat-noir', sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  font-family: 'acier-bat-noir', sans-serif;
}

/* Video Background Styles */
#videoBackground {
  position: absolute;
  top: -20vh;
  left: 0;
  width: 100%;
  height: 120vh;
  z-index: -1;
  overflow: visible;
}

#backgroundVideo {
  position: absolute;
  bottom: -23.3%;
  left: 50%;
  width: 100%;
  height: 100vh;
  transform: translate(-50%, 0);
  object-fit: contain;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  bottom: -23.3%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.menu-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
}

.menu-left {
  margin-left: 20px;
}

.menu-left .hero-name {
  display: none;
}

.desktop-name {
  display: block;
}

.portfolio-text {
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 48px;
  letter-spacing: 2px;
  transform: scaleX(1.2);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.menu-right {
  margin-right: 20px;
  display: flex;
  gap: 20px;
}

.menu-button {
  background: none;
  border: 2px solid white;
  border-radius: 20px;
  color: white;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  letter-spacing: 1px;
  transform: scaleX(1.1);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  text-decoration: none;
  padding: 6px 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.menu-button:hover {
  color: #007BFF;
  border-color: #007BFF;
}

.columns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 60%;
  max-width: 900px;
  height: 50%;
  margin-top: 100px;
  z-index: 100;
}

.column-link {
  text-decoration: none;
  flex: 1;
  height: 100%;
}

.column {
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}




.column p {
  color: white;
  font-size: 48px;
  background-color: transparent;
  padding: 30px 50px;
  border-radius: 50px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.column:hover {
  transform: rotateY(10deg) rotateX(10deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .menu-bar {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .menu-left {
    margin-left: 0;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .menu-right {
    margin-top: 10px;
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    order: 3;
  }

  .name {
    font-size: 48px;
  }

  .menu-button {
    font-size: 28px;
    padding: 6px 16px;
    border-width: 1.5px;
  }

  .columns {
    flex-direction: column;
    width: 70%;
    height: auto;
    gap: 15px;
    margin-top: 120px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .column {
    height: 80px;
    width: 100%;
  }

  .column p {
    font-size: 48px;
  }

  .column-link {
    width: 100%;
  }

  /* Mobile-specific changes for name and portfolio */
  .desktop-name {
    display: none !important;
  }

  .menu-left .hero-name {
    display: block !important;
    font-family: "headline-gothic-atf-rough-n1", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: white !important;
    font-size: 32px !important;
    text-align: center !important;
    margin-bottom: 5px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
    order: 1;
  }

  .portfolio-text {
    font-family: "headline-gothic-atf-rough-n1", sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: white !important;
    font-size: 32px !important;
    text-align: center !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
    order: 2;
    width: 100% !important;
    display: block !important;
  }

  /* Mobile-specific footer changes */
  .email-label {
    font-size: 12px !important;
  }

  .email-address {
    font-size: 10px !important;
  }

  .skills-label {
    font-size: 12px !important;
  }

  .skill-category {
    font-size: 8px !important;
    line-height: 1.1 !important;
  }

  .copyright {
    font-size: 8px !important;
  }

  .footer-content {
    gap: 30px !important;
    padding: 0 20px 0 10px !important;
  }

  /* Mobile button layout - stack on left */
  .white-bar-above-buttons {
    display: none !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-left: 0 !important;
    margin-left: -20px !important;
    gap: 15px !important;
    width: 100% !important;
  }

  .hero-button {
    font-size: 36px !important;
    padding: 12px 20px !important;
    margin-left: 0 !important;
  }

  /* Hide skills and email sections on mobile */
  .footer-right {
    display: none !important;
  }

  .footer-left {
    display: none !important;
  }

  .footer-content {
    justify-content: flex-start !important;
    padding: 0 20px 0 20px !important;
  }

  /* Mobile video zoom, position, and blur - cover whole screen */
  #backgroundVideo {
    transform: scale(1.3) !important;
    filter: blur(3px) brightness(0.7) !important;
    height: 100vh !important;
    width: 100vw !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    object-fit: cover !important;
    position: absolute !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
  }

  #videoBackground {
    height: 100vh !important;
    width: 100vw !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    overflow: hidden !important;
    position: fixed !important;
    z-index: -1 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Mobile dark overlay - cover whole screen */
  .video-overlay {
    height: 100vh !important;
    width: 100vw !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
  }

  /* Disable scrolling on mobile - make it static */
  body, html {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
    touch-action: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Ensure all content fits in viewport - overlay on video */
  .hero {
    height: 100vh !important;
    overflow: hidden !important;
    position: absolute !important;
    z-index: 10 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  .footer-bar {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Remove any black bars or bottom elements */
  footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-content {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-left, .footer-right {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Prevent any scrolling on home page mobile - overlay on video */
  main.hero {
    height: 100vh !important;
    overflow: hidden !important;
    position: absolute !important;
    z-index: 10 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }

  #videoBackground {
    height: 100vh !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .name {
    font-size: 36px;
  }

  .menu-button {
    font-size: 24px;
    padding: 6px 14px;
    border-width: 1.5px;
  }

  .column p {
    font-size: 36px;
  }
}


#resume::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./images/ResumeCover.png");
  background-size: cover;
  background-position: center center;
  filter: blur(3px);
  z-index: -1;
}}

#resume
}

#resume {
  position: relative;
  background-image: url('./images/ResumeCover.png');
  background-size: cover;
  background-position: center center;
}

#resume::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./images/ResumeCover.png');
  background-size: cover;
  background-position: center center;
  filter: blur(3px);
  z-index: -1;
}

/* Hero section */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 15vh;
  margin-top: 20px;
  margin-bottom: 0;
}

.hero-title {
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 180px;
  transform: scaleY(1.4) scaleX(1.3);
  letter-spacing: 8px;
  transition: transform 0.1s ease-out;
  line-height: 0.9;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}.hero-name {
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 120px;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.white-bar-above-buttons {
  width: 702px;
  height: 3px;
  background-color: white;
  margin: 0 auto 10px auto;
}

.hero-button {
  background: none;
  border: none;
  color: white;
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 43px;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
  text-decoration: none;
  padding: 14px 29px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 200;
}

.hero-button:hover {
  color: #007BFF;
  transform: scale(1.05);
  text-shadow: 2px 2px 8px rgba(0, 123, 255, 0.5);
}

@media (max-width: 768px) {
.hero-title {
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 180px;
  transform: scaleY(1.4) scaleX(1.3);
  letter-spacing: 8px;
  transition: transform 0.1s ease-out;
  line-height: 0.9;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}    font-size: 34px;
    padding: 12px 24px;
  }
  .hero {
    height: 70vh;
  }
}

@media (max-width: 480px) {
.hero-title {
  font-family: "headline-gothic-atf-rough-n1", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  font-size: 180px;
  transform: scaleY(1.4) scaleX(1.3);
  letter-spacing: 8px;
  transition: transform 0.1s ease-out;
  line-height: 0.9;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}    font-size: 29px;
    padding: 10px 19px;
  }
    flex-direction: column;
    align-items: center;
  }
}


/* Radial blur effect for video background */
#backgroundVideo {
}

/* Universal reset for full width */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Footer Bar */
.footer-bar {
  background-color: #000000;
  color: white;
  padding: 5px 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: 10px;
}

.footer-content {
  width: 100%;
  margin: 0;
  padding: 0 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: none;
  margin: 0;
  gap: 80px;
}

.footer-left {
  flex: 0 0 auto;
  text-align: left;
}

.footer-right {
  flex: 1;
  text-align: left;
}

.email-label {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 0;
  opacity: 1;
}

.white-bar {
  width: 40px;
  height: 1px;
  background-color: white;
  margin: 0 0 5px 0;
}

.email-address {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
}

.skills-label {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 5px 0;
  opacity: 1;
}

.skills-content {
  margin-top: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.skill-category {
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.9;
  margin-bottom: 4px;
}

.skill-category strong {
  color: #ffffff;
  opacity: 1;
}

.copyright {
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.7;
}

/* Ensure body takes full height */
body {
  background-color: #000000;
  height: 156vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Make main content grow to fill space */
main.hero {
  flex: 0 0 auto;
}
