/* Global styles for the Defence Startup Ecosystem website */

:root {
  --primary-color: #1e6e50; /* Dark green similar to Dubai Crypto Report */
  --secondary-color: #f4a261; /* Orange accent color */
  --background-color: #f5f5f5; /* Light gray background */
  --text-color: #333333; /* Dark text for readability */
  --white: #ffffff;
  --light-gray: #e9e9e9;
  --dark-gray: #555555;
  --header-height: 60px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
.header {
  background-color: var(--primary-color);
  color: var(--white);
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Hero section */
.hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 120px 20px 60px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e8945a;
  text-decoration: none;
}

/* Author section */
.author-section {
  background-color: var(--white);
  padding: 60px 20px;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.author-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.author-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .author-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.author-image {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .author-image {
    margin: 0;
  }
}

.author-details {
  flex: 1;
}

.author-name {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.author-title {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.author-bio {
  margin-bottom: 20px;
}

.expertise-heading {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.expertise-list {
  list-style-type: none;
}

.expertise-item {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.expertise-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.education-heading {
  font-size: 1.4rem;
  margin: 20px 0 15px;
}

.education-item {
  margin-bottom: 8px;
}

.education-degree {
  font-weight: 600;
}

/* Report sections */
.report-section {
  background-color: var(--white);
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-heading {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.section-content {
  margin-bottom: 20px;
}

.section-content h3 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  color: var(--primary-color);
}

.section-content h4 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.section-content p {
  margin-bottom: 15px;
}

.section-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.section-content li {
  margin-bottom: 8px;
}

/* Report navigation */
.report-page {
  padding-top: 80px;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.report-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .report-container {
    flex-direction: row;
  }
}

.report-navigation {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .report-navigation {
    width: 250px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
  }
}

.section-list {
  list-style-type: none;
}

.section-item {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.section-item a {
  display: block;
  color: var(--text-color);
}

.section-item:hover {
  background-color: var(--light-gray);
}

.section-item.active {
  background-color: var(--primary-color);
}

.section-item.active a {
  color: var(--white);
  text-decoration: none;
}

/* Contact page */
.contact-page {
  padding-top: 80px;
}

.contact-section {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.contact-content {
  margin-top: 20px;
}

.contact-info {
  margin: 30px 0;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: 8px;
}

.about-report {
  margin-top: 30px;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright {
  margin-top: 20px;
  font-size: 0.9rem;
}
