* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Didot, serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333333;
}

nav {
  background-color: #333333;
  padding: 10px;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
}

nav ul li a:hover {
  background-color: #555555;
  border-radius: 5px;
}

/* Section Styles */
section {
  padding: 20px;
  margin: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #9a1f40;
}

#about .about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 20px;
}

#about .about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#about .about-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

#about .about-right {
  font-size: 16px;
  line-height: 1.5;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.icon {
  width: 20px;
  height: 20px;
}

#news ul {
  list-style-type: disc;
  padding-left: 20px;
}

#news ul li {
  margin: 5px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.project-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #dddddd;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.project-details h2 {
  font-size: 24px;
  color: #9a1f40;
  margin-bottom: 10px;
}

.project-details p {
  margin: 10px 0;
  line-height: 1.5;
}

.technologies-used {
  margin-top: 10px;
  font-weight: bold;
}

.technology-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
}

.technology-list li {
  background-color: #dddddd;
  padding: 5px 10px;
  border-radius: 5px;
}

.logo-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 20px;
  padding: 20px;
}

.holomua-team-photo {
  max-width: 200px;
  height: auto;
}

.hawaiian-islands-photo {
  max-width: 150px;
  height: auto;
}

.logo {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .about-left {
    align-items: center;
  }
}

@media (min-width: 769px) {
  .about-container {
    grid-template-columns: 1fr 2fr;
  }
}

.search {
  margin-bottom: 10px;
}

#news-search {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-radius: 5px;
}

#news-list em {
  color: #555555;
  font-size: 0.9em;
  margin-left: 10px;
}

.show-more {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.9em;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

.show-more:hover {
  text-decoration: underline;
}

#about .location {
  font-style: italic;
  color: #555555;
  font-size: 15px;
  padding-top: 5px;
}

#life-countdown {
  margin-top: 20px;
}

.countdown-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.countdown-card {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  background-color: #fff8f0;
  border: 2px solid #9a1f40;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.countdown-card h3 {
  margin-bottom: 10px;
  color: #9a1f40;
}



.countdown-phase-nav {
  
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#phase-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

#prev-phase,
#next-phase {
  background-color: #9a1f40;
  color: white;
  border: none;
  padding: 5px 8px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#prev-phase:hover,
#next-phase:hover {
  background-color: #b63455;
}

.progress-bar {
  width: 100%;
  background-color: #eee;
  border-radius: 5px;
  margin: 10px 0;
  height: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #9a1f40;
  width: 0;
  transition: width 0.5s ease-in-out;
}
.graduation-countdown {
  background-color: #f0faff;
  border: 2px solid #0077b6;
}

.graduation-countdown h3 {
  color: #0077b6;
}

