:root {
    --primary-color: #422D15; /* Dark Brown */
    --font-main: 'Jura', sans-serif;
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: var(--font-main);
    color: var(--primary-color);
    overflow-x: hidden;
}

.landing-page {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.content-wrapper {
    position: absolute;
    bottom: 5%;
    left: 5%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    background: transparent;
    padding: 0;
}

.content-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.separator-container {
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.separator-line {
    height: 120px;
    width: 1px;
    background-color: currentColor;
    border-radius: 1px;
}

.separator-line rect {
    fill: currentColor;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.7;
}

.contact-item small {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        left: 50%;
        transform: translateX(-50%);
        bottom: 2rem;
        width: 100%;
        padding: 0 2rem;
        gap: 2rem;
        text-align: center;
    }

    .separator-line {
        width: 100px;
        height: 1px;
    }
    
    .separator-container {
        display: none;
    }

    .logo {
        max-width: unset;
    }

    .contact-info {
        align-items: flex-start;
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
