
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Lexend:wght@100..900&family=Tangerine:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&family=Tangerine:wght@400;700&display=swap');


/* Map styles */
    .map-container{
        max-width: 100%;
    }
.map-image {
    height: auto;
    max-width: 240px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-top: 30px;
}
/* Opening Times styles */
#opening-times-list {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 30px 0;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
}
.opening-times-list li {
    margin-bottom: 8px;
}

footer a {
    text-decoration: none;
}

/* Bills color of red: #e13300 */


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #8b0000, #e13300, #8b0000);
    color: #333;
    line-height: 1.6;
    padding: 60px 20px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;


}/* Hero image styles */

#hero-image {
    width: 100vw;
    height: auto;
    margin-bottom: 40px;
}
/* Logo styles */
#logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#logo:hover {
    transform: scale(1.05);
}
/* Navbar styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    z-index: 10;
    height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid #000000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #f10d0d;
    color: #e3dbdc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 20, 60, 0.3);
}

#rileys {
    font-weight: bold;
    font-family: 'Tangerine', cursive;
    font-size: 22px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
/* Content wrapper */
.content {
        background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1), 0 0 30px rgba(255, 255, 255, 0.7);
        max-width: 800px;
        width: 100%;
        margin-top: 60px;
        margin-bottom: 80px;
        box-sizing: border-box;
}

@media (max-width: 600px) {
    .content {
        max-width: 100%;
        padding: 16px;
    }
}

.content h1 {
    margin-bottom: 40px;
}

.content h2 {
    margin-top: 40px;
    margin-bottom: 25px;
}

.content p {
    margin-bottom: 30px;
}

/* Footer styles */

footer {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    border-top: 1px solid #000000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    position: static;
}

.footer-content {
    padding: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.food-standards {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fhrs-badge {
    width: 180px;
    height: auto;
    padding: 10px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}

/* Heading styles */
.bills-heading {
    font-size: 48px;
    color: #333333;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Lato', sans-serif;
}  

/* About page */

.about-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#logo-about {
    max-width: 250px;
    margin-bottom: 30px;
}

/* Button styles */
.bills-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    background: #e13300;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.bills-button:hover {
    background: #b91132;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.5);
}

.bills-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #logo {
        max-width: 250px;
        margin-bottom: 30px;
    }

    .bills-button {
        padding: 18px 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    #logo {
        max-width: 200px;
        margin-bottom: 25px;
    }

    .bills-button {
        padding: 15px 30px;
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    nav {
        padding: 0 10px;
    }

    nav ul {
        gap: 6px;
    }

    nav a {
        padding: 5px 5px;
        line-height: 1.1;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 360px) {
    #logo {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .bills-button {
        padding: 12px 25px;
        font-size: 16px;
    }


    nav {
        padding: 0 10px;
    }

    nav ul {
        gap: 6px;
    }

    nav a {
        padding: 5px 5px;
    }

}


