body {
  height: 100vh;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e0dfdf;
  color: #1a1a1a;
  box-sizing: border-box;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('IMG/polusa3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000000;
}


.main-nav {
  z-index: 999;
  background: #ffffff;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  height: fit-content;
  position: sticky;
  top: 0;
}
.main-nav button{
  border: none;
  cursor: pointer;
  background-color: white;
}
.sidebar button{
  background-color: black;
  margin: 20px 0px;
}
.container {  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 10px 10px;
  grid-auto-flow: row;
  grid-template-areas:
    "Home tourism"
    "visa Culture"
    "recommendations Property"
    "Test Forum";

}




.tourism { grid-area: tourism; }

.visa { grid-area: visa; }

.Culture { grid-area: Culture; }

.recommendations { grid-area: recommendations; }

.Property { grid-area: Property; }

.Forum { grid-area: Forum; }

.Home { grid-area: Home; }

.Test { grid-area: Test; }

.option{
  color: white;
  display: flex;
  min-height: 20px;
  min-width: 20px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  background-color: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  flex-direction: column;
}

footer{
  display: flex;
  color: white;
  background-color: black;
  justify-content: center;
  align-items: center;
  max-height: 40px;
}

.option:hover{
  background-color: gray;
}
.option h3 {
  font-size: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.2;
}
.option i {
  font-size: 2rem;
  color: #c8102e;
  display: block;
  margin-bottom: 0.5rem;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  min-width: fit-content;
  z-index: 1000;
  background-color: black;
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  padding-top: 2rem;
  padding: 10px;
}
.sidebar a{
  color: white;
  text-decoration: none;
}

@media (min-width: 769px) {
  .sidebar {
    display: none;
    height: 100%;
    width: 200px;
  }
  .hideOnPC{
    display: none;

  }
}

.article-full {
  max-width: 800px;
  margin: 40px auto;
  padding: 50px;
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: white;
  border: 1px solid rgb(216, 184, 0);
}

.article-full h1 {
  font-size: 2em;
  margin-bottom: 10px;

}

.article-date {
  color: rgb(180, 180, 180);
  font-size: 0.9em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.article-content {
  font-size: 1.1em;
  line-height: 1.6;
  white-space: normal;
}

.gold-back h2{
    justify-self: center;
}


.test {
  display: flex;
  background-color: black;
  padding: 10px 20px;
  text-align: center;
  flex-direction: row;
  justify-content: space-around;
}

.test h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, rgba(191, 149, 63, 1) 0%, rgba(252, 246, 186, 1) 30%, rgba(179, 135, 40, 1) 48%, rgba(251, 245, 183, 1) 70%, rgba(170, 119, 28, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0;
  word-break: break-word;
  font-family: Brush Script MT, Brush Script Std, cursive;
}

.test p {
  font-size: 1rem;
  color: white;
  margin: 0.3rem 0;
  font-family: Apple Chancery, cursive;
}


.gold-back{
  display: flex;
  width: fit-content;
  height: fit-content;
  background: linear-gradient(90deg, rgba(191, 149, 63, 1) 0%, rgba(252, 246, 186, 1) 30%, rgba(179, 135, 40, 1) 48%, rgba(251, 245, 183, 1) 70%, rgba(170, 119, 28, 1) 100%);
}
.gold-back h1{
  width: 100%;
  background-color: #1e1e1e;
  top: 0;
  margin: 0;
  margin-bottom: 2px;
  padding: 5px;
}

.gold-back h3, .gold-back h2{
  background-color: #1e1e1e;
  top: 0;
  margin: 0;
  margin-bottom: 2px;
  padding: 5px;
}



a{
    color: rgb(0, 121, 157);
}