/* =========================
   RESET & GLOBAL STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =========================
   TOP NAVIGATION (ALL PAGES)
========================= */
.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  padding: 15px 30px;
  display: flex;
  justify-content: flex-end;  /* <-- pushes nav to the right */
  z-index: 1000;
}

nav {
  display: flex;
}

nav a {
  margin-left: 20px;   /* use left margin for spacing */
  text-decoration: none;
  color: black;
}

nav a:hover {
  opacity: 0.7;
}

.logo {
  font-size: 1.2rem;
  font-weight: 500;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
}

.top-nav nav {
  display: flex;
}

/* =========================
   HOMEPAGE HERO
========================= */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
}

/* =========================
   HOMEPAGE ART LIST
========================= */
.art-list-section.homepage {
  position: absolute;
  top: 70%;           /* slightly down in 4th quadrant */
  left: 70%;          /* slightly right */
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  max-width:300px
}

.art-item {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.art-link {
  color: white;
  text-decoration: none;
  word-break: break-word;
}

.art-link:hover {
  opacity: 0.7;
}

/* =========================
   WORK PAGES
========================= */
.work-page {
  max-width: 900px;
  margin: 0;            /* flush left */
  padding-top: 20px;    /* below fixed nav */
  text-align: left;
  position: relative;
  min-height: 100vh;
}

.work-page img {
  display: block;
  width: 100%;          /* left-aligned, full width */
  margin-bottom: 30px;  /* spacing between images */
}

.work-text {
  white-space: pre-line;
  max-width: 700px;   /* controls text width */
  margin: 60px auto;  /* top/bottom 60px, centered horizontally */
  line-height: 1.5;   /* improves readability */
}

.contact-text {
  white-space: pre-line;
  max-width: 700px;   /* controls text width */
  margin: 60px;  /* top/bottom 60px, centered horizontally */
  line-height: 1.5;   /* improves readability */
}



/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 1024px) {
  .art-list-section.homepage {
    top: 62%;
    left: 55%;
  }
  .art-item {
    font-size: 1.1rem;
  }
  nav a {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {
  .art-list-section.homepage {
    top: 65%;
    left: 55%;
  }
  .art-item {
    font-size: 1rem;
  }
  nav a {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .art-list-section.homepage {
    top: 68%;
    left: 55%;
  }
  .art-item {
    font-size: 0.9rem;
  }
  nav a {
    font-size: 0.9rem;
  }
}
