/*
================================================================================
FUMO33 RESTAURANT WEBSITE - CSS STYLESHEET
================================================================================
Version: 3.1
Date: August 22, 2025
Project: FUMO33 Woodfired Kitchen & Bar Website
Developer: RURSUS IOW
Description: Updated CSS with new section-wrapper containers for consistent
             styling, improved booking integration, and enhanced responsive design
Changes in v3.1:
- Added section-wrapper class for consistent container styling
- Improved booking-container integration
- Enhanced responsive design for all sections
- Better visual hierarchy and spacing
================================================================================
*/

@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');

/*
================================================================================
CSS CUSTOM PROPERTIES (VARIABLES)
================================================================================
*/
:root {
    --primary: #00CCA3; /* Bright green/teal - primary accent */
    --secondary: #2a5a57; /* Darker teal - secondary elements */
    --accent: #3a6a67; /* Medium teal - borders and accents */
    --dark: #1a4a47; /* Darkest teal - card backgrounds */
    --light: #ffffff; /* White - text and highlights */
    --shadow-dark: #181717; /* Deep dark - shadows and footer */
    
    /* Spacing Variables */
    --section-gap: 3rem;
    --card-padding: 4rem 2rem;
    --border-radius: 15px;
    
    /* Typography Variables */
    --font-main: 'Babydoll', sans-serif;
    --font-heading: 'I Love Glitter', sans-serif;
    --font-subheading: 'Heavitas', sans-serif;
}

/*
================================================================================
GLOBAL RESET & BASE STYLES
================================================================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--light);
    height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

/*
================================================================================
BACKGROUND & OVERLAY STYLING
================================================================================
*/
.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;
}
/*
================================================================================
TOP BUTTONS STYLING
================================================================================
*/
/*
================================================================================
FUMO33 NAVIGATION CSS - FOR INDEX.HTML
================================================================================
Add this to your existing style.css file
================================================================================
*/

/* Main Navigation for Index Page */
.main-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(26, 74, 71, 0.9); /* Using --dark with transparency */
    border-radius: 50px;
    padding: 15px;
    border: 2px solid var(--primary);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 204, 163, 0.3);
}

/* Menu Preview Button Styling */
.menu-preview-btn {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--light);
    text-decoration: none;
    background-color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 204, 163, 0.3);
}

.menu-preview-btn:hover {
    transform: scale(1.05);
    background-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(0, 204, 163, 0.4);
}

/* Remove/Update the old top-nav if it exists */
.top-nav {
    display: none; /* Hide old navigation */
}

/*
================================================================================
RESPONSIVE DESIGN FOR NAVIGATION
================================================================================
*/
@media (max-width: 768px) {
    .main-nav {
        position: static;
        margin: 12px auto;
        display: flex;
        justify-content: center;
        right: auto;
        max-width: 300px;
    }

    .main-nav a {
        padding: 8px 12px;
        font-size: 0.9rem;
        margin: 0 2px;
    }

    .menu-preview-btn {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-direction: column;
        padding: 5px;
    }
    
    .main-nav a {
        margin: 2px 0;
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .menu-preview-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}
/*
================================================================================
HEADER SECTION STYLING
================================================================================
*/
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: 4px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 204, 163, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 204, 163, 0.6);
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--light);
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

h2 {
    font-family: var(--font-subheading);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--light);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/*
================================================================================
MAIN CONTENT LAYOUT
================================================================================
*/
main {
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/*
================================================================================
SECTION WRAPPER - NEW CONTAINER SYSTEM
================================================================================
*/
.section-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: var(--section-gap);
}

/*
================================================================================
BOOKING CONTAINER - SPECIAL STYLING
================================================================================
*/
.booking-container {
    width: 100%;
    max-width: 1000px;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    border: 2px solid var(--accent);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.booking-container iframe {
    width: 100%;
    height: 800px;
    min-height: 800px;
    border: none;
    display: block;
}

/*
================================================================================
CONTACT CARDS STYLING
================================================================================
*/
.contact-card {
    padding: var(--card-padding);
    text-align: center;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    max-width: 1000px;
    width: 100%;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-card h3 {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Special styling for Find Us map iframe */
.contact-card iframe {
    min-height: 800px;
    border-radius: 10px;
    margin-top: 1rem;
}

/*
================================================================================
PHONE & BOOKING BUTTONS
================================================================================
*/
.phone-number {
    display: inline-block;
    font-size: 1.8rem;
    color: var(--light);
    text-decoration: none;
    background-color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 204, 163, 0.3);
}

.phone-number:hover {
    transform: scale(1.05);
    background-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(0, 204, 163, 0.4);
}

.order-btn {
    display: block;
    padding: 0.75rem 1.5rem;
    margin: 1rem auto;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light);
    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: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-btn.phone {
    background-color: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 204, 163, 0.3);
}

.booking-btn.online {
    background-color: var(--secondary);
    color: var(--light);
    border: 2px solid var(--secondary);
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.booking-btn.phone:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.booking-btn.online:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/*
================================================================================
HERO SECTION STYLING
================================================================================
*/
.hero {
    padding: var(--card-padding);
    margin-bottom: 2rem;
    text-align: center;
    background-color: var(--dark);
    border-radius: var(--border-radius);
    max-width: 1000px;
    margin: 2rem auto;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.hero-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--light);
    margin: 0;
    font-weight: 300;
}

/*
================================================================================
RESTAURANT INFO SECTIONS
================================================================================
*/
.restaurant-info {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.restaurant-info:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

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

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

.restaurant-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light);
}

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

.restaurant-info a:hover {
    text-decoration: underline;
    color: var(--secondary);
}

/*
================================================================================
FOOTER STYLING
================================================================================
*/
footer {
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
    background-color: var(--shadow-dark);
    font-size: 0.9rem;
    margin-top: 4rem;
    border-top: 1px solid var(--accent);
}

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

footer a:hover {
    text-decoration: underline;
    color: var(--light);
}

/*
================================================================================
UTILITY CLASSES
================================================================================
*/
.sticky-buttons {
    display: none;
}

/*
================================================================================
RESPONSIVE DESIGN - TABLET & MOBILE STYLES
================================================================================
*/
@media (max-width: 1024px) {
    main {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 3rem 1.5rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 2rem;
        --card-padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.4rem;
        padding: 0.6rem 1.5rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .booking-container iframe {
        height: 700px;
        min-height: 700px;
    }
    
    .contact-card iframe {
        min-height: 600px;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
    }
    
    .restaurant-info h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    header {
        padding-top: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .booking-container iframe {
        height: 450px;
    }
    
    .contact-card {
        margin: 0 0.5rem;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
}

/*
================================================================================
END OF STYLESHEET - VERSION 3.1
================================================================================
*/