@import url('https://fonts.cdnfonts.com/css/i-love-glitter');
@import url('https://fonts.cdnfonts.com/css/heavitas');
@import url('https://fonts.cdnfonts.com/css/babydoll');

:root {
    --primary: #FFC000;
    --dark: #181717;
    --light: #ffffff;
}

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

body {
    font-family: 'Babydoll', sans-serif;
    color: var(--light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ciboiow.co.uk/img/468886933_2360994140937865_2291432369036450129_n.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(24, 23, 23, 0.9);
    border-radius: 50px;
    padding: 10px;
    border: 2px solid var(--primary);
    z-index: 100;
}

.main-nav a {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 5px;
    color: var(--light);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary);
    color: var(--dark);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 90;
}

.order-btn {
    display: block;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
    text-align: center;
    max-width: 200px;
}

.order-btn:hover {
    transform: scale(1.05);
}

.order-btn.deliveroo {
    background-color: #00ccbc;
}

.order-btn.ubereats {
    background-color: #000000;
}

/* Page content */
.page {
    padding-top: 80px;
    min-height: 100vh;
}

.page.active {
    display: block;
}

header {
    text-align: center;
    padding: 2rem 1rem;
}

.logo-container {
    max-width: 200px;
    margin: 0 auto 1rem;
}

.logo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

h1 {
    font-family: 'I Love Glitter', sans-serif;
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Home page styles */
main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: rgba(24, 23, 23, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary);
    max-width: 600px;
    width: 100%;
}

.contact-card h3 {
    font-family: 'Heavitas', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.phone-number {
    display: inline-block;
    font-size: 1.8rem;
    color: var(--dark);
    text-decoration: none;
    background-color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    margin-top: 1rem;
}

.phone-number:hover {
    transform: scale(1.05);
    background-color: #e6ac00;
}

.menu-preview-btn {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--dark);
    text-decoration: none;
    background-color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
    margin-top: 1rem;
}

.menu-preview-btn:hover {
    transform: scale(1.05);
    background-color: #e6ac00;
}

.restaurant-info {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.restaurant-info:last-child {
    margin-bottom: 0;
}

.restaurant-info h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.restaurant-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.restaurant-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

.restaurant-info a:hover {
    text-decoration: underline;
}

/* Booking widget styling */
#rd-widget-frame {
    margin: 1rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 192, 0, 0.3);
}

/* Menu page styles */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-header h2 {
    font-family: 'I Love Glitter', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Menu Navigation Styles */
.menu-downloads {
    background-color: rgba(24, 23, 23, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary);
    margin: 2rem 0;
}

.menu-downloads h3 {
    font-family: 'Heavitas', sans-serif;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.download-btn {
    background-color: var(--primary);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    font-size: 1rem;
}

.download-btn:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-sections {
    display: grid;
    gap: 3rem;
}

.menu-section {
    background-color: rgba(24, 23, 23, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--primary);
}

.menu-section h3 {
    font-family: 'Heavitas', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1rem;
}

.menu-section h4 {
    font-family: 'Heavitas', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 1.5rem 0 0.5rem 0;
    text-transform: uppercase;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 192, 0, 0.3);
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.menu-item-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--light);
}

.menu-item-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.menu-item-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-top: 0.3rem;
}

.kids-menu {
    background: linear-gradient(135deg, rgba(255, 192, 0, 0.1), rgba(255, 192, 0, 0.05));
}

.price-highlight {
    background-color: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    display: inline-block;
}

.allergen-notice {
    background-color: rgba(255, 192, 0, 0.1);
    border: 1px solid var(--primary);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
}

footer {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
    background-color: rgba(24, 23, 23, 0.8);
    font-size: 0.9rem;
    margin-top: 3rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .sticky-buttons {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .order-btn {
        font-size: 0.9rem;
        padding: 10px 15px;
        max-width: 150px;
    }

    .main-nav {
        position: static;
        margin: 20px auto;
        display: flex;
        justify-content: center;
        right: auto;
    }

    .main-nav a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .page {
        padding-top: 20px;
    }

    h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .phone-number {
        font-size: 1.4rem;
    }

    .menu-header h2 {
        font-size: 2.5rem;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-item-price {
        margin-top: 0.3rem;
    }

    .download-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .download-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .contact-card {
        max-width: 100%;
        margin: 0 1rem;
    }

    .menu-container {
        padding: 1rem;
    }

    .menu-section {
        padding: 1rem;
    }
}