/*
Theme Name: new (Customized)
*/

/* Table of Contents
------------------------------------
1.  General Styles
2.  Header Styles
3.  Full-Screen Image Styles
4.  Content Section Styles
5.  Responsive Styles
*/

/* 1. General Styles */
html, body { /* Added html */
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box; /* Important for responsive layout */
    overflow-x: hidden; /* Prevent horizontal scrollbar */ 
    height: auto;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}



/* 2. Header Styles */
.site-header {
    position: absolute; /* Position over image */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: #EDEDED; /* Adjust text color as needed */
    z-index: 10; /* Ensure it's above other content */
}

.site-branding {
    display: flex; /* Align logo and title horizontally */
    align-items: center; /* Vertically center the items */
}
.site-title a {
    color: #EDEDED; /* Title color */
    text-decoration: none; /* Remove underline */
    margin-left: 2px; /* Add space between logo and title */
	font-family: 'Sofia Sans Condensed'; 
	line-height: 0; /* Reduces vertical space between lines */
    display: inline-block;
}
.site-title .line1,
.site-title .line2 {
    display: block;
    margin-left: 0.4rem;
    padding: 0;
    line-height: 1.1; /* Even tighter spacing inside each line */
}

.site-title .line1 {
    font-size: 1.8rem; /* Adjust the size of the site title */
	font-weight: 400;
	letter-spacing: 0.17em;
}

.site-title .line2 {
    font-size: 1.45rem; /* Adjust the size of the site title */
	font-weight: 300;
	letter-spacing: 0.135em;
}

.custom-logo {
    width: 55px; 
    height: auto;
}

.main-navigation {
    display: flex;
    align-items: center; /* Vertically center items */
	margin-right:5rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    margin-top: 0px;
    padding: 0;
}

.main-navigation li {
    margin-left: 3rem; /* Spacing between nav items */
}

.main-navigation a {
    color: #EDEDED;
    text-decoration: none;
    font-size: 0.75rem;
}
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    min-width: 180px;
}

.sub-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-menu li a {
    color: #EDEDED;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
    display: block;
    background-color: #1a1a1a;
    white-space: nowrap;
}

.sub-menu li a:hover {
    background-color: #2c2c2c;
}

/* Makes location headings non-clickable and styled */
.sub-menu .submenu-heading {
	font-family: 'Alegreya';
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #cccccc;
    cursor: default;
    background-color: #222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


/* Prevents hover effect on headings */
.sub-menu .submenu-heading:hover {
    background-color: #1a1a1a;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #EDEDED;
	z-index: 2;
}

.menu-container .hero-text {
    position: absolute;
    top: 25%;
    left: 50%;
    text-align: center;
    color: #EDEDED;
	z-index: 2;
}


.hero-text p{
    font-family: 'Alegreya';
    font-weight: 500; 
    font-size: 1.25rem;
    margin-top: 0.25em; /* Adjust this value as needed */
    letter-spacing: 0.10em; 
}

.hero-text h1{
    font-family: 'Sofia Sans Condensed';
    font-weight: 375; 
    font-size: 3.5rem;
    letter-spacing: 0.2em; 
	z-index: 2;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent; /* Make the background transparent */
    color: #EDEDED;
    text-decoration: none;
    border: 1px solid #EDEDED; /* Add a thin white border */
    border-radius: 25px; /* Make it rounded */
    font-size: 0.75rem;
    letter-spacing: 0.3em; 
    margin-top: 20px; /* Add some space between text and button */
}

.about-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent; /* Make the background transparent */
    color: #fd7208;
    text-decoration: none;
    border: 1px solid #fd7208; /* Add a thin white border */
    border-radius: 25px; /* Make it rounded */
    font-size: 0.65rem;
    letter-spacing: 0.2em; 
    margin-top: 20px; /* Add some space between text and button */
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly darken the background on hover */
}


