/* @2025 - Steffen Klausen - steffen@klausenguldbaek.dk*/
/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: #9cb697ca;
  color: #fff;
}

a {
  color: #9243ab;
  font-weight: 700;
  text-decoration: none;
}

body {
  line-height: 1.7;
  font-size: 1.4rem;
  background-color: rgb(255, 252, 240);
  font-family: 'Bellota', system-ui;
  font-weight: 400;
  font-style: normal;
  /* background-color: rgb(255, 255, 248); */
}

body > * {
  padding: 32px;
}

i {
  margin-right: 10px;
  color: #9243ab;
}

[id='toastmaster'],
[id='giftcoordinator'] {
  scroll-margin-top: 40vh;
  scroll-behavior: smooth;
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* SCROLLBAR STYLING */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(146, 67, 171, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(146, 67, 171, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(146, 67, 171, 0.7);
  cursor: s-resize;
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* VISIBILITY */

.hidden {
  display: none;
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* POSITIONING */

.position-relative {
  position: relative;
}

.absolute-center {
  position: absolute;
  width: 85%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* FLEXBOX */

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* PADDING */

.no-padding-top {
  padding-top: 0;
}

.no-padding-bottom {
  padding-bottom: 0;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.plr-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* CONTAINER EDGES */

.rounded {
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.box-shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* COLORS */

.bg-green {
  background-color: #9cb697;
}

.bg-pink {
  background-color: #ffe4f1;
}

.bg-purple {
  background-color: #d8c5f1;
}

.bg-blue {
  background-color: #c4d0f2;
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* BUTTONS */

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  color: #9243ab;
  font-weight: 700;
  border: rgb(146, 67, 171) 1px solid;
  text-decoration: none;
  border-radius: 30px;
  /* font-weight: bold; */
  cursor: pointer;

  &:hover {
    background-color: rgba(146, 67, 171, 0.4);
    /* background-color: rgba(243, 90, 90, .4); */
  }
}

.btn-right {
  /* display: flex; */
  justify-content: flex-end;
  width: 100%;
}

.btn {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* CONTAINER */

.container {
  margin: 0;
  padding: 8px 0;
  width: 100%;
}

.container > * {
  max-width: 1124px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.container-title {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-left: 32px;
  padding-top: 8px;
  color: #9243ab;
}

.container-title-right {
  text-align: right;
  margin: 0;
  padding-right: 32px;
}

.container-content {
  position: relative;
  align-items: center;
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
}

.container-content-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

.container-content-wrapper {
  display: flex;
  gap: 2rem;
  align-items: space-between;
  justify-content: center;
  max-width: 1024px;
  margin: 0 auto;
}

.container-content-flex {
  flex: 1;
  min-width: 500px;
  min-height: 250px;
}
.container-content-flex-3 {
  min-width: 333px;
}

.container-content-flex > img {
  border-radius: 12px;
}

.container-content-flex img {
  width: 100%;
  height: 100%;
  max-width: 800px;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .container-content-wrapper {
    flex-direction: column;
  }

  .container-content-flex {
    height: 300px;
  }

  .container-content {
    font-size: 1.4rem;
  }

  .container-title {
    font-size: 2.5rem;
  }
  .container-content-text {
    font-size: 1.8rem;
  }
}

.container-border {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.shadow-border {
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.responsive-image-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  max-height: 500px;
}

.image-container-tall > img {
  border-radius: 24px;
}

.responsive-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This will cover the container while maintaining aspect ratio */
  border-radius: 8px; /* Optional: adds rounded corners */
}

.intro-title {
  font-size: 1.7rem;
}
