* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-image: url("https://image.kkday.com/v2/image/get/h_650%2Cc_fit/s1.kkday.com/product_250978/20241004085312_sbKkN/jpg");
  background-size: cover; /*covers all*/
  background-position: top;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  padding: 20px 50px;
}

.navbar nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.navbar a.active {
  color: #ffd700;
  font-style: italic;
}

.navbar {
  background-color: #2b3a1a;
  padding: 10px 24px;
  border-radius: 20px;
  transition: background 0.3s;
}

.navbar:hover {
  background-color: #3d5225;
}

.content-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.card {
  background-color: #606f2b;
  border-radius: 24px;
  max-width: 1000px;
  width: 150%;
  padding: 40px;
  display: flex;
  gap: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.right-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.subtitle {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #f3ce56;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: -15px; /*main title distance:)) */
}

.main-title {
  font-size: 80px;
  font-weight: 900;
  text-transform: lowercase;
  line-height: 0.9;
  margin-bottom: 20px;
  color: white;
}

.main-img-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.main-img {
  width: 100%;
  height: auto;
  display: block;
}

.description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* tinyimages:) */
.gallery {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.gallery-item {
  flex: 1;
  background-color: #3b451a; /* Dark frames around images */
  padding: 10px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1; /* square format */
}

.learn-more h3 {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: white;
}

.learn-more ul {
  list-style-type: none;
  padding-left: 15px;
}

.learn-more li {
  margin-bottom: 5px;
  position: relative;
}

/* bullet points */
.learn-more li::before {
  content: "•";
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.learn-more a {
  color: #fff;
  text-decoration: underline;
  font-size: 16px;
}

.page-footer {
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  padding: 20px 0;
  margin-top: bottom;
}

.page-container {
  background: linear-gradient(rgba(44, 64, 31, 0.75), rgba(44, 64, 31, 0.75)),
    url("https://images.trvl-media.com/place/6106246/0f6f9d49-fded-49e3-acd3-b254c023543a.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  border-bottom: 2px solid #f4f1de;
}

nav a {
  color: #f4f1de;
  margin-right: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #dda15e;
}

.active {
  color: #dda15e;
}

.take-action {
  background: #606c38;
  padding: 12px 24px;
  border-radius: 30px;
  color: #f4f1de;
  border: none;
  cursor: pointer;
}

.take-action:hover {
  background: #7f8f45;
}
