

#info {
    color: white;
    font-size: 1.2em;
    width: 30%;
    text-align: center;
    position: relative;
    z-index: 10;
}

#hero {
    height: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

#hero article {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

#hero h1 {
    color: white;
    font-family: Garamond, serif;
    font-weight: bold;
    text-align: center;
    font-size: clamp(2rem, 6vw, 5rem);
    position: relative;
    z-index: 10;
    margin: 0 !important    ;
    margin-top: 50px !important;
}

#hero-background {
    width: 100vw !important;
    height: 100vh !important;
    position: fixed !important;
}

#copyright {
    margin-top: auto;
    color: #bbb;
    font-size: 1em;
    text-align: center;
    padding: 8px 0;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    background: rgba(34, 34, 34, 0.95);
    z-index: 1000;
}

/* Contact Buttons */
button {
    margin-top: auto;
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    background: #FCFCFD;
    box-shadow: 0px 2px 4px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    height: 48px;
    padding: 0 32px;
    font-size: 18px;
    border-radius: 6px;
    color: #36395a;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    z-index: 1000;
}

button:hover {
    color: #03a9f4;
    background-color: white;
    box-shadow: 0px 4px 8px rgb(45 35 66 / 40%), 0px 7px 13px -3px rgb(45 35 66 / 30%), inset 0px -3px 0px #d6d6e7;
    transform: translateY(-2px);
}

button:active {
    box-shadow: inset 0px 3px 7px #d6d6e7;
    transform: translateY(2px);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    #info {
        width: 85%;
        font-size: 1em;
    }

    #hero h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
        margin-top: 30px !important;
    }

    #hero article {
        padding: 1rem;
    }

    #copyright {
        font-size: 0.85em;
        padding: 6px 0;
    }
}