
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: auto; 
    overflow-y: scroll; 
    overflow-x: hidden; 
    scrollbar-width: none; 
  }

body {
    font-family: "Bitter", serif;
    min-height: 210vh;
    background-image: url('bluebackground.png');
    background-size: cover;         
    background-repeat: repeat-y;    
    background-position: center top;
    background-attachment: scroll; 
    margin-top: 60px;
    box-sizing: border-box;
  }
  
    body::-webkit-scrollbar {
    display: none;
  }
  
    #main-page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(53, 201, 214, 0.5); /* Semi-transparent background */
    color: rgb(10, 10, 10);
    padding: 0 20px;
    box-sizing: border-box;
}

    .header-content {
    display: flex;
    align-items: center; 
    height: 60px;       
    max-width: 1200px;   
    margin: 0 auto;     
    box-sizing: border-box;
  }
  
  .header-content h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
  }
  
  .header-content h1 a {
    text-decoration: none;
    color: inherit; 
    font-weight: bold;
  }
  
  .header-content nav {
    margin: 0 auto;
  }
  
  .header-content nav ul {
    list-style: none;
    display: flex;
    gap: 740px; 
    margin: 0;
    padding: 0;
  }
  
  .header-content nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 19px;
  }
  
  .header-content nav ul li a:hover {
    text-decoration: none;
  }

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Makes it appear directly below the parent */
  left: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 0;
  z-index: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Header navigation styling */
.header-list {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.header-list li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 19px;
}

.header-list li a:hover {
  color: #2BAAB4;
}
  
footer {
  background-color: #35C9D6;
  color: rgb(10, 10, 10);
  padding: 20px 60px;
  text-align: center;
  width: 100%;
  position: fixed; 
  bottom: -100px; 
  left: 0;
  transition: bottom 0.5s ease; 
  z-index: 100;
  opacity: 0.6;
}

footer.visible-footer {
  bottom: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
}

.footer-links li a {
  text-decoration: none;
  color: rgb(10, 10, 10);
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #2baab4; 
}

  .bottom-left-text {
    position: fixed;         
    bottom: 30px;            
    left: 10px;              
    font-size: 120px;        
    font-family: "Bitter", serif;
    font-weight: 900;        
    color: #000;             
    z-index: 9999;           
    text-transform: uppercase;
  }
  
  
  #scroll-box {
    display: none;   
    position: fixed;
    top: 30%;       
    left: 50%;
    transform: translateX(-50%); 
    width: 50%;     
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 9999; 
  }
  
  #scroll-box h2, 
  #scroll-box p {
    color: #333;
    margin-bottom: 10px;
  }

.portfolio-container {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 50px; 
  }
  
  .portfolio-text {
    font-size: 120px;
    font-weight: 900;
    font-family: "Bitter", serif;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding: 20px 0;
    z-index: 2;
  }
  
.about-me-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 80px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 15px auto 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.about-me-section:hover {
  transform: scale(1.03); 
  background-color: rgba(255, 255, 255, 1); 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

  .portrait-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .image-caption {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
    font-style: italic;
  }
  
  .about-right {
    flex: 2;
  }
  
  .about-right h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2BAAB4;
  }
  
  .about-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .about-me-section {
      flex-direction: column;
      text-align: center;
    }
  
    .about-left, .about-right {
      width: 100%;
    }
  
    .about-right {
      margin-top: 20px;
    }
  }
  
  .vertical-fields {
    display: flex;
    justify-content: space-between;  
    width: 80%;
    margin: 100px auto 40px auto; 
    gap: 20px;  
}

.vertical-box {
  width: 48%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.vertical-box:hover {
  transform: scale(1.05); 
  background-color: rgba(255, 255, 255, 1); 
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); 
}


.vertical-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2baab4;
}

.vertical-box ul {
    list-style: disc;
    padding-left: 20px;
}

.vertical-box li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}
  
.content-site-section {
  text-align: center;             
  padding: 60px 80px;
  background-color: rgba(255, 255, 255, 0.85); 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  max-width: 1200px;
  margin: 100px auto 40px auto;  
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.content-site-section:hover {
  transform: scale(1.03);         
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.95); 
}

.content-site-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #2BAAB4;
}

.content-site-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  max-width: 800px;   
  margin: 0 auto;     
}

@media (max-width: 768px) {
  .content-site-section {
      padding: 40px 20px;
  }

  .content-site-section p {
      font-size: 16px;
  }
}


