@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap');
/* Color Palette */
:root {
    --primary: #1a2a6c;
    --secondary: #b21f1f;
    --accent: #fdbb2d;
    --text: #2c3e50;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: 'Catamaran', Arial, Helvetica, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg-light);
    margin: 0;
    padding: 0;
}

/* Header Design */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

header h1 {
    font-size: 3rem;
    margin: 0;
    letter-spacing: 1px;
}

header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Layout Container */
.container {
    max-width: 1000px;
    margin: -40px auto 60px;
    background: var(--white);
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
}

/* Typography */
h2 {
    color: var(--primary);
    border-left: 5px solid var(--accent);
    padding-left: 15px;
    margin-top: 40px;
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Citations and Metadata */
.citation {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: -10px;
    margin-bottom: 30px;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    background: var(--primary);
    color: white;
}

/* Mobile Responsiveness Old
@media (max-width: 720px) {
    .container {
        margin: 0;
        padding: 20px;
        width: 100%;
        border-radius: 0;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
}*/

.navbar {
  display: flex;
  justify-content: space-between;
  min-height: 70px; /* new css */
  align-items: center;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
}


/* The List Wrapper */
.nav-links {
  display: flex;
  flex-direction: row;
  list-style: none;     
  justify-content: space-between; 
}

.nav-links .nav-links_active-page {
  color: #ffe247;
  border: solid 1px;
  border-color: #ffe247;
  border-radius:20px;
  transition: 0.4s ease-in-out;
}

/* Individual Link Styling */
.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 20px;
}

.nav-links a:hover {
  color: #ffe247;
  border: solid 1px;
  border-color: #ffe247;
  border-radius:20px;
  transition: 0.4s ease-in-out;
}


/* Add space between the navbar items */
.nav-menu li {
    margin-left: 15px;
    margin-right: 25px;
}

/* Add padding inside the links to make them easier to click */
.nav-menu li a {
    padding: 5px 10px;
    display: inline-block;
}


.hamburger{
  display: none;
  cursor: pointer;
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: white;
}

.logo img {
  height: 80px;                  /* Control logo size via height */
  width: auto;                   /* Maintains aspect ratio */
  display: block;                /* Removes bottom whitespace gap */
  border: none;
  border-radius: 15px;
  margin: 5px 0 5px 5px;
}

.sticky {
	position: sticky;
	top: 0;
	z-index: 1000;
}

/* Mobile Responsive */

@media (max-width: 720px) {
  .flex-item {
    flex: 100%;
    margin: 0 5px;
}
  
.mobile {
  font-family: 'Catamaran', Arial, sans-serif;
  line-height: 1;
  letter-spacing: .3px;
  word-spacing: -3px;
  font-size: 25px;
  background-image: none;
}

.hamburger{
    display: block;
    margin: 0 10px 0 0;
}

  .hamburger.active .bar:nth-child(2){
    opacity: 0;
}
  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}
  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

  .nav-menu{
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #bdb9b9;
    width: 75%;
    text-align: center;
    transition: 0.3s;
    border: none;
    border-radius: 20px;
}

  .nav-item{
    margin: 10px 0;
}

  .nav-menu.active{
    left: 0;
}

.logo img {
  height: 50px;                  
  width: 100%;                 
  display: block;                
  border: none;
  border-radius: 5px;
  margin: 0 0 0 10px;
}

.container {
  flex-direction: column; /* Stacks columns vertically on small screens */
  padding: 40px 20px 40px 20px;
  margin-top: 30px;
}

.section {
  display: flex;
}

/*.left-column {
  padding: 5px 15px 5px 5px;
}*/

.text-block {
    background-color: #000;
    border: 1px solid #ddd;
    border-radius: 10px;
}


}
/* Mobile Responsive End */