
/* 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');

/* base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #8b0000, #e13300, #8b0000);
    color: #333;
    line-height: 1.6;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    padding: 65px 12px 15px 12px;
}

/* ===== NAVBAR STYLES ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    z-index: 10;
    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;
    overflow: hidden;
    padding: 8px 5px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 6px;
    flex-wrap: wrap;
    padding: 5px 0;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px 6px;
    transition: all 0.3s ease;
    font-size: 11px;
}

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: 13px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* ===== LOGO AND IMAGES ===== */
#hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    display: block;
}

#logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    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);
}

#logo-about {
    max-width: 160px;
    width: 100%;
    margin-bottom: 20px;
}

.map-image {
    height: auto;
    max-width: 240px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== CONTENT WRAPPER ===== */
.content {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
    padding: 15px 12px;
    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: 100%;
    width: calc(100% - 24px);
    margin-top: 40px;
    margin-bottom: 50px;
    box-sizing: border-box;
}

.content h1 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 0;
}

.content h2 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.content p {
    font-size: 13px;
    margin-bottom: 15px;
}

.heading-bills {
    font-size: 24px;
    line-height: 1.3;
    font-family: 'Lato', sans-serif;
}




/* ===== BUTTON STYLES ===== */
.bills-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 14px;
    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: 0;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
}

.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);
}

/* ===== OPENING TIMES ===== */
#opening-times-list {
    list-style: none;
    list-style-type: none;
    padding-left: 0;
    margin: 0 0 30px 0;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
}

#opening-times-list li {
    margin-bottom: 5px;
}

.opening-times-list li {
    margin-bottom: 8px;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    max-width: 100%;
    width: 100%;
    padding-bottom: 75%;
    position: relative;
    margin-bottom: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== 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: 30px 12px;
    max-width: calc(100% - 24px);
    width: 100%;
    border-radius: 10px;
    position: static;
    box-sizing: border-box;
}

footer a {
    text-decoration: none;
}

.footer-content {
    padding: 12px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: center;
}

.food-standards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.fhrs-badge {
    width: 100px;
    height: auto;
    padding: 5px;
}

.contact-info p {
    margin: 3px 0;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
}

/* ===== MOBILE-FIRST RESPONSIVE DESIGN ===== */

/* Small Devices (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    body {
        padding: 65px 15px 15px 15px;
    }

    nav {
        padding: 10px 8px;
    }

    nav ul {
        gap: 10px;
        padding: 5px;
    }

    nav a {
        padding: 8px 10px;
        font-size: 13px;
        gap: 4px;
    }

    #rileys {
        font-size: 16px;
    }

    #logo {
        max-width: 250px;
        margin-bottom: 30px;
    }

    #logo-about {
        max-width: 220px;
        margin-bottom: 25px;
    }

    .content {
        padding: 25px 18px;
        margin-top: 45px;
        margin-bottom: 60px;
        max-width: 100%;
        width: calc(100% - 36px);
    }

    .content h1 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .content h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 18px;
    }

    .content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .heading-bills {
        font-size: 32px;
        line-height: 1.4;
    }

    #opening-times-list {
        font-size: 15px;
    }

    #opening-times-list li {
        margin-bottom: 7px;
    }

    .about-image {
        width: 100%;
        max-width: 280px;
        margin: 18px auto;
    }

    .bills-button {
        padding: 15px 35px;
        font-size: 16px;
        letter-spacing: 0.5px;
        width: auto;
    }

    footer {
        margin: 35px 15px;
        max-width: calc(100% - 30px);
    }

    .footer-content {
        padding: 15px;
        gap: 15px;
    }

    .food-standards {
        flex-direction: column;
        gap: 10px;
    }

    .fhrs-badge {
        width: 140px;
        padding: 8px;
    }

    .contact-info p {
        font-size: 14px;
        margin: 4px 0;
    }
}

/* Medium Devices (769px+) - Desktop */
@media (min-width: 769px) {
    body {
        padding: 60px 20px 20px 20px;
    }

    nav {
        padding: 0;
        height: 60px;
    }

    nav ul {
        gap: 20px;
    }

    nav a {
        padding: 5px 10px;
        font-size: 14px;
        gap: 6px;
    }

    #rileys {
        font-size: 22px;
    }

    #logo {
        max-width: 300px;
        margin-bottom: 40px;
    }

    #logo-about {
        max-width: 250px;
        margin-bottom: 30px;
    }

    .content {
        padding: 40px;
        margin-top: 60px;
        margin-bottom: 80px;
        max-width: 800px;
        width: 100%;
    }

    .content h1 {
        font-size: clamp(32px, 5vw, 48px);
        margin-bottom: 40px;
    }

    .content h2 {
        font-size: clamp(22px, 4vw, 32px);
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .content p {
        font-size: clamp(15px, 2.5vw, 18px);
        margin-bottom: 30px;
    }

    .heading-bills {
        font-size: 48px;
        line-height: 1.2;
    }

    #opening-times-list {
        font-size: 18px;
    }

    #opening-times-list li {
        margin-bottom: 8px;
    }

    .about-image {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
    }

    .bills-button {
        padding: 20px 50px;
        font-size: 24px;
        letter-spacing: 1px;
        width: auto;
    }

    footer {
        max-width: 800px;
        width: 100%;
        margin: 40px auto;
    }

    .footer-content {
        padding: 20px;
        gap: 20px;
        flex-direction: row;
        text-align: left;
    }

    .food-standards {
        flex-direction: row;
        gap: 15px;
        width: auto;
    }

    .fhrs-badge {
        width: 180px;
        padding: 10px;
    }

    .contact-info p {
        font-size: 16px;
        margin: 5px 0;
    }
}

/* Bills color of red: #e13300 */


