/* Footer */
.demo-description {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.demo-description p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer {
  background-color: #111827;
  color: #d1d5db;
}

.footer-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footer-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-section {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    margin-bottom: 0;
  }
}

.footer-section {
  margin-bottom: 1rem;
}

.footer-title-serif {
  font-size: 1.25rem;
  font-family: serif;
  margin-bottom: 1rem;
  color: rgb(217, 182, 143);
}

.footer-subtitle {
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.footer-text {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-list {
  list-style-type: none;
  font-size: 0.875rem;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  height: 1rem;
  width: 1rem;
  color: rgb(217, 182, 143);
}

.social-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links-icons {
  display: flex;
  gap: 5px;
}

.social-link {
  padding: 0.5rem;
  border-radius: 9999px;
  background-color: rgb(36, 94, 96);
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link:hover {
  background-color: rgba(36, 94, 96, 0.8);
}

.social-icon {
  height: 1.25rem;
  width: 1.25rem;
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
  color: #9ca3af;
}

.footer-preview {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* 
.code-example {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  overflow-x: auto;
  font-family: "Courier New", monospace;
  font-size: 14px;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

.code-title {
  font-weight: 600;
  color: #f5f5f5;
}

.copy-btn {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.copy-btn:hover {
  background-color: #4338ca;
}

.code-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.code-tab {
  background-color: #2d2d2d;
  padding: 8px 15px;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
  border: 1px solid transparent;
}

.code-tab.active {
  background-color: #1e1e1e;
  border-color: #333 #333 #1e1e1e #333;
  color: #f5f5f5;
}

.code-content {
  display: none;
}

.code-content.active {
  display: block;
}

.css-property {
  color: #9cdcfe;
}

.css-value {
  color: #ce9178;
}

.css-selector {
  color: #d7ba7d;
}

.html-tag {
  color: #808080;
}

.html-attribute {
  color: #9cdcfe;
}

.html-value {
  color: #ce9178;
}

.comment {
  color: #6a9955;
} */
