/*:root {
  --primary-bg-color: #a88c66; 
  --primary-text-color: #fff8ec; 
  --accent-color: #cda15d;  
  --footer-bg-color: #3d3a37;  
  --footer-text-color: #dfe0df; 
}*/
/*:root {
  --primary-bg-color: #2c2f33; 
  --primary-text-color: #f1e6d6; 
  --accent-color: #4e5b3e;  
  --footer-bg-color: #3d3d3d;  
  --footer-text-color: #f4f1e1; 
}*/
/*:root {
  --primary-bg-color: #f0e5d8;
  --primary-text-color: #333333;
  --accent-color: #8d7c47;
  --footer-bg-color: #333333;
  --footer-text-color: #f0e5d8
}
  --primary-bg-color: #f1f1e1;
  --primary-text-color: #2e4c39;
  --accent-color: #b8d8b8;
  --footer-bg-color: #2e4c39;
  --footer-text-color: #f1f1e1;

Burgundy and Cream
  --primary-bg-color: #3d3a37; 
  --primary-text-color: #f1e6d6; 
  --accent-color: #cda15d;  
  --footer-bg-color: #3d3a37;  
  --footer-text-color: #f4f1e1; 
*/
:root {
  --primary-bg-color: #2c2f33; 
  --primary-text-color: #f1e6d6; 
  --accent-color: #4e5b3e;  
  --footer-bg-color: #3d3d3d;  
  --footer-text-color: #f4f1e1; 
}
 /*
:root {
  --primary-bg-color: #E6EED6; 
  --primary-text-color: #090C02; 
  --accent-color: #A72608;  
  --footer-bg-color: #BBC5AA;  
  --footer-text-color: #090C02; 
}
  */
body, html {
  margin: 0;
  padding: 0;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
    scroll-behavior: smooth;
    background-color: var(--primary-bg-color);
}
.mobile {
  display: inherit;
}
@font-face {
    font-family: 'Playfair';
    src: url(fonts/PlayfairDisplay-VariableFont_wght.ttf);
    font-style: normal;
}
@font-face {
    font-family: 'Playfair';
    src: url(fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf);
    font-style: italic;
}
body::-webkit-scrollbar {
  display: none;
}

/*General*/
.section {
  width: 100%;
  display: flex;
  justify-content: center; 
  align-items: center;
    color: var(--primary-text-color);
}
.landing h1 {
  font-size: 4em;
  margin: 0;
  letter-spacing: 0.5rem;
}
.landing h1 a {
  all: unset;
}
.landing h2 {
    letter-spacing: 0.5rem;
    margin-top: -0.2em;
    font-size: 2.5em;
    font-style: italic;
}
hr {
    border-color: var(--primary-text-color);
}
/*Landing*/
.landing {
  position: relative;
  background-image: url('images/ClutteredArtifacts.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.text-overlay {
  position: absolute; /* Positions relative to the `.landing` div */
  font-family: "Playfair";
  font-size: 3vw;
  text-align: center;
  max-width: 80%;
}
.continue-button {
  margin-top: 1em;
  display: block;
    font-size: 3em;
    letter-spacing: 0.5rem;
    color: var(--primary-text-color);
    font-family: "Playfair";
    border-bottom: 0px solid transparent;
  transition: color 0.3s, border 0.3s;
    text-decoration: none;
  border-top: 3px solid transparent;
}
.continue-button:hover {
  border-top: 0px solid transparent;
  border-bottom: 3px solid;
    border-bottom-color: var(--accent-color);
    color: var(--accent-color);
  transition: color 0.3s, border 0.3s;
    text-decoration: none;
}

/*Home*/
.home {
  background-color: var(--primary-bg-color);
  position: relative;
  z-index: 1;
  padding: 0px;
  font-family: "Playfair";
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.header {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    margin-bottom: 0px;
    letter-spacing: 0.5rem;
    text-align: center;
}
.header h1  {
    font-size: 3em;
}
.left-home p {
  font-size: 1.3em;
  width: 100%;
  margin-top: 10px;
    line-height: 150%;
    padding: 1em;
}
.left-home {
  color: var(--primary-text-color);
}

.right-home {
  max-width: 100%;
  margin: auto;
  text-align: center; /* Centers the image horizontally */
}

.right-home img {
  max-width: 95vw;
  margin: auto;
  height: auto;
}
.home-left-right {
  display: block;
  width: 100%;
  margin-top: 1em;
}
.links {
  display: none;
}

.links a {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  color: var(--primary-text-color);
    letter-spacing: 0.3rem;
    text-transform: lowercase;
  font-family: "Playfair";
    border-top: 3px solid transparent;
  transition: color 0.3s, border 0.3s;
  margin-left: 3%;
  margin-right: 3%;
}

.links a:hover {
  border-bottom: 3px solid;
    border-bottom-color: var(--accent-color);
    border-top: 0px solid transparent;
    color: var(--accent-color);
  transition: color 0.3s, border 0.3s;
}

.description {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding: 10px;
  padding-top: 0;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: var(--primary-bg-color);
  color: var(--footer-text-color);
  text-align: center;
  padding: 20px 0;
  position: relative;
  width: 100%;
  font-family: "Playfair";
}

.footer p {
  margin: 0;
  font-size: 1em;
  letter-spacing: 0.1rem;
}

/* Works of Art */

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-container img {
  margin: 10px;
  max-width: 100%;
  transition: all 0.3s;
}
#work {
  background-color: var(--primary-bg-color);
  width: 100%;
  display: none;
}
.navbar {
  background-color: var(--primary-bg-color);
  display: flex;
  justify-content: center; 
  align-items: center;
  color: var(--primary-text-color);
  font-family: "Playfair"; 
  text-align: center;
  margin: 0 auto;  /* Center the navbar */
  position: relative;
}
#image-dimensions p {
  visibility: hidden;
}


