/* Global Styles */
:root {
  --header-font: font-family: "new-spirit", serif;
  --para-font: font-family: "bookmania", serif;
  --logo: font-family: "new-spirit-condensed", serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Libre Baskerville', serif;
  background-color: #fdf8ef;
  color: #000;
}

body::-webkit-scrollbar {
  display: none;
}


p,
a {
  font-family: "bookmania";
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  font-size: 1.1rem;
}
header >a {
  text-decoration: none;
  color: #000;
}

.logo {
  font-family: "new-spirit-condensed", serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
  font-size: 20px;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #000;
}

nav a:hover {
  text-decoration: underline;
}

/* Main Section */
main {
  max-width: 900px;
  margin: 5rem auto 0;
  padding: 0 2rem;
}

.intro {
  font-size: 1.25rem;
  margin: 0 0 0 0;
}

h1 {
  font-size: 9.375rem;
  font-family: "new-spirit", serif;
  font-weight: 700;
  font-style: normal;
  margin: 0.2rem 0 1.5rem 0;
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.8rem;
  border-bottom: 2px solid transparent;
}

/* Bottom link */
.projects-link {
  text-align: center;
  margin-top: 15rem;
  font-size: 1.2rem;

}

/* .projects-link span {
  border-bottom: 1px solid black;
} */

/* project section styling */
section {
  max-width: 1200px;
  height: 100vh;
  margin: 5rem auto 5rem;
  padding: 0 2rem;
  display: flex;
  justify-content: center;

}

#project-carousel {
  /* background-color: blue; */
  width: 100%;
  /* border: solid; */
  display: flex;
  justify-content: center;
  align-items: center;
}

#project-container{
  /* border: solid; */
  width: 85%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;

}
.carouselBtn{
  font-size: 3rem;
  color: #89848485;
}

.carouselBtn:hover{
  cursor: pointer;
  color: black;
}

#project-content{
  height: 90%;
  width: 100%;
  /* border: solid red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#project-img{
  height: 60%;
  width: 100%;
  /* border: solid; */
  display: flex;
  justify-content: center;
  align-items: center;
}
#project-img >img{
  width: 100%;
}

#project-details{
  display: block;
  width:40%;
  text-align: center;
}

/* project link button */

.view-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #fdf8ef;
  color: #000;
  text-decoration: none;
  border: 2px solid;
  border-radius: 20px;
  transition: background 0.3s;
}

.view-btn:hover {
  color: white;
  background-color: #00000086;
  border: 2px solid #000;
}

.off-limit{
  text-decoration: line-through;
}

.off-limit:hover{
  cursor: not-allowed;
}