@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ovo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amarante&display=swap");
/* Layout styles */
@import url("https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/themes/prism.min.css");
.container {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 16px;
}

header {
  background-color: #d7ccc8;
  padding: 24px 0;
  text-align: center;
}
header nav {
  margin-top: 16px;
}
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
header nav ul li {
  margin: 0 16px;
}
header nav ul li a {
  color: white;
  text-decoration: none;
}
header nav ul li a:hover {
  text-decoration: underline;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.blogger-profile {
  background-color: #d7ccc8;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(93, 64, 55, 0.19), 0 6px 6px rgba(93, 64, 55, 0.23);
  margin-bottom: 32px;
}
.blogger-profile h3 {
  margin-bottom: 5px;
}
.blogger-profile p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.socials {
  margin-top: 32px;
  background-color: #8d6e63;
  color: #d7ccc8;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
}
.socials a {
  color: #e9e6e6;
}

.note {
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 0.9em;
}

.blog-analysis h3 {
  margin-top: 20px;
}
.blog-analysis p {
  margin-bottom: 15px;
}

.uses {
  list-style-type: upper-roman;
}

footer {
  background-color: #5d4037;
  text-align: center;
  padding: 8px 0;
  margin-top: 32px;
}
footer p {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
}
footer a {
  color: #d7ccc8;
}

@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
  }
  header nav ul li {
    margin: 8px 0;
  }
}
/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Tinos", serif;
  margin-top: 0;
  line-height: 1.2;
  color: #5d4037;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
  margin: 16px;
  border-bottom: 2px solid #9f876f;
  padding-bottom: 8px;
}

h3 {
  font-size: 1.5rem;
  margin: 16px;
  color: #8d6e63;
}

h4 {
  font-size: 1rem;
  margin: 16px;
  border-bottom: 2px solid #9f876f;
  padding-bottom: 8px;
}

p {
  margin: 24px;
}

a {
  color: #8d6e63;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #604b43;
  text-decoration: underline;
}

ul,
ol {
  margin-bottom: 16px;
  list-style: none;
}
ul li,
ol li {
  margin-bottom: 8px;
}

.list-visible {
  list-style: disc;
  margin-left: 24px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.3rem;
  }
}
/* Component styles */
.button {
  background-color: #5d4037;
  color: #e9e6e6;
  border: none;
  padding: 8px 24px;
  text-align: center;
  cursor: pointer;
  border-radius: 10px;
  font-family: "Amarante", "Ovo", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #3d2a24;
}
.button:disabled {
  background-color: #e9e6e6;
  color: #505050;
  box-shadow: none;
  cursor: not-allowed;
}
.button.secondary {
  background-color: #8d6e63;
}
.button.secondary:hover {
  background-color: #6f574e;
}
.button.accent {
  background-color: #d7ccc8;
  color: #3e2723;
}
.button.accent:hover {
  background-color: #b7a39c;
}
.button.outline {
  background-color: transparent;
  border: 2px solid #9f876f;
  color: #5d4037;
}
.button.outline:hover {
  background-color: rgba(93, 64, 55, 0.1);
}

.card {
  background-color: #f5efec;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin-bottom: 24px;
}
.card .card-title {
  margin-top: 0;
  margin-bottom: 16px;
}
.card .card-content {
  margin-bottom: 0;
}

.citation-card {
  background-color: #e9e6e6;
  border-radius: 10px;
  margin: 16px;
  padding: 8px;
}

.citation-card p {
  margin: 8px;
}

.citation {
  font-style: italic;
  background-color: #e9e6e6;
}

.summary,
.value,
.application,
.personal-response {
  background-color: white;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.summary h3,
.value h3,
.application h3,
.personal-response h3 {
  border-bottom: 1px solid #9f876f;
  padding-bottom: 8px;
}

#nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
#nav-buttons button {
  background-color: #8d6e63;
  color: #e9e6e6;
  border: 2px solid #5d4037;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Ovo", sans-serif;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}
#nav-buttons button:hover {
  background-color: #5d4037;
  color: #d7ccc8;
  transform: translateY(-1px);
}
#nav-buttons button.active {
  background-color: #c06c4d;
  color: #f5efec;
}

