body {
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

a {
  color: #0070c9;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background-image: linear-gradient(to bottom, #0070c9 0%, #005db4 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;  
  background-image: linear-gradient(90deg, #f06292, #f48fb1, #f06292);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-fill-color: transparent;
  animation: gradient 3s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 200% 0;
  }
  50% {
    background-position: 0 0;
  }
  100% {
    background-position: 200% 0;
  }
}

nav ul.menu {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-left: 15px;
  font-size: 14px;
}

nav ul.menu li a {
  display: block;
  padding: 5px;
  font-weight: 600;
  color: #fff;
}

nav ul.menu li a:hover {
  color: #cce5ff;
}

.image-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px;
}

.image-preview {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.image-preview img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  max-width: 450px;
}

.image-preview:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

h1 {
  color: #1d1d1f;
  font-weight: 600;
  margin: 20px;
}

h2 {
  color: #1d1d1f;
  font-weight: 600;
  font-size: 18px;
}

.image-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

a.contact {
  background-image: linear-gradient(to bottom, #0070c9 0%, #005db4 100%);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 15px;
  margin-bottom: 20px;
  float: left;
}

a.contact:hover {
  text-decoration: none;
  background-image: linear-gradient(to bottom, #005db4 0%, #0070c9 100%);
}

footer {
  padding: 20px 0;
  
  background-color: #f8f8f8;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .image-container {
    grid-template-columns: 1fr;
  }

  .header-container {
flex-direction: column;
}

nav ul.menu {
flex-wrap: wrap;
}
}
.download-btn {
  display: inline-block;
  background-color: #0070c9;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: 600;
  text-decoration: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.image-preview:hover .download-btn {
  opacity: 1;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.pagination a {
  display: inline-block;
  font-weight: 600;
  color: #0070c9;
  padding: 5px 10px;
  background-color: #f8f8f8;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

a.pagination-item:hover,
.pagination-item.active {
  color: #fff;
  background-color: #0070c9;
  text-decoration: none;
}
.breadcrumb {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 14px;
  padding: 0;
  margin: 10px 20px;
}

.breadcrumb li {
  position: relative;
}

.breadcrumb li a {
  color: #0070c9;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #f8f8f8;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.breadcrumb li a:hover {
  background-color: #e6e6e6;
}

.breadcrumb li:not(:last-child)::after {
  content: '>';
  position: absolute;
  right: -5px;
  color: #ccc;
}

.breadcrumb li a span {
 white-space: nowrap
}
.related-links {
  margin: 20px;
}

.aboutus {
  margin: 20px;
}

.related-links h2 {
  font-weight: 600;
  margin-bottom: 15px;
}

.related-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.related-links ul li a {
  display: block;
  padding: 5px 10px;
  font-weight: 600;
  background-color:#f8f8f8;
  color: #0070c9;
border-radius: 5px;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
text-decoration: none;
transition: background-color 0.3s;
}

.related-links ul li a:hover {
background-color: #e6e6e6;
}

.gdpr-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px;
  z-index: 1000;
}

.gdpr-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.gdpr-popup p {
  color: #fff;
  margin: 0 20px 0 0;
}

button#gdpr-accept {
  background-color: #0070c9;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button#gdpr-accept:hover {
  background-color: #005db4;
}

* {
  box-sizing: border-box;
}

.search-container {
  background-color: #ccddee;
  padding: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

input[type='search'] {
  flex-grow: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

input[type='submit'] {
  padding: 10px 20px;
  border: none;
  background-color: #3f3d56;
  color: white;
  font-weight: bold;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


input[type='submit']:hover {
  background-color: #0167c0;
}

@media (max-width: 768px) {
  form {

  }

  input[type='search'] {
    width: 100%;
    border-radius: 5px;
  }

  input[type='submit'] {
    border-radius: 5px;
	padding: 10px 20px;
  }
}




@media (max-width: 768px) {
.related-links ul {
flex-direction: column;
}
}
.author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 5px;
  margin: 20px 0;
  flex-direction: column;
}
.author-name {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.publish-date {
  font-size: 14px;
  color: #777;
}
.image-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.detail-label {
  font-weight: bold;
  color: #333;
}

.detail-value {
  display: inline-block;
  padding: 5px 10px;
  background-color: #f8f8f8;
  border-radius: 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.detail-value:hover {
  background-color: #e6e6e6;
  text-decoration: none;
  color: #555;
}

.media_filter {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
}

.media_filter table {
    width: 100%;
    border-collapse: collapse;
}

.media_filter td {
    padding: 5px;
}

.media_filter input[type="text"] {
    width: 100%;
}

.media_filter input[type="submit"] {
    background-color: #007BFF;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}