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

/* General styles for body */
body {
    font-family: 'Lora', serif;
    background-color: #f0f0f0;
    color: #333;
}

/* Header styles */
.mobile-header {
    text-align: center;
    padding: 20px;
    background-color: #ffebcc;
}

.mobile-header h1 {
    font-family: 'Emblema One', sans-serif;
    font-size: 2em;
}

.mobile-header h3 {
    font-family: 'Lora', serif;
    font-size: 1.5em;
    color: #4d3319;
}

/* Navigation styles */
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    background-color: #4d3319;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin: 10px;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    padding: 10px 20px;
    display: block;
}

nav ul li a:hover {
    background-color: #f6eee4;
    color: #4d3319;
}

/* Main content styles */
main {
    padding: 20px;
}

main p {
    font-size: 1.25em;
}

main img.round {
    border-radius: 6px;
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    /* Mobile header adjustments */
    .mobile-header h1 {
        font-size: 1.5em;
    }

    .mobile-header h3 {
        font-size: 1.2em;
    }

    /* Phone number contact styles */
    .tel-link {
        background-color: #2a1f14;
        padding: 2%;
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }

    .tel-link a {
        color: #f6eee4;
        text-decoration: none;
        font-weight: bold;
    }

    /* Styling for main content */
    main p {
        font-size: 1.1em;
    }
}

/* Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Emblema+One&family=Lora&display=swap');

h1.mobile-header {
    font-family: 'Emblema One', sans-serif;
}

h3.mobile-header {
    font-family: 'Lora', serif;
}
