:root {
    --primary-color: #F3AE37;
    --secondary-color: #B9D5B1;
    --text-color: #fffefe;
    --background-color: #fff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Remove padding to test centering */
    /* padding: 2rem; */
    box-sizing: border-box;
    background-color: var(--background-color);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.7)), url("images/concrete_image_tiny.png");
    background-size: cover;
    background-position: center;
}

main {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 2rem;
    text-align: center;
}

h1 {
    color: var(--primary-color);
    font-size: clamp(3rem, 15vw, 8rem);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    color: var(--text-color);
    /* margin: 1rem 0 3rem; */
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2rem; /* reduced padding */
    background-color: var(--primary-color);
    color: #000; /* interior text is black */
    text-decoration: none;
    border-radius: 12px;
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 4px solid transparent; /* removed visible border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-button:hover,
.contact-button:focus {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #000; /* keeps button interior text black */
    outline: none;
}

footer {
    width: 100%;
    text-align: center;
    padding: 1rem;
    margin-top: auto;
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
    .contact-button {
        transition: none;
        transform: none;
    }
}
