/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700&family=Poppins:wght@400;500;600&family=Momo:wght@400&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-color: #1e1e1c;
    color: white;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Background decoration */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 0;
}

/* Main content */
.content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Profile section */
.profile-section {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.profile-image {
    flex-shrink: 0;
    overflow: hidden;
    width: 131px;
    height: 100px;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.greeting {
    font-family: 'Momo Signature', cursive;
    font-size: 18px;
    color: #e0d1ae;
    line-height: 24px;
    margin-top: 10px;
}

.arrow-decoration {
    width: 20px;
    height: 13px;
    color: #e0d1ae;
    margin-top: 5px;
}

/* Main heading */
.main-heading {
    font-family: 'Libre Baskerville', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 60px;
    color: white;
    letter-spacing: -0.6px;
}

.main-heading .highlight {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.main-heading .highlight-text {
    font-weight: 700;
}

/* Body text */
.body-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #e0d1ae;
    margin-bottom: 80px;
    max-width: 600px;
}

.link {
    color: #e0d1ae;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.footer-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    color: white;
    line-height: 24px;
}

.footer-text a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-text a:hover {
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
        min-height: auto;
    }

    .main-heading {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .profile-section {
        margin-bottom: 50px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .profile-image {
        width: 131px;
        height: 100px;
    }

    .body-text {
        margin-bottom: 60px;
        max-width: 100%;
        font-size: 14px;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 16px;
    }

    .main-heading {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .profile-section {
        margin-bottom: 40px;
    }

    .profile-image {
        width: 80px;
        height: 61px;
    }

    .greeting {
        font-size: 16px;
    }

    .body-text {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 40px;
    }

    .footer-text {
        font-size: 11px;
    }
}
