/* About page styles */

body {
  background-color: #f5faff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Wrapper to hold the two columns side by side */
.content-wrapper {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 20px 40px;
  gap: 30px;
}

/* Left side container: 1/3 width, centers image vertically and horizontally */
.leftSide {
  flex: 0 0 33%;
  max-width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* ensures vertical centering space */
}

/* The image styling */
.imageContainer {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(21, 101, 192, 0.3);
}


/* Right side container: 2/3 width, vertical stack with centered content */
.rightSide {
  flex: 0 0 66%;
  max-width: 66%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header text above the table */
.aboutMe {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
  color: #0d47a1;
  width: 100%;
}

/* Paragraph under the header */
.introInfo {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 700px;
  font-family: sans-serif;
  width: 100%;
  color: #333;
}

/* Table styles */
table {
  border: 1px solid #1565c0;
  border-collapse: collapse;
  width: 80%;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(21, 101, 192, 0.2);
  background-color: white;
  border-radius: 8px;
}

/* Table hover effect: slightly grow */
table:hover {
  transform: scale(1.05);
}

/* Table header and cells */
th,
td {
  border: 1px solid #1565c0;
  padding: 12px 15px;
  text-align: center;
}

th {
  background-color: #bbdefb;
  font-weight: 600;
  color: #0d47a1;
  font-size: 1.1rem;
}

/* Table body styling */
tbody tr:nth-child(even) {
  background-color: #f1f9ff;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 15px 0;
  background-color: #1565c0;
  color: white;
  font-weight: 600;
  position: relative;
  bottom: 0;
  width: 100%;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Apply animation to everything */
* {
  animation: fadeIn 0.7s ease-in-out;
}
