@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);
    height: 100vh;
    position: relative;
    overflow-x: hidden;
}

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

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

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

.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);
}

h2 {
    font-family: 'Heavitas', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

/* Update main container for multiple cards */
main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact card styles */
.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: 400px;
    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(--light);
    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;
}

/* Order buttons within contact card */
.order-btn {
    display: block;
    padding: 0.75rem 1.5rem;
    margin: 1rem auto;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 80%;
}

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

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

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

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.booking-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.booking-btn.phone {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.booking-btn.online {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-btn.phone:hover {
    background-color: #f5f5f5;
}

.booking-btn.online:hover {
    background-color: #f5f5f5;
}

footer {
    /* Remove position: fixed */
    width: 100%;
    text-align: center;
    padding: 1rem;
    background-color: var(--dark);
    font-size: 0.9rem;
    margin-top: 2rem; /* Add margin-top for spacing */
}

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

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

/* Remove sticky buttons styles */
.sticky-buttons {
    display: none;
}

.hero {
    padding: 4rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background-color: rgba(24, 23, 23, 0.8);
    border-radius: 15px;
    max-width: 1000px;
    margin: 2rem auto;
    border: 2px solid var(--primary);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.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;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}