/* Demo styles for CSS Functions */
.demo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.demo-function {
  width: 200px;
  margin-bottom: 32px;
  box-shadow: 0 3px 6px rgba(93, 64, 55, 0.15), 0 2px 4px rgba(93, 64, 55, 0.12);
  border-radius: 10px;
  padding: 8px;
  background-color: #f5efec;
}
.demo-function h3 {
  color: #5d4037;
  margin-bottom: 8px;
  text-align: center;
  border-bottom: 1px solid #9f876f;
  padding-bottom: 4px;
}
.demo-function p {
  color: #3e2723;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 8px;
  margin: 8px;
}

.demo-box {
  width: 100px;
  height: 100px;
  background-color: #8d6e63;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  transition: all 0.5s ease;
  margin: 16px auto;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(93, 64, 55, 0.12), 0 1px 2px rgba(93, 64, 55, 0.24);
}

/* calc() demo */
.calc-demo {
  width: calc(100% - 50px);
  height: 120px;
  background-color: #3d2a24;
}

/* translate() demo */
.translate-demo:hover {
  transform: translate(20px, 20px);
  background-color: #513f39;
}

/* rotate() demo */
.rotate-demo:hover {
  transform: rotate(45deg);
  background-color: #b7a39c;
}

/* scale() demo */
.scale-demo:hover {
  transform: scale(1.5);
  background-color: #5d4037;
}

.code-example {
  background-color: #e9e6e6;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: "Source Code Pro", monospace;
  font-size: 0.9rem;
  display: block;
  margin-top: 4px;
}

/* Confetti Button Styles */
#confetti-btn {
  background-color: #d7ccc8;
  color: #3e2723;
  font-family: "Amarante", "Ovo", sans-serif;
  font-size: 1.1rem;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(93, 64, 55, 0.15), 0 2px 4px rgba(93, 64, 55, 0.12);
  transition: all 0.3s ease;
  display: block;
  margin: 32px auto;
}
#confetti-btn:hover {
  background-color: #b7a39c;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(93, 64, 55, 0.19), 0 6px 6px rgba(93, 64, 55, 0.23);
}
#confetti-btn:active {
  transform: scale(0.98);
  box-shadow: 0 1px 3px rgba(93, 64, 55, 0.12), 0 1px 2px rgba(93, 64, 55, 0.24);
}

#confetti-section {
  text-align: center;
  margin-bottom: 32px;
}

/* Media Queries */
@media (max-width: 768px) {
  .demo-container {
    flex-direction: column;
    align-items: center;
  }
  .demo-function {
    width: 100%;
    max-width: 300px;
  }
  #confetti-btn {
    font-size: 1rem;
    padding: 8px 24px;
  }
}
@media (max-width: 576px) {
  #confetti-btn {
    width: 80%;
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 8px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.3rem;
    margin: 8px;
    padding-bottom: 8px;
  }
  h3 {
    font-size: 1.1rem;
    margin: 8px;
  }
  p {
    margin: 8px;
  }
  header {
    padding: 16px 8px;
  }
  header h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  header ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header ul li {
    margin: 8px 0;
  }
  .card,
  .blogger-profile,
  .citation-card {
    padding: 8px;
    margin-bottom: 16px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
  }
  pre {
    max-width: 100%;
    overflow-x: auto;
    font-size: 12px;
    margin: 8px 0;
  }
  pre code {
    white-space: pre-wrap;
    word-break: break-word;
  }
  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }
  .button-container .button {
    width: 100%;
    max-width: 250px;
    margin-bottom: 8px;
    padding: 8px 16px;
    font-size: 14px;
    display: block;
  }
  * {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
  ul,
  ol {
    padding-left: 16px;
  }
  ul li,
  ol li {
    margin-bottom: 8px;
  }
  footer {
    padding: 8px;
  }
  footer p {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  footer p a {
    margin: 8px 0;
  }
}
@media (max-width: 400px) {
  body {
    font-size: 13px;
  }
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  pre {
    font-size: 11px;
  }
  .card,
  .blogger-profile,
  .citation-card {
    padding: 8px 4px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  header {
    width: 100%;
    padding: 16px 8px;
    box-sizing: border-box;
    margin: 0;
    left: 0;
    right: 0;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  body > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .blogger-profile,
  .card,
  .citation-card {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }
  footer {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 8px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
body {
  background-color: #f5efec;
  color: #3e2723;
  font-family: "Ovo", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.research-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.research-article section {
  margin-bottom: 30px;
}

/* CSS Functions Assignment Specific Styles */
.active {
  background-color: #5d4037;
  color: #f5efec;
  padding: 4px 8px;
  border-radius: 4px;
}
.active:hover {
  text-decoration: none;
  background-color: #3d2a24;
}/*# sourceMappingURL=style.css.map */