:root {
    --bg-color: #faf8f5; /* Very light cream */
    --text-primary: #2c2c2c; /* Dark text */
    --accent-color: #c4713a; /* Warm orange-brown accent */
    --header-color: #1a1a1a; /* Very dark header */
    --border-color: #d4c4b0;
    --button-bg: #8b5a2b;
    --button-text: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.15);
}

body {
    background-color: #f5f0e8; /* Light cream background */
    background-image: linear-gradient(180deg, #f5f0e8 0%, #ebe5d8 100%);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: "Roboto Slab", serif;
    color: var(--text-primary);
}

/* The main card container simulating cardboard */
.card {
    background-color: #ffffff;
    background-image: linear-gradient(145deg, #ffffff 0%, #faf8f5 100%);
    width: 100%;
    max-width: 630px;
    border-radius: 12px;
    padding: 40px 30px 64px;
    box-shadow:
        0 15px 40px var(--shadow-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px dashed var(--border-color);
    padding-bottom: 20px;
    position: relative;
}

.logo-placeholder {
    width: 150px;
    height: 200px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Kelly Slab", display;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Replace logo-placeholder content with actual img tag when you add your logo */
.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-family: "Kelly Slab", display;
    font-size: 2.5rem;
    margin: 0;
    color: var(--header-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-top: 5px;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
    font-weight: 400;
}

.description p {
    margin-bottom: 10px;
}

.description strong {
    font-family: "Kelly Slab", display;
    font-size: 1.3rem;
    color: var(--header-color);
    display: block;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.services-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 700;
}

.services-list li::before {
    content: "\f105"; /* fa-wrench */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    top: 2px;
    color: var(--accent-color);
}

.buttons-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    background-color: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    padding: 15px 20px;
    font-family: "Kelly Slab", display;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid var(--text-primary);
    box-shadow: 4px 4px 0px var(--text-primary);
    transition: all 0.1s ease;
    cursor: pointer;
    text-transform: uppercase;
    line-height: 0;
}

.btn:hover {
    background-color: var(--text-primary);
    color: #fff;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--accent-color);
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--text-primary);
}

.btn i {
    font-size: 1.2rem;
}

/* Full width buttons for specific items if needed */
.btn.full-width {
    grid-column: 1 / -1;
}

/* Nails/Rivets on corners */
.rivet {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #555;
    border-radius: 50%;
    box-shadow:
        inset -2px -2px 4px rgba(0, 0, 0, 0.6),
        inset 2px 2px 4px rgba(255, 255, 255, 0.4),
        1px 1px 2px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.rivet.tl {
    top: 15px;
    left: 15px;
}
.rivet.tr {
    top: 15px;
    right: 15px;
}
.rivet.bl {
    bottom: 15px;
    left: 15px;
}
.rivet.br {
    bottom: 15px;
    right: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .card {
        padding: 30px 20px 50px;
        border-radius: 6px;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .logo-placeholder {
        width: 120px;
        height: 160px;
    }

    .description {
        font-size: 0.95rem;
    }

    .description strong {
        font-size: 1.1rem;
    }

    .services-list li {
        font-size: 0.9rem;
    }

    .buttons-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .card {
        padding: 25px 15px 40px;
        border-radius: 4px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .logo-placeholder {
        width: 100px;
        height: 140px;
    }

    .description {
        font-size: 0.9rem;
        text-align: left;
    }

    .services-list {
        padding: 10px 0;
    }

    .services-list li {
        font-size: 0.85rem;
        padding-left: 20px;
    }

    .btn {
        font-size: 0.95rem;
        padding: 10px 12px;
        gap: 10px;
    }

    .rivet {
        width: 10px;
        height: 10px;
    }

    .rivet.tl,
    .rivet.tr {
        top: 10px;
    }

    .rivet.tl,
    .rivet.bl {
        left: 10px;
    }

    .rivet.tr,
    .rivet.br {
        right: 10px;
    }

    .rivet.bl,
    .rivet.br {
        bottom: 10px;
    }
}
