/* ===== Body & Layout ===== */
body {
    background: linear-gradient(to bottom, #62c2e2, #07f07b);
    /* icy gradient */
    font-family: "Courier New", Courier, monospace;
    color: #ffffff;
    /* main text color */
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    max-width: 900px;
}

.navbox {
    background-color: white;
    border: 3px solid #0a7ea4;
    border-radius: 12px;
    width: 80%;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.navbox a {
    color: #0a7ea4;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    margin: 5px;
    display: inline-block;
    border-radius: 6px;
}

.navbox a:hover {
    background-color: #04a6b8;
    color: white;
}

h1 {
    color: #ffffff;
    /* bright snow white */
    font-size: 2.5em;
    text-align: center;
    text-decoration: underline;
    text-shadow: 2px 2px #0288d1;
    /* icy shadow for depth */
    margin-bottom: 25px;
}

h2 {
    color: #fbd5ad;
    /* icy blue */
    font-size: 1.8em;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #87f7f7;
    /* light blue underline */
    padding-bottom: 5px;
}

h3 {
    color: #fbd5ad;
    /* warm ski-lodge accent */
    font-size: 1.4em;
    text-decoration: underline;
    margin-top: 20px;
}

/* ===== Paragraphs ===== */
p {
    color: #e0f7ff;
    /* soft white/ice text */
    font-size: 16px;
    line-height: 1.7;
    margin: 12px 0;
}

/* ===== Links ===== */
a {
    color: #ff9800;
    /* warm accent for links */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #f44336;
    /* red pop on hover */
}

/* ===== Images ===== */
img {
    border: 5px solid #fbd5ad;
    /* warm frame */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    display: block;
    margin: 10px auto;
}

/* ===== Ski Cards / Featured Items ===== */
.ski-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #87f7f7;
    border-radius: 15px;
    padding: 15px;
    margin: 20px 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ski-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Responsive Adjustments ===== */
@media screen and (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 14px;
    }
}

/* Exact color match from your original background */
body.contact-page {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 0;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #00d0ff, #ff0000);
    background-attachment: fixed;
    min-height: 100vh;
    color: #d80c0c;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Matches the rounded white card from your nav menu */
body.contact-page .container {
    background: #c25757;
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(190, 174, 174, 0.2);
    color: #333;
    width: 100%;
    max-width: 450px;
}

body.contact-page h1 {
    text-decoration: underline;
    color: #fbd5ad;
    font-size: 2rem;
    margin-top: 0;
}

body.contact-page input,
body.contact-page textarea {
    width: 90%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #b64040;
    border-radius: 5px;
    font-family: inherit;
}

/* The Runaway Button */
body.contact-page #submit-btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    /* Smooth gliding transition */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #00f721;
    color: rgb(112, 184, 134);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px #4a828e;
    font-family: inherit;
}

body.contact-page #submit-btn:active {
    box-shadow: 0 2px #4a828e;
    transform: translateY(2px);
}