/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header & Navbar */
header {
  background: #5E8C9F; /* Wedgwood Blue */
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: white;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background-color: #8295a1; /* Soft hover color */
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #536878;
    margin-top: 1rem;
  }

  .nav-links li {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #8295a1;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}




.tagline {
  font-size: 1.2rem;
  font-weight: 300;
}

nav {
  background: #D7B2B5;
  padding: 1rem 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main h2 {
  margin-top: 2rem;
  font-size: 2rem;
  color: #5E8C9F; /* Wedgwood Blue */;
}

.profile-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensures responsiveness on smaller screens */
  }
  
  .profile-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
  }
  
  .profile-text {
    flex: 1;
    min-width: 250px;
  }
  
.profile-image {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

.cv-section ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Accordian */
.accordion {
  max-width: 600px;
  margin: auto;
}

details {
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: none;
}

summary {
  cursor: pointer;
  font-weight: bold;
  padding: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.analyse summary {
  background-color: #B7C9D3;
}

.design summary {
  background-color: #D9CBB6;
}

.develop summary {
  background-color: #D7B2B5;
}

.implement summary {
  background-color: #C7D6C3;
}

.evaluate summary {
  background-color: #D5C8E2;
}

details[open] summary {
  border-bottom: 1px solid #ccc;
}

.content {
  background: #fff;
  padding: 1rem;
  line-height: 1.5;
}

/* Accordian End */

.skills {
  list-style-type: circle;
  padding-left: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.skills li {
  background: #F9F6F2;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.5rem; /* space between items */
  display: list-item; /* ensures it's treated as a bullet list item */
}

.skills li.wedgewood-blue {
  background: #B7C9D3;
}

.skills li.warm-sand {
  background: #D9CBB6;
}

.skills li.muted-sage {
  background: #A3B18A;
}

.skills li.light-lilac {
  background: #C8A2C8;
}

.skills li.pale-rose {
  background: #D9B3AA;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.project-card {
  background:#dddd;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
}

.project-card h3 {
  margin: 1rem;
  font-size: 1.25rem;
  color: #5E8C9F;
}

.project-card p {
  margin: 0 1rem 1rem;
}

#contact ul {
  margin-top: 1rem;
  list-style: none;
}

#contact li {
  margin-bottom: 0.5rem;
}

footer {
  background: #999;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

/* style.css */

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }

  
  thead {
    background-color: #5E8C9F; /* Wedgwood Blue */
    color: white;
  }
  
  th, td {
    padding: 12px;
    text-align: left;
    vertical-align: top; /* Align cell content to top */
    border: 1px solid #9BAEBF; /* Soft Slate */
  }
  
  tbody tr:nth-child(even) {
    background-color: #F8F8F8; /* Classic White */
  }
  
  tbody tr:nth-child(odd) {
    background-color: #B7C9D3; /* Powder Blue */
  }
  
  .separator {
    border: 0;
    height: 2px;
    background-color: #5E8C9F; /* Wedgwood Blue */
    margin: 40px 0; /* Add space above and below */
  }

  .interests {
    padding: 2rem;
    /* background-color: #f0f4f7;*/
    font-family: Arial, sans-serif;
  }
  
  .interests h2 {
    color: #5E8C9F; /* Wedgwood Blue */
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
    color: #5E8C9F; /* Wedgwood Blue */
  }
  
  .interest-grid img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
  }
  
  .interest-grid p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  #location {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f8f8f8;
  }
  

  .interest-card {
    background:#dddd;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }
  
  .interest-card:hover {
    transform: translateY(-5px);
  }
  
  .interest-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .interest-card h3 {
    margin: 1rem;
    font-size: 1.25rem;
    color: #5E8C9F;
  }
  
  .interest-card p {
    margin: 0 1rem 1rem;
  }
  


  #location h2 {
    color: #5E8C9F;
  }
  
  .map-container {
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button {
    background-color: #5E8C9F;  /* Manchester purple */
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-top: 20px;
  }
  
  .cta-button:hover {
    background-color: #B7C9D3; /* Lighter shade for hover */
  }