@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

.tour-header {
  background-image: url('/user/themes/deliver/images/header.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 250px 20px;
  color: white;
  text-align: center;
  font-family: 'Cinzel', serif;
}

.logo-title {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.dragon-logo {
  width: 170px;
  margin-right: 30px;
}

.title-block .main-title {
  font-size: 3em;
  text-align: left;
  font-weight: bolder;
  color: #267B74;
  letter-spacing: 2px;
  margin: 0;
}

.title-block .location {
  font-size: 1.5em;
  font-weight: 700;
  color: #267B74;
  letter-spacing: 2px;
  text-align: left;
  padding-left: 10px;
  margin: 0;
}

.title-block .owner {
  font-size: 1em;
  font-weight: 700;
  margin: 0;
  color: #991867;
  font-family: 'Cinzel', serif;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.main-nav ul li {
  display: inline-block;
  margin: 0 15px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #006666;
  font-weight: bold;
}

#body {
    width: 100%;
    background: #ffdec1;
    height: auto;
    min-height: 700px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.tour-footer {
  background-color: #267B74; /* Цвет заголовка */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Cinzel', serif;
  border-top: 5px solid #FDBE87; /* Цвет песка */
}

.tour-footer .company-name {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
}

.tour-footer .owner {
  font-size: 1em;
  margin: 5px 0 15px;
  color: #fff6dd;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  display: inline-block;
  margin: 0 10px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #ffeec7;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #fdb97a;
}

#navbar ul.navigation {
  display: block;
}

#navbar .panel-activation {
  display: none;
  
}

@media (max-width: 768px) { 
  #navbar ul.navigation {
    display: none;
  }
  
  .logo-title {
      position: relative;
      top: -8rem;
  }

  #navbar .panel-activation {
    display: inline-block;
    position: absolute;
    left: 10%;
    top: 3%;
    font-size: 2rem;
  }
}

.bloglist .articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.bloglist .article {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
}

.bloglist .article img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

