/* **********************************************************
 * add custom styles after imports below
 * ********************************************************** */

@import "default.css";
@import "layout.css";
@import "menu.css";
@import "queries.css";

/* **********************************************************
 * to import a font, use the @import option, you can find
 * lots of font options at fonts.google.com for example.
 * ********************************************************** */

 @import url('https://fonts.googleapis.com/css2?family=Gowun+Batang&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


header{
  font-family: "Gowun Batang", serif;
  font-size: 40px;
}

body{
  font-family: "Gowun Batang", serif;
  /* font-weight: 400; */
}






/* **********************************************************
 * Customizing
 *
 * changes to default settings like colors, typography,
 * spacing can be made in default.css
 *
 * other custom settings, start below
 *
 * ********************************************************** */

* {
    line-height: 135%;
    font-weight: 400;
}

body {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255) 50%, rgba(178,205,84));
    /* background-color: rgba(178,205,84); */
    /* color: var(--color-fg); */
    overflow: hidden;
}


@media (orientation: portrait) {
    * {
        font-size: 16px;
    }
}


  .floating-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
  }
  
  .floating-item {
    position: absolute;
    display: flex;
    flex-direction: column; /* Stack text and image vertically */
    align-items: center;
    font-size: 1.2em;
    color: #333;
    animation: floatInScreen 8s ease-in-out infinite alternate;
    text-align: center;
    
  }
  
  /* omg i hid this and suddenly the sizes are varying on random omg what */
  .floating-item img {
    width: 150px;
    cursor: pointer;
  }
  
  @keyframes floatInScreen {
    0% {
      transform: translateX(-10px) translateY(-10px);
    }
    100% {
      transform: translateX(20px) translateY(20px);
    }
  }
  

  /* Style for background floating items */
.background-item {
  color: rgba(100, 100, 100, 0.5); /* Make it semi-transparent */
  animation: floatBackground 5s ease-in-out infinite alternate; /* Slower animation */
  z-index:-1;
}

@keyframes floatBackground {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  100% {
    transform: translateX(20px) translateY(20px);
  }
}

.nav__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.subtitle {
  font-family: 'Gowun Batang', serif;
  font-size:  var(--font-size-l);
  color: rgb(70, 70, 70);
  margin-top: 0.5rem;
  margin-left: 0.5rem; 
}




.logo-img {
  width: 900px;
  height: auto;
}


.about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 5.5rem;
}

.about-container {
  display: flex;
  width: 100%;
  max-width:100%;
  padding: 2rem;
}

.about-spacer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0.65rem;
}

.about-text {
  flex: 1;
  text-align: left;
  margin-left: 30rem;
}

.toggle-btn {
  font-size: 2.5rem; 
  line-height: 0.6; 
  margin: 0; 
  padding: 0.5rem 0; 
  cursor: pointer;
  text-align: left; /* Align text to the left */
}

.toggle-btn.active {
  color: rgb(98, 98, 98);
  font-weight: bold;
  
}

.toggle-btn.inactive {
  color: lightgrey;
}


/* Styling for the info-description div */
.info-description {
  position: fixed; 
  margin-left: 0.65rem;
  bottom: 1rem; 
  left: 1rem; 
  font-size: 0.5em; 
  line-height: 1.4; 
  color: #333;
  max-width: 260px; /* Limit the width of the text block */
}

.info-description a {
  color: #2d2d2d; /* Link color */
  text-decoration: none; /* Remove underline */
}

.info-description a:hover {
  text-decoration: dashed underline; /* Add underline on hover */
}

/* .about {
  position: absolute; 
  top: 680px; 
  left: 50px;
  width: 100px; 
  padding: 10px; 
  border: 2px dashed #000; 
  text-align: center; 
} */

.about {
  position: fixed;
  width: 100px;
  height: 50px;
  bottom: 50px;
  left: 40px;
  color: #000;
  border: 1px dashed #000;
  text-align: center;
  text-decoration: none;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  background-color: #fff; 
}
        

        .about:hover {
            border: 1px dashed #000;
            

        }

        .card {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            pointer-events: none;
            transition: visibility 0.2s, opacity 0.2s;
            z-index: 1000;
        }

        .card:target {
            visibility: visible;
            opacity: 1;
            pointer-events: auto;
            color: rgb(70, 70, 70);
            font-family: "Inter", sans-serif;
            font-size: 1.2em;
        }

        .card-content {
            background: floralwhite;
            padding: 4em;
            width: 700px;
            position: relative;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .card-close {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5em;
            text-decoration: none;
            color: #aaa;
            transition: 0.3s;
        }

        .card-close:hover {
            color: #333;
        }

/* styles for caption */
/* #home-caption {
  position: fixed;
  bottom: 20px; 
  width: 100%;
  text-align: center;


  color: var(--color-4);
  font-size: 18px;
  padding: 10px;

  font-family: "Xanh Mono", serif;
  font-style: italic;
} */

/* ::before is not the right function */

/* .caption::before {
  content: "I love everything. Here's why: "; 
  font-weight: bold;
}

.caption::after {
  content: "Discover joy in simplicity."; 
  display: inline-block;
  margin-left: 5px;
  font-style: italic;
} */

/* .caption {
  position: fixed;
  bottom: 20px; 
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8); 
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  font-family: 'Arial', sans-serif;
} */

/* 
#demo {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
  text-align: center;
  bottom: 0;
  position: fixed;
  font-family: "Xanh Mono", serif;
  font-weight: 400;
} */