/* BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

head {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: #222;
  color: white;
  z-index: 1000;
}

nav a {
  background-color: #0077cc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #005fa3;
}

body {
  font-family: 'Georgia', serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background: #fdfaf6;
  color: #1a1a1a;
}

.left-img {
  float: left;
  width: 300px;
  margin: 0 20px 20px 0;
  border-radius: 10px;
}

.leftish-img {
  float: left;
  width: 300px;
  margin: 0 20px 20px 0;
  border-radius: 10px;
}

section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

h3 {
  margin-bottom: 10px;
  color: #4d4d4d;
}

ul {
  list-style-type: none;
  padding-left: 0;
}
ul li {
  margin-bottom: 15px;
  line-height: 1.5;
}

/* HERO SECTION */
.hero {
background-image: url('Photos/startbackground.png');
 background-size: cover; /* makes the image cover the whole screen */
  background-repeat: no-repeat; /* prevents the image from repeating */
  background-position: center center; /* centers the image */
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  line-height: 1.8;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* COLUMN SECTIONS */
.columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.columns > div {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #c4a76b;
  border-radius: 5px;
}

/* FOOTER */
footer {
  background: #2c2c2c;
  color: #ccc;
  text-align: center;
  padding: 30px;
}
footer a {
  color: #c4a76b;
}

/* -----------------------------
   RESPONSIVE DESIGN STARTS HERE
------------------------------ */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  .columns > div {
    flex: 1 1 45%;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  section {
    padding: 40px 20px;
  }
}

/* Phone (≤ 600px) */
@media (max-width: 600px) {
  .columns {
    flex-direction: column;
  }

  .columns > div {
    flex: 1 1 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 30px 15px;
  }
}
