:root {
    --primary-color: #4a3b32;
    --secondary-color: #8c7b70;
    --accent-color: #d4c5b0;
    --text-color: #2c241b;
    --card-bg: rgba(255, 253, 245, 0.92);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Slight dim for better text contrast if needed */
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.content-card {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-person {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.name {
    font-weight: 500;
    font-size: 1.1rem;
}

.phone {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.phone:hover {
    color: var(--primary-color);
}

@media (min-width: 480px) {
    .contact-person {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .name::after {
        content: "|";
        color: var(--accent-color);
        margin-left: 10px;
    }
}

@media (max-width: 479px) {
    .content-card {
        padding: 2rem 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .message {
        font-size: 1rem;
    }
}