html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    margin: 0;
    padding-top: 56px;
    max-height: 100vh;
    font-size: 1rem;
}

.reference {
    color: rgb(114, 36, 36) !important;
}

.reference:hover {
    color: rgb(187, 66, 66) !important;
    text-decoration: underline !important;
    cursor: pointer !important;
}

.text1 {
    font-size: 2rem;
}

.text2 {
    font-size: 1.5rem;
}

#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    text-align: center;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, #2b1055, #ffff);
    color: white;
    cursor: default;
    max-width: 100%;
}

#about-me {
    margin-top: 0;
    padding: 1rem;
}

#projects {
    padding: 1rem;
}

.navbar {
    background-color: #2b1055 !important;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 65vh;
    flex-direction: column;
    /* border: 1px solid black; */
    gap: 2rem;
}

.main-sections, .social-links {
    max-width: 75rem;
    width: 90%;
    text-align: left;
    margin: 0 auto;
    /* border: 1px solid black; */
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
}

#todo ul {
  list-style-type: disc;
  padding-left: 1.5em;
  font-size: 1.1rem;
}

@keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

.hyprlink {
    color: #007bff !important;
    text-decoration: none !important;
}

.hyprlink:hover {
    text-decoration: underline !important;
    cursor: pointer !important;
    color: hsl(211, 100%, 52%) !important;
}

.hidden-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease;
  }
  
  .hidden-text.show {
    max-height: 1000px;
    opacity: 1;
  }

#read-more-btn {
    background-color: transparent;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-weight: bold;
    margin-left: 0.5rem;
}

#read-more-btn:hover {
    text-decoration: underline;
}

.site-footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 2rem;
}
  
.footer-container {
    max-width: 800px;
    margin: 0 auto;
}
  
.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
  
.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
  
.footer-links a:hover {
    color: #00bcd4;
}

@media (max-width: 600px) {
    body {
      font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
        padding: 1rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

#social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

a {
    color: #f0f0f0 !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: color 0.3s ease !important;
}

a:hover {
    color: #00bcd4 !important;
}
