/* Font Faces */
@font-face {
  font-family: 'FlorenceSans';
  src: url('http://ununiform.cc/wp-content/uploads/2025/02/SFFlorencesans-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: 'CaslonPro';
  src: url('http://ununiform.cc/wp-content/uploads/2025/02/ACaslonPro-SemiboldItalic.otf') format('opentype');
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Monospace821Regular";
  src: url('http://ununiform.cc/wp-content/uploads/2025/02/mono821n.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monospace821Bold";
  src: url('http://ununiform.cc/wp-content/uploads/2025/02/mono821b.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Global Styles */
body {
  background-color: #fff;
  color: #000;
  font-family: "Monospace821Regular", monospace, sans-serif;
  margin: 0;
  padding: 0;
}
.unMenu {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 20px;
  }

  .unMenu a {
    font-family: "Monospace821Regular", monospace, sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #0000EE;
  }

  .unMenu a:hover {
    text-decoration: line-through;
    color: #0000EE;
  }
.section {
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px;
  box-sizing: border-box;
}

.unContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.unLogo {
  font-family: 'FlorenceSans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  font-size: 8vw;
  letter-spacing: 0.2vw;
  gap: 0.5vw;
}

.unLogo span {
  font-family: 'CaslonPro', serif;
  font-style: italic;
}

blockquote {
  font-family: "Monospace821Regular", monospace, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  text-align: left;
  width: 80vw;
  max-width: fit-content;
  margin: 20px auto;
}

blockquote cite {
  display: block;
  text-align: right;
  font-style: italic;
  margin-top: 10px;
}

/* About Section */
.unAbout {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.unTextContent {
  font-family: "Monospace821Regular", monospace, sans-serif;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.6;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
}

.unTextContent a {
  text-decoration: none;
  color: #0000EE;
}

.unTextContent a:hover {
  text-decoration: line-through;
  color: #0000EE;
}

.unFooter {
  font-family: "Monospace821Regular", monospace, sans-serif;
  font-size: 0.7rem;
  position: fixed;
  bottom: 2px;
  right: 20px;
}

.unFooter a {
  text-decoration: none;
  color: #0000EE;
}

.unFooter a:hover {
  text-decoration: line-through;
  color: #0000EE;
}

.unContact {
  font-family: "Monospace821Regular", monospace, sans-serif;
  font-size: 0.8rem;
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

/* Work Section */
.unWork {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
  min-height: 100vh;
  font-family: "Monospace821Regular", monospace, sans-serif;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.6;
  color: #000;
  margin: 0 auto;
  padding-top: 40px;
}

.unWork video {
  max-width: 100%;
}

.unWork h2 {
  font-family: 'FlorenceSans', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.unWork a {
  text-decoration: none;
  color: #0000EE;
}

.unWork a:hover {
  text-decoration: line-through;
  color: #0000EE;
}

/* Footer Section */
.unFooter {
  font-family: "Monospace821Regular", monospace, sans-serif;
  font-size: 0.7rem;
  position: fixed;
  bottom: 2px;
  right: 20px;
}

.unFooter a {
  text-decoration: none;
  color: #0000EE;
}

.unFooter a:hover {
  text-decoration: line-through;
  color: #0000EE;
}

/* Contact Popup Styles */
.contact-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.contact-popup-content {
  background: #fff;
  width: 80%;
  max-width: 500px;
  margin: 100px auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.contact-popup-content input,
.contact-popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-popup-content button {
  background-color: #0000EE;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}

.contact-popup-content button:hover {
  background-color: #333;
}

.contact-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Contact Link Styling */
.contact-link {
  margin-top: 40px;
  font-size: 0.8rem;
  display: inline-block;
  color: #0000EE;
  padding: 8px;
  border: 1px solid #0000EE;
  text-align: center;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0000EE;
  border-color: #0000EE;
}

.backToTop {
    font-family: "Monospace821Regular", monospace, sans-serif;
    position: fixed;
    bottom: 50%;
    right: 20px;
    text-decoration: none;
    color: #0000EE;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 2rem; /* bigger arrow */
  }

  .backToTop.visible {
    opacity: 1;
    visibility: visible;
  }

  .backToTop:hover {
    text-decoration: none;
    color: inherit;
  }

  html {
    scroll-behavior: smooth;
  }
/* Responsive */
@media (max-width: 768px) {
  .unLogo { font-size: 10vw; }
  blockquote { width: 90vw; }
  .unTextContent { padding: 20px; }
}

@media (max-width: 480px) {
  .unLogo { font-size: 14vw; }
  blockquote, .unTextContent { width: 95vw; }
}

@media (max-width: 320px) {
  .unLogo {
    flex-direction: column;
    align-items: center;
    white-space: normal;
    gap: 1vw;
    letter-spacing: normal;
    font-size: 12vw;
  }
}