@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

/* motto 파일 배경이미지 */
body.motto-page {
    background-image: url("/static/image/aurora_tent_pic.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

/* album(music) 파일 배경이미지 */
body.album-page {
    background-image: linear-gradient(45deg,
        rgb(51 43 43 / 75%),
        rgb(20 19 20 / 61%)),
    url("/static/image/canmore_rundles.png");

    max-height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.qna-page {
    background-image: url("/static/image/aurora_tent_pic.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
}

@media (max-width: 768px) {

    .navbar-brand,
    .nav-link {
        font-size: 0.95rem;
    }

    .container {
        padding-top: 120px;
    }

    .motto {
        margin-bottom: 100px;
    }
}

/* 아래 3가지 navbat 관련 css는 어떻게 어느 파일에 적용되는지 궁금합니다. */
.navbar {
    background-color: transparent !important;
    backdrop-filter: none;
    box-shadow: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.navbar-brand,
.nav-link {
    font-size: 1rem;
    color: white !important;
}

.nav-link:hover {
    color: #ffc107 !important;
}

#weatherIcon {
  color: rgba(255, 255, 255, 0.85);  /* 반투명 흰색 */
  font-size: 1.4rem;
  z-index: 100;
}

/* container class는 motto에서 메인 텍스트용이지만, album(music)에서는 푸터용 */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 100px;
    /* Must be > footer height */
}

.greeting {
    margin-bottom: 100px;
}

.clock {
    margin-bottom: 100px;
    font-weight: bold;
}

.footer {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 500;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

    /* .album-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 15px;
      overflow: hidden;
    }

    .album-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .album-image {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .album-title {
      font-weight: bold;
      margin-top: 0.5rem;
    }

    .album-desc {
      font-size: 0.9rem;
      color: #777;
    }

    .icon-label {
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
      margin-top: 5px;
    } */