/*-- CSS Reset --*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   font: inherit;
   vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
   display: block;
}
body {
   line-height: 1;
}
ol, ul {
   list-style: none;
}
blockquote, q {
   quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
   content: '';
   content: none;
}
table {
   border-collapse: collapse;
   border-spacing: 0;
}

/*-- Base Styles --*/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  color: #707070;
  font-family: 'Century Gothic', 'Century Gothic Pro', sans-serif;
}

/*-- Logo Section --*/
.logo {
  margin: 0 auto;
  max-width: 1200px;       /* keeps structure */
  padding: 1.5vw 2vw;      /* spacing inside logo */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border: none;            /* remove black border */
}

.logo-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: clamp(30px, 4vw, 80px);
  font-weight: normal;
  color: #707070;
}

/* Home Icon */
.home-icon img {
  width: 150px;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.home-icon img:hover {
  opacity: 0.6;
}

/*-- Homepage Section --*/
.homepage {
  margin: 0 auto;
  max-width: 1200px;       /* keeps structure for layout */
  padding: 20px;
  box-sizing: border-box;
  border: none;            /* remove black border */
}

/* Container Layout */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  gap: 20px;               /* spacing between nav and gallery */
  box-sizing: border-box;
}

/* Left Navigation */
.left {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  border: none;            /* remove black border */
}

h1 {
  font-size: clamp(30px, 4vw, 80px);
  margin-bottom: 5vh;
  font-weight: normal;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
}

nav ul {
  padding: 0;
}

nav li {
  margin-bottom: 5vh;
}

nav a {
  text-decoration: none;
  color: #707070;
  font-size: clamp(20px, 2.5vw, 50px);
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.6;
}

/* Right Section (Gallery) */
.right {
  flex: 2 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: none;            /* remove black border */
}

.right img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 0;        /* optional */
  border: none;            /* remove border */
}

#workImage {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0;
}

/* Gallery Buttons */
.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
}

.nav-button {
  font-size: 3rem;
  color: #707070;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .container {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 10px;
  }
  .left, .right {
    flex: 1 1 100%;
    padding: 5px 0;
  }
}
