* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Cooper Black Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Cooper Black Regular'), url('assets/COOPBL.woff') format('woff');
}

body {
    font-family: 'Cooper Black Regular';
    font-weight: normal;
    background-image: url('assets/kneady-bg.webp');
    background-repeat: repeat;
    background-position: top left;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.container {
    text-align: center;
    color: black;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    max-height: 200px;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;

}

.contact-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #000;
    color: #000;
    padding: 18px 45px;
    font-size: 1.1rem;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.1s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    position: relative;
    box-shadow: 6px 6px 0px #000;
}

.contact-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #000;
}

.contact-btn:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px #000;
}

@media (max-width: 768px) {
    .logo {
        max-height: 150px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 15px 35px;
        font-size: 1rem;
        box-shadow: 4px 4px 0px #000;
    }
    
    .contact-btn:hover {
        transform: translate(1px, 1px);
        box-shadow: 3px 3px 0px #000;
    }
    
    .contact-btn:active {
        transform: translate(4px, 4px);
        box-shadow: 0px 0px 0px #000;
    }
}