/* Add CSS for the menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #EDEDED;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 3. Full-Screen Image Styles */
.fullscreen-image {
    height: 120vh;
    width: 100%;
    background-image: url('/wp-content/uploads/2025/08/250807-080-scaled.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
/*     filter: grayscale(75%); */

}
.fullscreen-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* Slight dark overlay */
    z-index: 1;
	height: 120vh;
	width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-container .fullscreen-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* Slight dark overlay */
    z-index: 1;
	height: 50vh;
	width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* body:has(.fullscreen-image:not([style*="background-image"])) .fullscreen-image {
    background-image: url('/wp-content/uploads/2025/06/landing-4.jpg');
} */

/* 4. Content Section Styles */
.content-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center images horizontally */
    gap: 1.4rem; /* Space between images */
    margin-top: 8rem;
    margin-bottom: 5rem; /* Adds space above the text */
}

.image-gallery img {
    width: 25%;           /* Let the image fill the flex item */
    aspect-ratio: 1 / 1;   /* Force square shape */
    object-fit: cover;     /* Crop to fill square without distortion */
    object-position: center;
}

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

.half-container {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

.half-container .half-container-text {
    flex: 1 1 55%;
    box-sizing: border-box;
    padding: 1rem;
}

.half-container .container-image {
    flex: 1 1 40%;
    box-sizing: border-box;
    padding: 1rem;
	display: flex;
    align-items: center;
    justify-content: center;
}




.half-container .half-container-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.half-container .half-container-text p{
    line-height: 2rem;
    font-size: 1rem;
    text-align: justify;
}

.half-container .half-container-text h2 {
    margin: 0 10px 10px 0;
    font-size: 2rem;
    letter-spacing: 0.1em; 
    font-family: 'Alegreya';
}


.half-container .container-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}


.container .container-text {
    margin-top: 5rem; /* Adds space above the text */
    padding-bottom: 5rem;
    max-width: 50%; /* Limits the width to 1/3 of the page */
    margin: 0 auto;    /* Centers the block horizontally */
    text-align: center;
}

.half-container .half-container-text h2 {
    font-size: 2rem;
    letter-spacing: 0.075em; 
    font-family: 'Alegreya';
    text-align: center;
}


.container .container-text h2 {
    margin-top: 3rem;
    font-size: 2rem;
    letter-spacing: 0.1em; 
    font-family: 'Alegreya';
    text-align: center;
}

.container .container-text h3{
    margin-top: 8rem;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.2em; 
    font-family: 'Alegreya';
    text-align: center;
}
.container .container-text p {
    text-align: center;
    line-height: 2rem;
    font-size: 1rem;
    text-align: justify; /* Centers the text within the block */
}
.responsive-map-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.responsive-map-container .responsive-map {
    width: 50%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.responsive-map-container .responsive-map::before {
    content: attr(data-placeholder);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Opaque black overlay */
    color: #EDEDED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Alegreya';
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 20px;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.responsive-map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    transition: filter 0.3s ease;
    filter: grayscale(100%);
}

.responsive-map-container .responsive-map:hover::before {
    opacity: 0;
}

.responsive-map-container .responsive-map:hover iframe {
    filter: grayscale(100%);
}


/* General Styles */
.content-section-2 {
    background-color: black;
    padding: 2rem;
    text-align: center;
    color: #EDEDED;
}

.container-2 {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 3rem;
}

.hero-icon {
    display: block;
    margin: 0 auto 2rem;
    max-width: 100px;
}

/* Contact and Open Hours Side by Side */
.info-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem; 
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1; /* Make both sections take equal width */
    text-align: center;
}

.footer-section h2 {
    font-family: 'Alegreya';
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.contact-info-block .contact-info,
.open-hours-block p {
    font-family: 'Alegreya';
    font-size: 0.9em;
    letter-spacing: 0.1em;
}


.contact-info-block .contact-info {
    display: flex;
    justify-content: space-between; /* Distribute items evenly */
    align-items: center;
    margin-bottom: 1rem;
}

.contact-info-block .contact-info a{
    color: #EDEDED;
    text-decoration: none
}



.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    margin: 0;
}

.footer-nav ul li {
    margin-right: 2rem;
}

.footer-nav ul li:last-child {
    margin-right: 0;
}

.footer-nav ul li a {
    color: #EDEDED;
    text-decoration: none;
    font-size: 0.65rem;
}

.copyright p {
    margin: 0;
    font-size: 0.6em;
    color: rgba(255, 255, 255, 0.7);
}

.social-buttons a {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 25px;
    border: 1px solid #EDEDED;
    color: #EDEDED;
    text-decoration: none;
    font-size: 0.8em;
    margin-left: 10px;
}


