* {
    padding: 0px;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Lora', helvetica, sans-serif;
}

/* Limit containers to only 60% of the screen*/
.body
{
    height: 100%;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    background-image: url(background_3.png);
    background-size: contain;       
    background-repeat: repeat-x;   /* repeats only horizontally */
    background-position: top;      /* aligns at the top */
    padding: 40px;
    background-color: #ece5cf;
}

.business-icon-container
{
    width: 60%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the icon into a circle*/
.business-icon
{
    width: 200px;
    height: 200px;
    border: 10px solid #73793f;
    border-radius: 50%;
    object-fit: cover;
}
/* Align text to the center */
.business-text-container
{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid #73793f;
    border-radius: 3px;
    background-color: #93965f;
    color: black;
    gap: 15px;
    padding: 10px;
}

.link-container
{
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 5px;
}

/* Make the icon and text sit together horizontaly */
.link-box
{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    border: 5px solid #73793f;
    border-radius: 3px;
    background-color: #93965f;
    color: black;
    padding: 5px;
}

.info-container
{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border: 5px solid #73793f;
    border-radius: 3px;
    background-color: #93965f;
    color: black;
    padding: 5px;
}

/* Style all anchor tags */
a {
    font-size: 17px;
    color: black;              /* makes text black */
    text-decoration: none;     /* removes underline */
}

/* Optional: add hover effect for better UX */
a:hover {
    color: #f5f5f0;            /* slightly lighter shade on hover */
    text-decoration: underline; /* or keep none if you prefer */
}

/* Hover effect for text inside containers */
.link-box:hover,
.business-text-container:hover,
.info-container:hover {
    transform: scale(1.05);              /* makes the whole box slightly bigger */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* adds a soft shadow to text */
    transition: all 0.3s ease;           /* smooth animation */
}

.contact-list
{
    list-style-type: none;
}

.contact-list li
{
    padding: 5px;
}


/* Responsive tweaks */
@media (max-width: 768px) {
    .body
    {
        background-size: cover;
    }

    .business-icon-container,
    .business-text-container,
    .link-container,
    .info-container {
        width: 85%;   /* expand to fit smaller screens */
    }

    .business-icon {
        width: 150px;
        height: 150px;
        border-width: 6px;
    }

    a {
        font-size: 17px; /* slightly smaller text */
    }
}

@media (max-width: 480px) {
    .body
    {
        background-repeat: repeat-y;
    }

    .business-icon-container,
    .business-text-container,
    .link-container,
    .info-container {
        width: 90%;   /* full width on very small screens */
    }

    .link-box {
        gap: 10px;
    }

    .business-icon {
        width: 120px;
        height: 120px;
        border-width: 6px;
    }

    a {
        font-size: 16px;
    }
}