@import url('https://fonts.googleapis.com/css2?family=Brick+Regular&family=Bowlby+One&display=swap');
@import url('https://fonts.cdnfonts.com/css/perfectly');
@import url('https://fonts.cdnfonts.com/css/history-nineties');
body {
    font-family: 'Helvetica Neue', Helvetica, sans-serif;
    margin: 0;
    background-color: white;
    color: black;
}

/* Navbar */
.main-header {
    background-color: blue;
    color: white;
    position: relative;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.navbar ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-family: 'Brick Regular', sans-serif;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.background-text {
    position: absolute;
    font-family: 'Bowlby One', sans-serif;
    font-size: 15rem;
    color: rgba(244, 231, 231, 0.854);
    z-index: 0;
    transform: translateY(-70%); /* Remove If Centered is required*/
}
.statue-image {
    position: relative;
    z-index: 1;
    max-height: 85%;
    width: auto;
    opacity: 0;
    animation: popUp 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes popUp {
    0% {
        opacity: 0;
        transform: translateY(150px) scale(0.95);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Section Base Styles */
.section {
    padding: 4rem 2rem;
    border-bottom: 2px solid black;
}
.section h2 {
    font-family: 'Bowlby One', sans-serif;
    font-size: 3rem;
}
.white-bg {
    background-color: white;
}
.blue-bg {
    background-color: blue;
    color: white;
}

/* Buttons */
.btn {
    background-color: black;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid black;
    display: inline-block;
    border-radius: 8px;
    transition: background-color 0.2s, color 0.2s;
}
.btn:hover {
    background-color: white;
    color: black;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}
.contact-section form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid black;
    font-size: 1rem;
}
.contact-section button {
    align-self: center;
    width: auto;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.5rem;
}
.social-links a {
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
    text-decoration: none;
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    padding: 1rem;
    text-align: center;
}
/* Projects section text */

.skills-section li,
.projects-section li {
  margin-bottom: 0.3rem; 
  font-weight: 700; 
  font-size: 1.6rem;
  font-family:'Helvetica Neue', sans-serif; /* or your chosen font */
}

.skills-section p,
.projects-section p {
  margin-top: 0;
  margin-bottom: 1.125rem; /* Space below description */
  font-weight: 600; /* Optional: normal weight for description */
  max-width: 600px; /* Optional: limit width for readability */
  font-family: 'Courier New', Courier, monospace;
}
#about p {
  margin-top: 0;
  margin-bottom: 1.125rem; /* Space below description */
  font-size: 1.3rem;;
  font-weight: 600; /* Optional: normal weight for description */
  max-width: 600px; /* Optional: limit width for readability */
  font-family: 'Courier New', Courier, monospace;
}

.social-links a:hover{
    background-color: blue;
    color: rgb(255, 255, 255);
    transition: background-color 0.3s, color 0.3s;
    
}
html {
  scroll-behavior: smooth;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: blue;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


