/* styles for snowman pages */
body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #a9d8ff 100%);
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

h1.mountains-of-christmas-bold {
    color: #1d3557;
    text-align: center;
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.mountains-of-christmas-regular {
    font-family: "Mountains of Christmas", serif;
    font-weight: 400;
    font-style: normal;
  }
  
.mountains-of-christmas-bold {
    font-family: "Mountains of Christmas", serif;
    font-weight: 700;
    font-style: normal;
}

.main{ min-height: 620px; }

.menu-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.menu-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 24px;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.menu-card h2 {
    color: #2c3e50;
    margin: 10px 0;
}

.menu-card p {
    color: #666;
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
}

.header-menu{
    text-align: center;
    margin-bottom: 20px;
}

.header-menu a {
    display: inline-block;
    border: 1px solid #2c3e50;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: white;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: auto;
    max-width: none;
}

.header-menu a:hover {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    max-width: 400px;
}
.header-menu a{
    display: inline-block;
    border: 1px solid;
    padding: 5px 10px;
    border-radius: 6px;
}

.app-controls{
    margin-top:20px;
    width:210px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button{
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 210px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 4px 0;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.bg-dred{
    background-color: #b70d0d;
}
.bg-dblue{
    background-color: #1d3557;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hidden{ visibility:hidden; }

.app-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.canvas-builder{
    width: 100%;
    max-width: 400px;
    border: 1px solid #a5cded;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .menu-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .menu-card {
        aspect-ratio: auto;
        padding: 15px;
    }

    h1.mountains-of-christmas-bold{
        font-size: 8vw;
    }
}