.step-title {
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin-bottom: 0.5em;
  display: inline-block; /* Ensure the line only spans the text */
}
.desc-link {
  text-decoration: none;
  font-weight: bold;
  color: var(--primary-text-color);
  font-family: "Playfair";
    border-top: 3px solid transparent;
  transition: color 0.3s, border 0.3s;
}
.desc-link:hover {
  border-bottom: 3px solid;
  border-bottom-color: var(--accent-color);
  border-top: 0px solid transparent;
  color: var(--accent-color);
transition: color 0.3s, border 0.3s;
}
#contact {
  color: var(--primary-text-color);
  text-align: center;
  padding: 1em;
}
form textarea {
  width: 90%;
  height: 10em;
}
form button {
  all: unset;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  color: var(--primary-text-color);
    letter-spacing: 0.3rem;
  font-family: "Playfair";
    border-top: 3px solid transparent;
  transition: color 0.3s, border 0.3s;
  padding: 10px
}
form button:hover {
  border-bottom: 3px solid;
    border-bottom-color: var(--accent-color);
    border-top: 0px solid transparent;
    color: var(--accent-color);
  transition: color 0.3s, border 0.3s;
}
form input{
  width: 90%;
}
.contact-text {
  font-size: 1.3em;
  width: 100%;
  margin-top: 10px;
}
/* Mobile */
#work-mobile {
  display: block;
  text-align: center;
}
#work-mobile img {
  max-width: 95%;
  margin-bottom: 1em;
}
.noMobile {
  display: none;
}
#menu {
  text-align: center;
  background-color: var(--accent-color);
  padding: 1em;
  width: 100vw;
  margin-bottom: 1em;
}
#menu a {
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: 2em;
  margin: auto;
  font-weight: bold;
  font-size: 2em;
  color: var(--primary-text-color);
  letter-spacing: 0.3rem;
  text-transform: lowercase;
  font-family: "Playfair";
}
#mobileNav {
  margin-top: 2em;
  padding: 0.5em;
  background-color: var(--accent-color);
}
#mobileNav a {
  display: block;
  text-align: center;
  padding: 0.5em;
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: 2em;
  margin: auto;
  font-weight: bold;
  font-size: 2em;
  color: var(--primary-text-color);
  letter-spacing: 0.3rem;
  text-transform: lowercase;
  font-family: "Playfair";
}
/* Desktop */
@media (min-width: 900px) {
  .mobile {
    display: none;
  }
  .noMobile {
    display: inherit;
  }
  #work-mobile {
    display: none;
  }
  .home-left-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
      flex-direction: row;
      align-items: center;
  }
  .left-home {
    width: 60%;
    padding-left: 10%;
    padding-right: 10%;
  }
  .header {
    text-align: left;
  }
  .right-home img {
    margin-top: 5em;
    height: 80vh;
    width: auto;
    object-fit: cover;
    text-align: center;
    width: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Ensure the image fills its height properly */
      text-align: center;
      margin-right: 10px;
      margin-top: 1rem;
  }
  .right-home {
    width: 40%;
    display: flex;
    padding-right: 10%;
  }
  .right-home {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: left;
    text-align: center;
    padding-right: 7%;
  }
  .links {
    padding-top: 1em;
    display: flex;
    justify-content: center; /* Distributes the links across the full width */
    align-items: center; /* Vertically aligns the links */
    text-align: center;
    width: 90%;  /* Spans the full width of the screen */
    padding-bottom: 1em;  /* Adds some vertical padding */
    background-color: var(--primary-bg-color);  /* Adds a background color */
    z-index: 2;
      position: relative;
      border-bottom: 1px solid var(--primary-text-color);
      align-items: center;
      margin: auto;
      margin-bottom: 4em;
  }
  #contact {
    color: var(--primary-text-color);
    margin-left: 10%;
    text-align: left;
    padding: 0;
  }
  form textarea {
    width: 50%;
    height: 10em;
  }
  form input{
    width: 25%;
  }
  #work {
    background-color: var(--primary-bg-color);
    width: 100%;
    padding-top: 2em;
    display: block;
  }
  .text-overlay {
    position: absolute; /* Positions relative to the `.landing` div */
    top: 1rem; /* Vertically centers the text */
    left: 2rem; /* Horizontally centers the text */
    text-align: left;
    font-size: 1.3vw;
    padding: 1vw;
  }
  .continue-button {
    position: absolute;
    bottom: 2rem;
  }
  .section {
    width: 100%;
    height: 100vh;
  }
  .home {
  box-shadow: 0px -10px 6em rgba(0, 0, 0, 0.8);
  }
}