.menu-banner {
    height: 50vh;
}

  
/* Menu Navigation Styles */

.menu-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 2rem 1rem 2rem;
    background-color: #F5F5F5;
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}

.menu-navigation a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: transparent;
    color: #1C1C1C;
    text-decoration: none;
    border: 1px solid #1C1C1C;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.75rem;
    transition: background-color 0.3s ease;
}

.menu-navigation a:hover {
    background-color: rgba(0, 0, 0, 0.1);
}


.menu-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 5rem;
    margin-right: 5rem;
}

.menu-section {
    width: 46%;
    margin-bottom: 2rem;
  	scroll-margin-top: 90px;
}

.menu-section h2{
    font-family: 'Alegreya';
    text-transform: uppercase;
    letter-spacing: 0.05rem; 
}

.menu-section h3{
    text-transform: uppercase;
    font-weight: 600;
}

.menu-section p{
    line-height: 1.2rem;
}

.menu-section-image {
    width: 95%;
    height: auto;         /* Let height scale with width */
    object-fit: contain;  /* Show the full image without cropping */
    max-width: 100%;      /* Keep inside container */
    display: block;
    margin-bottom: 1rem;
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.menu-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.menu-item h3 {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.menu-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #1C1C1C;
}

.price {
    font-weight: bold;
    color: #fd7208;
}


/* Smooth scrolling */
body.page-template-menu html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px; /* Adjust for header height */
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 25px;
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9000;
    opacity: 0.8;
    transition: opacity 0.3s ease;
	font-size: 20px;
	font-weight: 400;
}
#back-to-top:hover {
    opacity: 1;
}

.floating-menu-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #444;
    color: #fff;
    padding: 10px 15px;
    border-radius: 10%;
    cursor: pointer;
    z-index: 1000;
    display: none;
	font-family: "Sofia Sans Condensed";
}

.floating-menu-dropdown {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 20px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 1000;
    border-radius: 5px;
}
.floating-menu-dropdown a {
    display: block;
    color: #333;
    padding: 5px 0;
    text-decoration: none;
}
.floating-menu-dropdown a:hover {
    color: #555;
}

.apply-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.apply-button:hover {
    background-color: #444;
}

/* Modern layout tweaks */
.modern-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
}

.image-shadow img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.text-styled {
    max-width: 600px;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #111;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #444;
}

.location-title {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: #333;
    font-weight: 500;
}

