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

body {
    background-color: #8B5A2B; /* Base coffee-brown color */
    font-family: 'Roboto', serif;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Coffee bean background pattern */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('images/bean.png');
    background-size: 50px 50px;
    background-repeat: space;
    background-position: 0 0;
    transform-origin: center center;
    transform: rotate(45deg); /* Creates diagonal pattern */
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
    filter: brightness(0) saturate(100%) invert(27%) sepia(15%) saturate(1966%) hue-rotate(346deg) brightness(92%) contrast(82%);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    font-family: 'Limelight';
}

.floating-mug {
    margin: 40px 0;
}

.floating-mug img {
    width: 250px;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
}

.subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
    /* font-style: italic; */
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display';
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .floating-mug img {
        width: 120px;
    }
}

