:root {
    --bg-color: #2A080C;
    --text-primary: #2c2c2a;
    --text-muted: #6b6b66;
    --accent: #2A080C;
    --font-heading: 'El Messiri', sans-serif;
    --font-body: 'El Messiri', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: #fff;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.content {
    width: 100%;
    max-width: 950px;
}

.content-box {
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 115, 85, 0.2);
    border-radius: 8px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(255,255,255,0.9);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 3rem 3rem 4rem;
}

.image-wrapper {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    border: 2px solid rgba(255,255,255,0.8);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) contrast(1.05);
}

.text-column {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 4rem 3rem 3rem;
}

.text-content {
    max-width: 500px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 1s ease 0.3s forwards;
}

.title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #000000;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 2rem;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--accent);
    margin: 2rem 0;
    opacity: 1;
}

.body-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--accent);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.contact-info {
    font-size: 1.1rem;
    color: #000000;
    line-height: 2;
    font-weight: 500;
}

.text-link {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 4px; 
    transition: color 0.3s;
    font-weight: 600;
}

.text-link:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .content-box {
        flex-direction: column;
    }
    
    .image-column {
        padding: 3rem 2rem 1rem 2rem;
    }
    
    .text-column {
        justify-content: center;
        padding: 1rem 2rem 3rem 2rem;
        text-align: center;
    }
    
    .divider {
        margin: 2rem auto;
    }
    
    .title {
        font-size: 3rem;
    }
}
