@import "gallery.css";
@import "carousel.css";

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 300;
  color: black;
  background: linear-gradient(45deg, #c2d596, #96d5be)
}

.loading {
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
}
.loading::after {
  display: inline-block;
  animation: dotty steps(1,end) 1s infinite;
  content: '';
}
@keyframes dotty {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

a {
  color: #000000ae;
  text-decoration: underline;
}

a:hover {
  color:  rgb(255, 129, 30);
  cursor: pointer;
}

a[aria-current='page'] {
  text-decoration: underline;
  color: rgb(255, 129, 30);
  font-weight: 700;
}

.btn {
  all: unset;
  background:rgb(255, 129, 30);
  border-radius: 15px;
  color: #ffffff;
  padding: 5px 20px 5px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  letter-spacing: 0.1rem;
}

.btn:hover {
  background: #ffffff;
  color: rgb(255, 129, 10);
}

form {
  max-width: 400px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 0.5rem ;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Page Header */

.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}

.headerRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #d7ffd7;
  padding: 1rem 18% 0 18%;
}

.headerLink {
  color: black;
  text-decoration: none;
  letter-spacing: 0.1rem;
}

.headerLink:hover {
  color: rgb(255, 129, 10);
  cursor: pointer;
}

.titleText {
  color: rgb(255, 129, 10);
  font-family: "Knewave", system-ui;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  font-size: 2rem;
  padding: 1rem 0;
  letter-spacing: 0.5rem;
}

.titleText:hover {
  color: rgb(255, 129, 10);
  cursor: pointer;
}

.custom-shape-divider-top-1741668230 {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1741668230 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 113px;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1741668230 .shape-fill {
  fill: #d7ffd7;
}

.navButtons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0.5rem;
  flex-wrap: nowrap;
  overflow-y: scroll;
}

@media (max-width: 768px) {
  .navButtons {
    display: none;
  }
}

.navMenu {
  display: inline-block;
  position: relative;
  cursor: pointer;
  
}

@media screen and (min-width: 769px) {
  .navMenu {
    display: none;
  }
}

.navMenu i {
  touch-action: manipulation; 
  padding: 1rem;
  font-size: 1.5rem;
  color: #444444;
}

.navMenu i:hover {
  cursor: pointer;
  color: rgb(255, 129, 10);
}

.navMenu:hover .navMenuContent {
  display: flex;
}

.navMenuContent.show {
  display: flex;
}

.navMenuContent {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 0.5rem 0;
  background-color: #d7ffd7;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 100;
}

.navMenuLink {
  padding: 0.5rem 1rem;
  text-decoration: none;
  letter-spacing: 0.1rem;
  display: flex;
  justify-content: flex-end;
}

/* Page Footer */

.footer {
  display: flex;
  flex-direction: row;
  background-color: #d7ffd7;
  padding: 1rem 18%;
  justify-content: flex-end;
  gap: 1.5rem;
  align-items: baseline;
  color: #000000ae;

  a {
    color: #000000ae;
  }
}

/* Page Content */

main {
  min-height: 100vh;
  gap: 3rem;
  padding: 3rem 18%;
  font-size: 18px;
}

blockquote {
  content: '“';
  font-size: 1rem;
}

.subheader {
  display: block;
  font-size: 1.5rem;
  padding: 2rem 0;
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0);
}

.textRow {
  margin-bottom: 2rem;
}

.buttonRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 2rem;
}

.contentTable {
  display: flex;
  gap: 3rem;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.tableImage {
  object-fit: cover;
  height: 100px;
  width: 100px;
}

.contentRow {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 45%;
  min-width: 20rem;
}

.textColumn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.substackIcon {
  height: 18px;
  width: 18px;
  margin-right: 0.25rem;
  color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modalContent {
  background-color: white;
  margin: 15% auto;
  padding: 1.5rem;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.aboutMe {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.aboutMeText {
  line-height: 1.8rem;
  flex: 1;
  justify-content: center;
}

.selfImg {
  height: 30%;
  width: 30%;
  border-radius: 50%;
  min-width: 250px;
  object-fit: cover;
}

.sticker {
  display: flex;
  flex-direction: column;
  align-items: center;
}