@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}
header {
    background: #003399;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 10px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}
main {
    padding: 20px;
}
section {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
form input, form textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}
form button {
    background: #003399;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}
footer {
    text-align: center;
    padding: 10px;
    background: #ccc;
}
a {
    color: #004080;
    text-decoration: underline;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fffaf2;
}

h1, h2 {
  color: #e67e22; /* Arancione */
}

a, .button {
  background-color: #e67e22;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery img {
  max-width: 300px;
  height: auto;
  border: 3px solid #e67e22;
  border-radius: 8px;
}


/* Font sizing improvements */
body {
    font-size: 20px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

p, li, a, form input, form textarea, footer {
    font-size: 20px;
}

nav ul li a {
    font-weight: 600;
}

/* Optional hover effect for links */
nav ul li a:hover, a:hover {
    text-decoration: underline;
    background-color: #d35400;
}
.hero-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 20px;
  background-color: #fff7f0;
}

.hero-gallery img.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 30%;
  min-width: 280px;
}

.image-container {
  text-align: center;
  margin: 30px auto;
}

.responsive-img {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.course-image {
  text-align: center;
  margin: 30px 0;
}

.course-image img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}