/* Add this to the top of your CSS (or in the <head> of your HTML) */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 20px 0px;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}
/* Add this to your existing CSS */
.contact-info {
    margin-top: 30px;
    width: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
}

.contact-link {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.contact-link i {
    color: #f6b703; /* Icon color */
    font-size: 1.5em;
    flex-shrink: 0;
}

.contact-link span {
    word-break: break-word;
    width: calc(100% - 40px); /* Adjust based on icon size */
}

.contact-link:hover {
    text-decoration: none;
	 color: #f6b703; /* Icon color */
}
.two-column {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 1200px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: #000;
}

.image-column img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.text-column {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-column p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}

/* Handwriting font class */
.handwriting {
    font-family: 'Caveat', cursive;
    font-size: 1.5em; /* Adjust size as needed */
    line-height: 1.4;
    color: inherit; /* Inherits color from parent */
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin: 10px 0;
    font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .two-column {
        flex-direction: column;
    }

    h1 {
        font-size: 24px;
    }

    .image-column,
    .text-column {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .text-column p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 15px;
    }

    /* Optional: Adjust handwriting font size for mobile */
    .handwriting {
        font-size: 1.2em;
    }
}