:root {
    --primary-color: #66CC00;
    /* Lime Green from Menu */
    --secondary-color: #FF9AA2;
    /* Soft Pink */
    --accent-color: #FFB7B2;
    /* Lighter Pink */
    --text-dark: #4A403A;
    /* Dark Chocolate */
    --text-light: #FFF;
    --bg-light: #93c2a0;
    /* Off-white/Cream */
    --font-heading: 'Chewy', cursive;
    --font-body: 'Quicksand', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    color: var(--primary-color);
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(102, 204, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 5px solid var(--secondary-color);
}

.logo {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 0 #55aa00;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-nav:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #55aa00;
}

/* Hero Section */
.hero {
    height: 50vh;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 3px 3px 0 var(--secondary-color);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-main {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    box-shadow: 0 5px 0 #554546;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-main:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #e58a92;
}

/* Sections */
.section {
    padding: 5rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 #fff;
}

/* About */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: left;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 3px dashed var(--primary-color);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.about-text .lead {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.img-placeholder {
    width: 250px;
    height: 250px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 10px 10px 0 var(--primary-color);
    border: 5px solid white;
}

.about-img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 10px 10px 0 var(--primary-color);
    border: 5px solid white;
}

/* Menu Section */
.menu {
    background-color: var(--secondary-color);
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 2px, transparent 2.5px);
    background-size: 30px 30px;
}

.menu h2 {
    color: white;
    text-shadow: 3px 3px 0 var(--primary-color);
}

.menu p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.menu-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.menu-img {
    max-width: 100%;
    width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    transition: transform 0.3s;
}

.menu-img:hover {
    transform: rotate(2deg) scale(1.02);
}

.menu-list {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.menu-category {
    margin-bottom: 2rem;
}

.menu-category h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px dashed var(--secondary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.item-name {
    color: var(--text-dark);
}

.item-connector {
    flex: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 10px;
}

.item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

/* Gallery */
.gallery {
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    background-color: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.insta-link {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.insta-link a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
}

/* Contact Form */
.contact {
    background-color: var(--bg-light);
}

.enquiry-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 10px solid var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 5px 0 #55aa00;
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn-submit:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #55aa00;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
}

.form-message.success {
    background-color: var(--primary-color);
    color: white;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    padding: 3rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.socials {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.socials a {
    color: white;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0 0.5rem;
}

.socials a:hover {
    background: white;
    color: var(--primary-color);
}

/* Mobile */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 6px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links li {
        opacity: 0;
        margin: 2rem 0;
    }

    .burger {
        display: block;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .menu-img {
        width: 100%;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* Target the main container of the LightWidget popup */
.lightwidget__lightbox,
#lightwidget__lightbox {
    max-height: 70vh !important;
    /* Forces the box to 80% of screen height */
    top: 50% !important;
    transform: translateY(-50%) !important;
}

/* Target the content area where the image/video lives */
.lightwidget__lightbox-content {
    height: 50% !important;
    max-height: 500px !important;
    /* Set your specific pixel height here */
}

/* Ensure the image inside doesn't overflow */
.lightwidget__lightbox-content img,
.lightwidget__lightbox-content video {
    max-height: 100% !important;
    object-fit: contain !important;
}