body {
    font-family: Arial, sans-serif;
    margin: 0 auto;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
    width: 640px;
    max-width: 97%;
}

/*body.light {*/
/*    --bg-color: #e7e7e7;*/
/*    --text-color: #333;*/
/*    --section-bg: #f8f8f8;*/
/*    --link-color: #518350;*/
/*    --link-color-hover: #a8fda5;*/
/*}*/

/*!* CSS HEX *!*/
/*--chili-red: #d84325ff;*/
/*--raisin-black: #1e212bff;*/
/*--peach-yellow: #efd28dff;*/
/*--verdigris: #00afb5ff;*/
/*--electric-blue: #87f5fbff;*/

/* Dark Theme Styles */
body.dark {
    --bg-color: #efd28dff;
    --text-color: #d84325ff;
    --section-bg: #07020D;
    --link-color: #00afb5ff;
    --link-color-hover: #87f5fbff;
}

body, section {
    background-color: var(--bg-color);
    color: var(--text-color);
}

header {
    background-color: var(--section-bg);
    /*padding: 10px 10px;*/
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
    /*padding-top: 20px;*/
    padding: 0;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
    /*background-image: url('images/front.png');*/
    /*background-size: cover; !* This will cover the entire viewport of the header *!*/
    /*background-repeat: no-repeat; !* This ensures the image doesn't repeat *!*/
    /*background-position: center; !* This centers the image *!*/
    height: 100px;
}

header h1 {
    font-family: 'Arial', sans-serif; /* A common, readable font */
    font-size: 32px;
    padding: 8px 0px 0;
    padding-bottom: 0px;
    margin: 0 0 0 -18px;
    color: var(--bg-color);
    /*text-shadow:*/
    /*        2px 2px 6px rgba(0, 0, 0, 0.8),*/
    /*        0px 0px 10px rgba(0, 0, 0, 0.8);*/
}

header p {
    font-family: 'Arial', sans-serif; /* A common, readable font */
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: var(--bg-color);
    /*text-shadow:*/
    /*        2px 2px 6px rgba(0, 0, 0, 0.8),*/
    /*        0px 0px 10px rgba(0, 0, 0, 0.8);*/
}

@media (max-width: 640px) { /* You can adjust the max-width value as needed */
    header p {
        font-size: 9px; /* Replace with a smaller font size that fits your design */
        margin-top: 5px;
        /* Other styles if necessary to adjust the positioning */
    }
}

.small-text {
    font-size: 0.3em; /* Adjust the value as needed */
}

main {
    padding: 0;
}

.text-section {
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0px;
    background-color: var(--section-bg);
    /*display: block;*/
}

.text-section p,
.text-section h1,
.text-section h2,
.text-section a,
.text-section address {
    padding: 0 20px;
}

.text-section h1 {
    /*color: #efd28dff;*/
    font-size: 30px;
    text-align: center;
}

.text-section h2 {
    /*color: #efd28dff;*/
    font-size: 24px;
    text-align: center;
}

.text-section p a {
    padding: 0 0;
}

.text-section img {
    padding: 0;
}

h1, h2 {
    margin-top: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

figure {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

figcaption {
    padding: 0 20px;
    margin-bottom: 20px;
}

.figure a {
    line-height: 1;
    vertical-align: top;
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
}

.image img:hover {
    cursor: pointer;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--link-color-hover);;
}

footer {
    background-color:  var(--bg-color);
    text-align: center;
    padding: 20px 1px;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /*margin: 0 50px;*/
}

.opening-times, .contact-info {
    width: 48%;  /* This will make them take up slightly less than half the container each, with a small gap in between */
    box-sizing: border-box;  /* To ensure padding doesn't expand beyond the set width */
}

.contact-info {
    text-align: right; /* Right aligns the content */
}

html {
    scroll-behavior: smooth;
}
