/* ====================
   Global Reset & Setup
==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', serif;
}

:root {
  --font-color: #000000;
  --primary-bg: #2b62ba;
  --secondary-bg: lightgrey;
  --link-color: black;
}

body {
  color: var(--font-color);
}

/* ====================
   Page Layout
==================== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  padding-bottom: 100px; /* Extra space for footer */
}
/* ====================
Background of text
==================== */
.Change-background{
  background:white;
  gap:10;
  background-size: cover;
}
.text_left {
  text-align:left;
  max-width: 450px;
}
.item_right {
  float: right;
  display: flex; 
  align-items: center; 
  justify-content: flex-end; 
  height: 370px;
  width: 370px;
}
/* ====================
   Top Banner
==================== */
.top_banner {
  background-color: var(--primary-bg);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  width: 200px;
}

.top_banner_pic {
  width: 85px;
  height: 75px;
  object-fit: contain;
}

.banner-text {
  flex-grow: 1;
  text-align: center;
  margin: 0 10px;
  font-size: 2rem;
  font-weight: bold;
}

/* ====================
   Navigation Bar
==================== */
.navbar {
  background-color: #364da8;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  border-bottom:2px solid #000;
}


nav {
  display: flex;
  gap: 50px;
  font-size: 24px;
}

nav a {
  color: var(--link-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #444;
  text-decoration: underline;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  width: 100%;
  padding: 10px 0;
}

.nav-left {
  padding-left: 10px; /* logo hugs left */
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* perfectly center the nav links */
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 24px;
  
}

.nav-right {
  width: 100px; /* give it some width to balance the left side */
}


.nav-logo {
  margin-right: auto;   
}

.top_banner_pic {
  height: 100px; /* Adjust to fit your navbar height */
}
/* ====================
   Subscriptions Table
==================== */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 2rem 0;
}

th, td {
  text-align: center;
  padding: 1rem;
  border: 1px solid #000;
  vertical-align: top;
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  text-align: left;
}

th h1, td h2, td h3 {
  margin-bottom: 0.5rem;
}
/* ====================
   About Page
==================== */
.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

.team-img-border-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    #709CDB 0deg,       /* start at top center */
    #698AD9 60deg,      /* blue top-right */
    #c0944e 120deg,     /* Light Yellow right */
    #FFBE58 180deg,     /* Yellow bottom center */
    #c0944e 240deg,     /* Light Yellow left */
    #698AD9 300deg,     /* blue top-left */
    #709CDB 360deg      /* back to top */
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px; /* thinkness of border */;
}

.bellow-team-img-border-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: conic-gradient(
    #709CDB 0deg,       /* start at top center */
    #698AD9 60deg,      /* blue top-right */
    #c0944e 120deg,     /* Light Yellow right */
    #FFBE58 180deg,     /* Yellow bottom center */
    #c0944e 240deg,     /* Light Yellow left */
    #698AD9 300deg,     /* blue top-left */
    #709CDB 360deg      /* back to top */
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px; /* thinkness of border */
}

.extra-team-images {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: nowrap;
}


.team-member-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ====================
   Buttons
==================== */
button {
  height: 50px;
  width: 120px;
  border-radius: 10px;
  background-color: #698AD9;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

button:hover {
  background-color: #FFBE58;
}
/* ====================
   Footer
==================== */
.Footer {
  background-color: #000000;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  z-index: 1000;
  color: #ffffff;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.footer-section {
  flex: 1;
  min-width: 100px;
  margin: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-copyright {
  text-align: center;
  font-size: 12px;
}
