* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #680109;
    color: #FFF5E0;
    line-height: 1.7;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    font-size: 1.1rem;
}

h2 {
        color: #FFF5E0;
    line-height: 1.7;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
        font-size: 1.1rem;

}
.frame-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.corner {
    position: absolute;
    width: 15vh;
    height: 15vh;
    background-image: url('assets/elements/border.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.top-left {
    top: 1rem;
    left: 1rem;
    transform: rotate(0deg);
}

.top-right {
    top: 1rem;
    right: 1rem;
    transform: rotate(90deg);
}

.bottom-left {
    bottom: 1rem;
    left: 1rem;
    transform: rotate(270deg);
}

.bottom-right {
    bottom: 1rem;
    right: 1rem;
    transform: rotate(180deg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.link {
  color: inherit;
  text-decoration: underline;
}

.crown-icon {
    display: block;
    width: 450px;
    height: 350px;
    margin: 0 auto 0.5rem;
    background-image: url('assets/elements/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 100%;
}

.tagline {
    font-style: italic;
    font-size: 1.2rem;
    color: #FFF5E0;
}

.text-right {
  text-align: right;
  line-height: 1.5;
}

.content-columns {
    display: flex;
    gap: 3rem;
}

.column {
    flex: 1;
    padding: 1rem;
}

.title {
    color: #b2983f;
}

li {
    list-style-type: none;
}

ul {
    list-style-position: inside;
}

address {
    line-height: 1;
    font-style: normal;
}
address p {margin: 0.2rem 0; padding: 0;}

footer {text-align: center;}

.legal {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.slogan{
    text-align: center;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .brand-row {
    flex-direction: column;
    gap: 1rem;
  }

  .side-image {
    display: none;
  }

  .corner{
    display: none;
  }

  .crown-icon {
    width: 250px;
    height: 200px;
  }

  .content-columns {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .column {
    padding: 0.5rem;
    text-align: center;
  }

  .text-right {
    text-align: center;
  }

  .corner {
    width: 8vh;
    height: 8vh;
  }
}

