body {
    background-color: #F7F5FF;
}

.title {
    font-size: 20pt;
    font-family: Century Gothic, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    text-align: center;
    letter-spacing: 2px;
    padding-top: 10px;
    padding-bottom: 15px;
}

.title-image {
    display: block;
    width: 50%;
    max-width: 480px;
    margin: 0 auto;
}

.main {
    font-size: 11pt;
    font-family: Century Gothic, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.footer {
    font-size: 11pt;
    font-family: Century Gothic, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    color: black;
    background-color: #E8E0FF;
    text-align: center;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 20px;
}

.text {
    font-size: 11pt;
    font-family: Century Gothic, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

h1 {
    text-align: center;
    font-size: 12pt;
    font-family: Century Gothic, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 10px;
    font-size: clamp(16px, 4.5vw, 30px);
}

.nav-link {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    padding: 0 5px;
    cursor: pointer;
}

.nav-link[aria-current="page"] {
    font-weight: bold;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #808080;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-divider {
    color: #e0e0e0;
}

.section {
    display: block;
    padding: 10px;
    justify-content: center;
}

.active {
    display: block;
}

.home {
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(12px, 2vw, 20px);
    line-height: 1.6;
    color: #333;
    text-align: left;
    letter-spacing: 0.02em;
}

.home-intro {
    text-align: center;
    padding: 2.1rem 0;
}

.home-image {
    display: block;
    border-radius: 8pt;
    box-shadow: 0 3pt 4pt rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    max-height: 90vh;
    height: auto;
    width: auto;
    margin: 0 auto;
}

.gallery-div {
    margin-top: 24pt;
}

.store-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8pt;
    box-shadow: 0 3pt 4pt rgba(0, 0, 0, 0.1);
    padding-top: 2.1rem;
    padding-bottom: 5.1rem;
}

.store-top {
    width: 95%;
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(12px, 2vw, 20px);
    line-height: 1.6;
    color: #333;
    padding: 0rem 5rem 3rem 1.5rem;
    text-align: left;
}

.store-catalog {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 95%;
    gap: 1em;
}

.store-item {
    flex: 1;
    justify-content: center;
    align-self: center;
    padding: 2.5rem;
    min-width: 30%;
}

.elegant-text {
    font-family: 'Century Gothic', sans-serif;
    font-size: clamp(12px, 2vw, 20px);
    line-height: 1.6;
    color: #333;
    max-width: 60ch;
    margin: 1em auto;
    padding: 0 1em;
    text-align: left;
    letter-spacing: 0.02em;
    background-color: #f9f9fb;
    border-radius: 8pt;
    box-shadow: 0 3pt 4pt rgba(0, 0, 0, 0.1);
    padding-bottom: 1.1rem;
    padding-top: 0.33rem;
}
