

@font-face {
			font-family: 'BebasKai';
			src: url('fonts/BebasKai.woff2') format('woff2');
			font-weight: normal;
			font-style: normal;
		}
        /* Base and Reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
			font-family: "Asap", sans-serif;
        }

        body {
            /* Light beige/sand background matching the PDF */
            background-color: #F3EED5; 
            color: #333333;
            font-family: 'Lato', sans-serif;
            line-height: 1.6;
            padding: 0px;
        }

        .menu-container {
            max-width: 1000px;
            margin: 0 auto;
            background: #F3EED5;
			background-image:url(../images/background.jpg);
			background-position: bottom right;
			background-size: contain;
			background-repeat: no-repeat;
            padding: 10px 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-radius: 8px;
        }

        /* Header Styling */
        .header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 20px;
            border-bottom: 2px solid #5A2A82;
        }

        .logo-placeholder {
            margin: 0 auto 15px;
            width: 150px;
            height: auto;
			background-image:url(images/pp_logo.png);
			background-repeat: no-repeat;
			background-size: contain;
			max-width: 100%;
			height: 200px;
        }

        .restaurant-title {
            font-family: 'Playfair Display', serif;
            color: #5A2A82; /* Deep purple */
            font-size: 2.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        .location {
            font-size: 1.2rem;
            color: #555;
            font-style: italic;
            letter-spacing: 1px;
        }

        /* Section Styling */
        .menu-section {
            margin-bottom: 50px;
        }

        .section-title {
            font-family: 'BebasKai', sans-serif;
            font-size: 2rem;
            color: #333;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            position: relative;
        }
		
		.section-title::after {
    content: ""; /* Required for pseudo-elements */
    display: block;
    width: 250px; /* Adjust this to make the divider wider or narrower */
    height: 20px; /* Adjust this based on the actual height of div.png */
    background-image: url('images/div.png');
    background-size: contain; /* Ensures the image fits within the dimensions */
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0px; /* Creates space between the title text and the divider */
	text-align:center;
			margin-left:auto;
			margin-right:auto;
}

        .section-subtitle {
            font-size: 1.4rem;
            margin-bottom: 20px;
            border-bottom: 1px dashed #ccc;
            padding-bottom: 5px;
			            font-family: 'BebasKai', sans-serif;
            font-size: 2rem;
            color: #333;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            position: relative;

        }

        /* Grid Layout for Responsiveness */
        .menu-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px 50px;
        }

        @media (min-width: 768px) {
            .menu-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Individual Menu Items */
        .menu-item {
            display: flex;
            flex-direction: column;
        }

        .item-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 5px;
            position: relative;
        }

        /* Dotted leader between name and price */
        .item-header::after {
            content: "";
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            height: 1px;
            border-bottom: 1px dotted #aaa;
            z-index: 1;
        }

        .item-title {
            font-weight: 700;
            font-size: 1.25rem;
            background: #F3EED5;
            padding-right: 10px;
            z-index: 2;
            color: #222;
			font-family: "Cabin", sans-serif;
        }

        .item-price {
            font-weight: 700;
            font-size: 1.25rem;
            background: #F3EED5;
            padding-left: 10px;
            z-index: 2;
            color: #333;
			font-family: "Cabin", sans-serif;
        }

        .item-desc {
            font-size: 0.95rem;
            color: #555;
            font-style: italic;
			
        }

        .gf-badge {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 8px;
            vertical-align: middle;
            font-family: 'Lato', sans-serif;
            font-style: normal;
        }

        /* Footer Notes */
        .footer-notes {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #ccc;
            font-size: 0.9rem;
            color: #666;
        }
		
		/* --- Footer Styling --- */
.site-footer {
    background-color: rgb(109,2,131); /* Elegant dark slate background */
    color: #F3EED5; /* Creamy beige text to match the menu paper */
    padding: 60px 20px 20px;
    margin-top: 50px;
    font-family: 'Lato', sans-serif;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-brand .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px; /* Slightly rounds the image corners */
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #F3EED5;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #aaa;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .contact-list li {
        justify-content: flex-start;
    }
}

.contact-list .material-symbols-rounded {
    color: #bfa15f; /* Subtle gold/tan accent for icons */
}

/* WhatsApp Button Styling */
.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #25D366;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.wa-link:hover {
    background-color: #1ebe56;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

@media (min-width: 768px) {
    .order-actions {
        justify-content: flex-start;
    }
}

