/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #2f4f4f; /* Dark Slate Gray */
  color: #f0f0f0;
  line-height: 1.6;
  padding: 0;
}

/* Navigation Bar */
nav {
  background-color: #1c2e2e;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00aaff; /* Cool Blue */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00aaff;
}

/* Header */
 header { 
    text-align: center; 
    padding: 60px 20px; 
    background-color: #1c2e2e; 
    color: #f0f0f0; 
    border-bottom: 2px solid #444; 
}


header h1 { 
    font-size: 2.5rem; 
    font-weight: 600; 
    letter-spacing: 1px; 
    color: #00aaff; }

header p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #ccc;
}

/* Profile Picture */
.profile-pic {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00aaff;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
  margin-bottom: 20px;
}

/* Section Titles */
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00aaff;
  border-bottom: 2px solid #444;
  padding-bottom: 5px;
}

/* Section Content */ 
section { 
    padding: 40px 20px; 
    max-width: 900px; 
    margin: auto; 
    background-color: #3b5f5f; 
    border-radius: 10px; 
    margin-bottom: 30px; 
    box-shadow: 0 0 10px rgba(0,0,0,0.3); 
}


/* Lists */
ul {
  list-style-type: square;
  padding-left: 1.5em;
  color: #ddd;
}

li {
  margin-bottom: 8px;
}

/* CV Download Button */
a[download] {
  display: inline-block;
  background-color: #00aaff;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

a[download]:hover {
  background-color: #33bbff;
}

/* Contact Form */
form {
  background-color: #2f4f4f;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ccc;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #3b5f5f;
  color: #f0f0f0;
  font-size: 1rem;
}

form button {
  background-color: #00aaff;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #33bbff;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive Layout */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .profile-pic {
    width: 140px;
    height: 140px;
  }
/* Full-screen section layout */
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Optional: Add spacing between sections */
section:not(:first-of-type) {
  margin-top: 60px;
}

  form {
    padding: 20px;
  }
}