.order-links {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.order-links li {
    margin-bottom: 10px;
}

.order-button {
    display: inline-block;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.order-links.icon-style {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: flex-start;
}

.order-links.icon-style li {
    flex: 0 1 48px;
}

.order-button img {
    width: 75px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.order-button img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modern-layout {
        flex-direction: column;
    }

    .text-styled {
        text-align: center;
    }

    .order-button {
        width: 100%;
        text-align: center;
    }
	
	.order-button img {
    	width: 65px;
	}
	
	
	.order-links.icon-style {
		gap: 20px;
	}
}


/* 5. Responsive Styles */
@media (max-width: 768px) { 

    .site-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
		padding: 0.5rem 1rem;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .site-branding {
        flex-shrink: 0;
    }
	
	.site-title .line1 {
		font-size: 1.6rem; /* Adjust the size of the site title */
		font-weight: 400;
		letter-spacing: 0.17em;
	}

	.site-title .line2 {
		font-size: 1.2rem; /* Adjust the size of the site title */
		font-weight: 300;
		letter-spacing: 0.135em;
	}

	.custom-logo {
		width: 50px; 
		height: auto;
	}

	.menu-toggle {
	  display: block;
	  background: none;
	  border: none;
	  font-size: 1.3rem;
	  color: #EDEDED;
	  cursor: pointer;
	  margin-left: auto;
	  z-index: 1001;
	}

	.main-navigation {
	  position: absolute;
	  top: 0%;
	  left: 45%;
	  width: 70%;
	  background-color: #1a1a1a;
	  transform: translateY(-200%);
	  transition: transform 0.3s ease-in-out;
	  z-index: 1000;
	}

	.main-navigation.toggled {
	  transform: translateX(0);
	}

	.main-navigation ul {
	  display: flex;
	  flex-direction: column;
	  margin: 0;
	  padding: 4rem 0rem 2rem 0rem;
	}

	.main-navigation li {
		width: 100%;
		padding: 0.6rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		margin-left: 2rem;
	}
	


	.main-navigation li a {
	  font-family: 'Alegreya', serif;
	  font-size: 1rem;
	  letter-spacing: 0.1em;
	  color: #EDEDED;
	  text-decoration: none;
	  display: block;
	  width: 100%;
	}

	/* Submenu */
	.menu-item-has-children .sub-menu {
	  display: none !important;
	  margin-top: 0.3rem;
	  flex-direction: column;
	  gap: 0.25rem;
	}

	  nav#site-navigation.main-navigation .menu-item-has-children.open > .sub-menu {
		display: flex !important;
	  }

	.submenu-heading {
		font-weight: 600;
		font-size: 0.85rem;
		text-transform: uppercase;
		color: #AAAAAA;
		padding: 0.5rem 0 0.25rem 0;
		border-top: 1px solid rgba(255,255,255,0.1);
		margin-left: 0px;
	}

	.sub-menu li {
	  border: none;
	  padding: 0;
    	margin-left: 0px;

	}

	.sub-menu li a {
	  font-size: 0.75rem;
	  padding: 0.3rem 1rem;
	  color: #EDEDED;
		font-family: 'Montserrat';
	}
	
	.sub-menu li:last-child a {
	  padding: 0.3rem 1rem 0.6rem 1rem
	}
	

    .hero-text {
        position: absolute;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #EDEDED;
    }
	
	.hero-text p{
		font-weight: 500; 
		font-size: 1.1rem;
		margin-top: 0.2em; /* Adjust this value as needed */
		letter-spacing: 0.10em; 
	}

	.hero-text h1{
		font-weight: 375; 
		font-size: 3rem;
		letter-spacing: 0.2em; 
		z-index: 2;
	}
	
	.menu-container .hero-text {
		position: absolute;
		transform: translate(-50%, -25%);
		text-align: center;
		color: #EDEDED;
    }

    .container .container-text p {
        line-height: 1.6rem;
        font-size: 1rem;
    }

    .container .container-text h2, 
    .container .container-text h3 {
        text-align: center;
    }

    .container .container-text h2 {
        font-size: 1.8rem;
    }

    .container .container-text h3 {
        font-size: 1.3rem;
    }

    .container .container-text {
        margin-top: 5rem; /* Adds space above the text */
        padding-bottom: 5rem;
        max-width: 85%; /* Limits the width to 1/3 of the page */
        margin: 0 auto;    /* Centers the block horizontally */
    }

    .menu-content {
        margin: 0 1.5rem 0 1.5rem;
    }


    .responsive-map-container .responsive-map {
        display: none;
    }
      
    .info-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact-info p {
        margin: 0.2rem 0;
    }

    .dot {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
      }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .social-buttons {
        order: 1;  
    }

    .footer-nav {
        order: 2;
    }

    .footer-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-nav ul li {
        margin: 5px 10px;
    }

    .social-buttons a {
        margin: 5px;
        font-size: 0.6em;
    }

    .image-gallery img {
        max-width: 100%;
		width: 80%;
		aspect-ratio: auto;
    }
	
	.image-gallery img:nth-child(n+2) {
        display: none;
    }

    .image-gallery {
        margin-top: 2rem;
        margin-bottom: -4rem; /* Adds space above the text */
    }
	
	.hero-icon {
		max-width: 70px;
	}

    .menu-section {
        width: 100%;
    }
    .menu-section-image {
        width: 100%;
		height: auto;
        margin-bottom: 0.75rem;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    .menu-navigation {
        display: none; /* Hide menu navigation */
    }

    .floating-menu-btn {
        display: block;
    }

    .floating-menu-dropdown {
        display: block;
    }

    .half-container {
        flex-direction: column;
    }

    .half-container .container-image,
    .half-container .container-text {
        flex: 1 1 100%;
    }

    .half-container .half-container-text p {
        text-align: justify; /* or center, if you prefer */
        font-size: 0.9rem; /* or smaller if you like */
        line-height: 1.6rem; /* optional tweak for mobile */
    }
	
	#back-to-top {
    right: 65px;

}
}

@media (min-width: 769px) {
  .menu-item-has-children:hover .sub-menu {
    display: block;
  }
}



    