.glf-custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2D2D2D;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: transform 0.2s, background-color 0.2s;
	    border: 2px solid #F3EED5;

}

.glf-custom-btn:hover {
    transform: translateY(-2px);
}

.glf-custom-btn.reservation, .glf-button.reservation{
    background-color: #6d0383 !important;
	border: 2px solid #fff;
    color: #F3EED5;
}

.glf-custom-btn.reservation:hover {
}

.footer-credits {
    text-align: center;
    border-top: 1px solid rgba(243, 238, 213, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: gold;
}

/* Back to Top Button */
#topBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(109,3,131,1);
    color: #F3EED5;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
    line-height: 0;
}

#topBtn:hover {
    background-color: rgba(109,3,131,.5);
    transform: scale(1.1);
}
		
		/* --- Info, Hours, and Map Section --- */
.info-section {
    text-align: center;
    margin: 50px auto 0px auto;
    padding: 40px 20px;
    background-color: rgba(90, 42, 130, 0.05); /* Very subtle purple tint for the background */
}

.hours-box {
    margin: 0 auto 30px;
    color: #5A2A82; /* Deep purple */
    font-family: 'Playfair Display', serif;
}

.hours-box .open-text {
    font-size: 3.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.hours-box .days-text {
    font-size: 1.4rem;
    font-weight: normal;
    font-family: 'Lato', sans-serif;
    color: #2D2D2D;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.hours-box .time-text {
    font-size: 2.2rem;
    font-weight: 700;
    border-top: 2px solid #5A2A82;
    border-bottom: 2px solid #5A2A82;
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 15px;
}

.hours-box .closed-text {
    font-size: 1.1rem;
    color: #d9534f; /* A subtle red to indicate closed */
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    display: block;
}

/* Call to Action Buttons (Main Area) */
.main-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.main-cta-actions .glf-custom-btn {
    background-color: #5A2A82; /* Deep purple button */
    color: #F3EED5;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: 2px solid #5A2A82;
}

.main-cta-actions .glf-custom-btn:hover {
    background-color: #431f61; /* Darker purple on hover */
    color: #fff;
}

.main-cta-actions .glf-custom-btn.reservation {
    background-color: transparent;
    color: #5A2A82;
}

.main-cta-actions .glf-custom-btn.reservation:hover {
    background-color: rgba(90, 42, 130, 0.1);
}

/* Map Styling */
.map-container {
    width: 100%;
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden; /* Ensures the rounded corners apply to the iframe */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1); /* Adds a soft shadow to the map */
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}
		
		/* --- Modern Header & Navigation --- */
.site-header {
    background-color: #F3EED5; /* Matches your page background */
    border-bottom: 2px solid rgba(90, 42, 130, 0.2); /* Soft purple border line */
    font-family: 'Lato', sans-serif;
}

/* Dark Top Bar for Contact Info */
.top-contact-bar {
    background-color: rgb(109, 3, 131);
    color: #F3EED5;
    padding: 10px 20px;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.top-contact-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contact-bar .material-symbols-rounded {
    font-size: 1.1rem;
    color: #bfa15f; /* Subtle gold/tan accent */
}

.top-contact-bar a {
    color: #F3EED5;
    text-decoration: none;
    transition: color 0.2s;
}

.top-contact-bar a:hover {
    color: #fff;
}

/* Header WhatsApp Badge */
.header-wa-badge {
    background-color: #25D366;
    color: white !important;
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 5px;
    transition: background-color 0.3s;
}

.header-wa-badge:hover {
    background-color: #1ebe56;
}

/* Main Navigation Area */
.main-nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .main-nav-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.nav-logo {
    max-height: 80px; /* Limits logo height so it doesn't push the nav bar too wide */
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #2D2D2D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links li a .material-symbols-outlined {
    color: #5A2A82; /* Deep purple icons */
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    background-color: rgba(90, 42, 130, 0.08); 
		}
    .glf-button {
    background-color: purple !important;
}
.gloriafood-button {
    background-color: purple !important;
}
.purplebtn {
			background-color: purple;

	

			color: #fff;

			font-size: 1.25rem;

			text-decoration: none;

			 border-radius: 4px;

			 padding: 10px;

			 margin: 10px;
}
	.imagecontainer1{
			min-height: 200px;
			position: relative;
			opacity: 0.85;
			background-attachment: fixed;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			padding:0px;
		}