:root {
    --bg-main: #fafafa;
    --card-bg: #f5f5f5;
    --accent: #3b16ce;
    --section-bg: #abbf88;
}

body { font-family: "Montserrat", "Roboto Mono", Arial, sans-serif; 
    font-weight: 400;
background-color: var(--bg-main);
    margin: 0;
    padding: 0;
}

.container {
    font-family: "Roboto Mono";
}

.hero {
}
.hero-title {
    font-family: "Montserrat";
    font-size: 30px;
    line-height: 2;
    letter-spacing: -0,04em;
    color:rgb(8, 8, 8);
}

.hero-button {
    font-family: inherit;
    font-weight: 700;
    font-size: 17px;
    color: #0d0722;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

nav a {
    cursor: pointer;
    text-decoration: none;
    color: #0d0722;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
    background-color: #3b16ce;
    color: white;
}

#figcaption-text {
    text-align: center;
}

#page-link a {
    color: tomato;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    margin-right: 12px;
    margin-bottom: 8px;
}

#page-link a:hover {
    color: var(--accent);
    text-decoration: underline;
}

header {
    margin-bottom: 30px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    width: 100%;
}

.model {
    text-align: center;
    margin: 40px 0;
}

.model-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.model-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

.card,
.performance-card,
#cleaning-guide,
#cleaning {
    background-color: var(--card-bg);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
    transition: transform 0.2s ease;
}

.card:hover {
    transform: scale(1.02);
}

.card h3 {
    font-size: 24px;
    margin-top: 0;
}

.season-spring {
    background-color: #ebfeeb;
    font-size: 20px
}

.season-summer {
    background-color: #fff4d6;
    font-size: 20px
}

.season-autumn {
    background-color: #f8ede3;
    font-size: 20px
}

.season-winter {
    background-color: #e8f1fb;
    font-size: 20px
}

.performance-card {
    background-color: var(--section-bg);
}

.performance-issues {
font-size: 18px;
}

h1 {
    color: rgb(13, 7, 34);
}


.performance {
    background-color: var(--section-bg);
}


p a {
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
