/* Global Styling */
: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;
    background-color: #fdf8ef;
    color: #000;
}

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

/* 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 content */
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}


#project-header {
    border-block: 1px solid;
    display: flex;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
    padding-inline: 1rem;
}

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

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

#carousel-title {
    font-family: "new-spirit", serif;
}


/* Project Overview Content Styling */
#project-content {
    border-inline: solid 1px;
    width: 80vw;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#info-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 2rem; */
}

#info-header {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#info-header>h1 {
    margin-bottom: 0;
    font-family: "new-spirit", serif;

}

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

#project-img>img {
    width: 100%;
    height: 100%;
}

#project-info {
    width: 90%;
    display: flex;
    justify-content: space-around;
    gap: 1rem;

}

.project-specs {
    /* border: solid ; */
    display: flex;
    flex-direction: column;
    justify-self: unset;
    align-items: center;
    width: 8rem;
    gap: 0.25rem;
}

.project-specs>h3 {
    margin-bottom: 0;
    align-self: flex-start;

}

.project-specs>p {
    margin: 0;
    align-self: flex-start;
}

hr {
    width: 100%;
    font-weight: 1rem;
    margin-top: 10px;
}

/* project Sections styling */


.section-container {
    display: flex;
    flex-direction: column;
    width: 120%;
    height: fit-content;
    margin-top: 2rem;
    padding: 2rem;
    /* border: 1px solid;
    border-radius: 20px; */

}

.section-header>h2 {
    margin: 0;
    font-family: "bookmania", serif;
}

.section-content {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
}

.section-img {
    width: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-img>img {
    width: 100%;
}

.section-text {
    width: 40%;
}

.section-text>p {
    font-size: 1.05rem;
    font-family: "bookmania", serif;

}

.links {
    display: flex;
    gap: 1rem;
}

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

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