html,
body {
    height: 100%;
    margin: 0;
    font-family: "Playfair Display", serif;
    background-color: #000;
    color: white;
    display: flex;
    flex-direction: column;
}

/* Full-height layout with footer always at bottom */
body {
    display: flex;
    flex-direction: column;
}

.page-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    flex: 1;
    background-image: url("https://725mass.com/images/725_hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

.content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 500;
}

button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease, background-color 0.3s ease;
}
button:hover,
button:focus {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional desktop zoom effect */
@media (min-width: 768px) {
    .hero {
        animation: zoomIn 20s ease-in-out infinite alternate;
    }
    @keyframes zoomIn {
        0% {
            background-size: 100%;
        }
        100% {
            background-size: 110%;
        }
    }
}

/* Sticky footer always at bottom */
footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
    background-color: #111;
    color: #ccc;
}
