/* styles.css */

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

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
}

/* Header Styles */
header {
  color: white;
  background: #f4f4f4;
  padding: 1rem;
  background-image: url("./sardinia.jpg");
  background-position: 30% 70%;
  background-size: cover;
}

header h1 {
 font-size: 3.5em;
}

header p {
  font-size: 1.6em;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  font-size: 1.3em;;
  text-decoration: none;
  color: darkslategray;
}

.login-btn {
  background: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.cta-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Services Section */
#services {
  padding: 4rem 2rem;
  text-align: center;
  font-size: 1.2em;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.feature-card {
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Footer */
footer {
  padding: 2rem;
  background: #333;
  color: white;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section ul {
  list-style: none;
  padding-inline-start: 0px;
}

.footer-section a {
  color: white;
  text-decoration: none;
}
