body {
  background: #111;
  color: #eee;
  font-family: "Segoe UI Emoji", "Noto Color Emoji", Arial, sans-serif;
  margin: 0;
}

.site-header {
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
}

.site-header a {
  color: white;
  text-decoration: none;
}

.content {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

a {
  color: #4da3ff;
}

.site-footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  background: #1a1a1a;
}


.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.country-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  background: #222;
  transition: transform 0.2s ease;
}

.country-card:hover {
  transform: scale(1.02);
}

.country-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.country-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.country-overlay h2 {
  margin: 0;
  font-size: 28px;
}

.country-overlay p {
  margin: 5px 0 0;
  color: #ccc;
}


.scenery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.scenery-card {
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease;
}

.scenery-card:hover {
  transform: scale(1.02);
}

.scenery-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.scenery-content {
  padding: 15px;
}

.scenery-content h2 {
  margin-top: 0;
}

.scenery-features {
  color: #aaa;
  font-size: 14px;
}

.tag-container {
  margin-top: 10px;
}

.tag {
  display: inline-block;
  background: #333;
  color: #ddd;
  padding: 4px 10px;
  margin: 4px 4px 0 0;
  border-radius: 20px;
  font-size: 12px;
}

.hero-image {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto 25px auto;
  border-radius: 12px;
}

.preview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  
  gap: 15px;
  margin-top: 20px;
}

.preview-grid a {
  width: 220px;
}

.preview-grid img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.preview-grid img:hover {
  transform: scale(1.02);
}

.download-panel {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

.download-button {
  display: inline-block;
  background: #0066cc;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  margin: 8px 8px 0 0;
}

.download-button:hover {
  background: #0080ff;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.9);
}

.lightbox img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
}

.lightbox:target {
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  text-decoration: none;
}

.site-header {
  position: relative;
  margin-bottom: 40px;
}

.header-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.header-overlay {
  position: absolute;
  bottom: 20px;
  left: 25px;
  right: 25px;
  color: white;
}

.site-title {
  color: white;
  text-decoration: none;
  font-size: 42px;
  font-weight: bold;
  display: inline-block;
}

.site-title:hover {
  text-decoration: underline;
}

.header-overlay p {
  margin-top: 10px;
  font-size: 18px;
  color: #ddd;
}

@media (max-width: 768px) {

  .header-image {
    height: 220px;
  }

.site-title {
  font-size: 28px;
}

  .header-overlay p {
    font-size: 14px;
  }

}

.site-title {
  color: white;
  text-decoration: none;
  font-size: 42px;
  font-weight: bold;
}

.site-title:hover {
  text-decoration: underline;
}

.top-nav {
  margin-top: 15px;
}

.top-nav a {
  color: white;
  text-decoration: none;
  margin-right: 20px;
  font-weight: bold;
}

.top-nav a:hover {
  text-decoration: underline;
}