body {
  height: 100%;
  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') no-repeat center center/cover;
}

.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:
    "tourism visa"
    "Culture Recommandations"
    "Property Forum"
    "Feedback Test";

}

.tourism { grid-area: tourism; }

.visa { grid-area: visa; }

.Culture { grid-area: Culture; }

.Recommandations { grid-area: Recommandations; }

.Property { grid-area: Property; }

.Forum { grid-area: Forum; }

.Feedback { grid-area: Feedback; }

.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;
}
.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: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-full h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.article-date {
  color: gray;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.article-content {
  font-size: 1.1em;
  line-height: 1.6;
  white-space: pre-line;
}

.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;
}
