/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Greetings */

/*** Fonts ***/

/* 400 Weight */
@font-face {
  font-family: "Geologica";
  font-display: swap;
  src:
    url("fonts/Geologica/Geologica.woff2") format("woff2"),
	url("fonts/Geologica/Geologica.woff") format("woff"),
	url("fonts/Geologica/Geologica.ttf") format("truetype");
}


/* 800 Weight󠅘󠅙󠄐󠅤󠅘󠅕󠅢󠅕󠄐󠅟󠄟 */
@font-face {
  font-family: "Geologica";
  font-display: swap;
  src:
    url("fonts/Geologica/Geologica-ExtraBold.woff2") format("woff2"),
	url("fonts/Geologica/Geologica-ExtraBold.woff") format("woff"),
	url("fonts/Geologica/Geologica-ExtraBold.ttf") format("truetype");
}


/*** Globals ***/
:root {
    /* Fonts */
    --Geologica: "Geologica";

    /* Font Sizes */
    --button-font-size-desktop: 20px;
    --question-title-size: 32px;
    --question-text-size: 18px;

    /* Colors */
    --black: black;
    --red: #ee3831;

    /* Font Weights */
    --button-weight: 500;
    --generic-font-weight: 600;
	--extrabold-weight: 800;


    /* Letter Spacings */
    --button-letter-spacing: 0.4px;
    --question-letter-spacing: -0.32px;
}

/*** Site ***/
.site-footer .site-info {
    display: none;
}

html {
    margin-top: 0 !important;
}

.inside-footer-widgets {
    margin-left: 0 !important;
}

.inner-padding {
    padding: 0 !important;
    justify-content: center;
    display: flex;
}

.footer-widgets-container {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.one-container .site-content {
    padding: 0 !important;
}

/*** Common ***/
.dn-asian-food {
    text-wrap-style: pretty;
	font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
}

.dn-wok-paragraph {
    font-family: var(--Geologica);
}

.question-title {
    font-size: var(--question-title-size);
    font-weight: var(--generic-font-weight);
	font-family: var(--Geologica);
	color: var(--black);
}

.question-text {
    font-size: var(--question-text-size);
    font-weight: var(--generic-font-weight);
	font-family: var(--Geologica);
	color: var(--black);
}

a.dn-generic-button {
	font-family: var(--Geologica);
    font-size: var(--button-font-size-desktop);
    padding: 12px 40px;
    background-color: var(--black);
    border-radius: 10px;
    font-weight: var(--button-weight);
    color: white;
    letter-spacing: var(--button-letter-spacing);
	transition: background-color 0.2s ease-in-out, border-radius 0.2s ease-in-out;
}


a.dn-generic-button:hover {
    border-radius: 5px;
    background-color: var(--red);
    color: white;
}

@media screen and (max-width: 768px) {
	a.dn-generic-button {
		padding: 10px 40px;
		font-size: 16px;
	}
}

/* This button is the one on Question sections */
a.dn-alt-generic-button {
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-radius 0.2s ease-in-out;
}

a.dn-alt-generic-button:hover {
    border-radius: 5px;
    background-color: white;
    color: var(--black);
}

.wp-block-list {
    margin-left: 25px;
}

.wp-block-list li {
    font-family: var(--Geologica);
    padding: 0 0 20px 30px;
}

@media screen and (max-width: 768px) {
    .wp-block-list {
        margin-left: 0;
    }

    .wp-block-list li {
        padding: 0 0 12px 30px;
    }
}

/*** E-food box ***/
.efood-fixed-box {
    position: fixed;
    top: 85%;
    right: -4px;
    width: 132px;
    max-width: fit-content;
    height: 50px;
    padding: 5px 10px 5px 5px;
    background-color: #d1241e !important;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px -1px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    color: #fff;
    font-family: var(--Geologica);
}

.efood-fixed-box img {
    scale: 1.25;
    height: 40px;
    width: auto;
    margin-right: 7px;
}

.efood-fixed-box-text {
    display: flex;
    flex-direction: column;
    width: auto;
    text-align: center;
    line-height: 1.2;
    font-size: 11px;
}

@media screen and (max-width: 768px) {
    .efood-fixed-box {
        width: 120px;
        height: 80px;
        flex-direction: column;
        align-items: center;
        text-align: center;
		top: 15%;
    }

    .efood-fixed-box img {
        scale: 1.5;
        margin: 0 0 5px 0;
    }
}

/*** Header ***/
.site-header {
    background: transparent;
    position: fixed;
    display: flex;
    left: 50%;
    transform: translate(-50%);
    z-index: 100;
    width: 100%;
    max-width: 1187px;
}

.site-header .header-image {
    vertical-align: unset;
	height: 30px;
    position: relative;
    bottom: 2px;
}

@media screen and (max-width: 500px) {
	.site-header .header-image {
		width: 115px;
		height: 30px;
    	position: relative;
		bottom: unset;
	}
}

.inside-header {
    background: white;
    padding: 0 36px 0px 24px;
    margin: 10px auto;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 100%;
}

.grid-container {
    max-width: unset !important;
}

.nav-float-right #site-navigation {
    margin-left: auto;
}

.header-widget {
	font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
}

@media screen and (max-width: 1024px) {
    .site-header {
        margin: auto;
        padding: 0 25px;
    }

    .inside-header {
        padding: 0 15px;
        width: 100%;
    }

    /* Language switcher here */
    .header-widget {
        flex-direction: row !important;
    }

    .nav-float-right #site-navigation {
        margin-left: auto;
    }
}

@media screen and (max-width: 927px) and (min-width: 770px) {
	.header-widget {
        margin-left: 3px !important;
    }
	
	#primary-menu {
		width: max-content !important;
	}
	
	.main-navigation .main-nav ul li > a,
	.main-navigation .main-nav ul li > a:hover {
		border-radius: 10px;
		padding: 5px !important;
		font-size: 13px;
	}
}

@media screen and (max-width: 769px) {
    .header-widget {
        flex-direction: column !important;
    }

    .site-header.has-inline-mobile-toggle {
        padding: 10px 40px;
    }

    .menu-item {
        padding-top: 20px;
        justify-self: center;
    }

    .main-navigation .main-nav ul {
        align-items: center;
        background: white;
    }

    .inside-header {
        padding: 0 15px;
        width: 100%;
    }

    .main-navigation.toggled .main-nav {
        display: flex;
        justify-content: center;
        background-color: white;
    }

	.menu-toggle {
		line-height: 1.5em;
	}
	
    .menu-toggle svg {
        display: none !important;
        background-color: inherit;
    }

    .mobile-menu-control-wrapper .menu-toggle,
    .mobile-menu-control-wrapper .menu-toggle::after,
    .mobile-menu-control-wrapper .menu-toggle:hover,
    .mobile-menu-control-wrapper .menu-toggle:focus {
        background-color: transparent !important;
        content: "Menu";
        font-family: var(--Geologica);
		font-weight: var(--extrabold-weight);
        font-size: 14px;
        text-transform: uppercase;
        padding-right: 10px;
		height: 50px;
        align-items: anchor-center;
    }

    .menu-toggle[aria-expanded="true"]::after {
        content: "Close";
        background-color: #E6E6E6 !important;
        font-family: var(--Geologica);
		font-weight: var(--extrabold-weight);
        padding: 4px 8px;
        font-size: 14px;
        text-transform: uppercase;
        border-radius: 10px;
		height: 25px;
    }

    .site-header .header-widget {
        display: none;
    }

    .site-header .main-navigation.toggled + .header-widget {
        display: block;
        margin-top: 1em !important;
        margin-bottom: 2em !important;
    }
	
	.main-navigation.toggled .main-nav li {
		text-align: center !important;
    }

    .main-navigation .main-nav ul li > a {
        font-size: 24px;
    }

}

.main-navigation .main-nav ul {
    gap: 17px;
}

.main-navigation .main-nav ul li a {
    display: inline;
    text-transform: uppercase;
    font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
}

.main-navigation .main-nav ul li > a,
.main-navigation .main-nav ul li > a:hover {
    border-radius: 10px;
    padding: 8px 12px !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .main-navigation .main-nav ul {
        gap: 0px;
    }
}

.wp-block-button__link.wp-element-button {
    font-weight: var(--button-weight);
    padding: 0;
}

/* Franchise button */
#menu-item-1571 a{
	background-color: var(--red);
	color: white;
}

/* Style it differently when on franchise page */
body.page-id-26 #menu-item-1571 a { 
    background-color: var(--black); 
    color: #FFDD00; 
} 

@media screen and (max-width: 768px) { 
    body.page-id-26 #menu-item-1571 a, 
    body.page-id-26 #menu-item-1571 a:hover {
        color: #FFDD00 !important; 
    } 
}

/* Language switcher 2nd child */
/* Swap colors for inactive language */
li a[href*="/el/"] span[data-wpml="label"] {
    color: var(--red);
}

li a[href*="/"] span[data-wpml="label"] {
    color: var(--red);
}

li.wp-block-navigation-item[data-wpml="language-item"] {
   	margin-top: 0 !important;
	margin-right: 0 !important;
}

/*** Home ***/
@media screen and (max-width: 1500px) {
	.home-menu-cont {
		max-width: 450px !important;
	}
}


.home-menu-cont:hover .home-menu-paragraph {
    color: white;
    transition: color 0.3s ease-in-out;
}

.menu-card-img {
    transition: filter 0.3s ease-in-out;
}

.home-menu-cont:hover .menu-card-img {
    filter: invert(1);
}

.image-wrapper {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.image-wrapper img {
    transition: transform 0.7s ease;
}

.home-menu-cont:hover .image-wrapper img {
    transform: scale(1.3);
}

@media screen and (max-width: 768px) {
    .home-menu-paragraph {
        font-size: 18px;
        margin-top: 5px;
    }
}

/*** About Us Page ***/

/* First image on page after banner */
@media screen and (min-width: 1440px) {
	.dn-wok-kid img{
		scale: 1.3;
	}
}

/* Images on the wok project */
.dn-wok-1 img,
.dn-wok-2 img{
	transform: scaleX(-1);
}

/*** Our Menu Page ***/

/* All lists in this page */
#post-17 .wp-block-list li {
	font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
}

@media screen and (max-width: 768px) {
	#post-17 .wp-block-list li {
		padding: 0 0 12px 20px;
        margin-left: 20px;
	}
}


/* List on the middle */
.ingredient-list li {
    list-style: decimal;
}

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

/* Nutrition table */


.meal-calculator-layout-container {
    display: flex;
    gap: 4vw;
}

/* Titles */
.calculator-controls h5{
	font-family: var(--Geologica);	
}

.calculator-controls {
    min-width: 350px;
    counter-reset: meal-step-counter;
}

.meal-section-headline,
.summary-headline{
	font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
}

.calculator-controls p,
p.summary-headline.active {
    margin-bottom: 0 !important;
}

.summary-headline.active,
.meal-section-headline.active {
    border-radius: 10px 10px 0 0;
}

.summary-table-display { 
    width: 100%;
    max-height: fit-content;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 0; 
}

.meal-options-sub-content {
	padding-bottom: 10px;
}

@media (max-width: 768px) {
    .meal-calculator-layout-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .calculator-controls {
		width: 100%;
    }

    .calculator-controls > h5:first-of-type {
    	text-align: center;
	}

    .meal-calculator-accordion {
        max-width: unset !important;
    }
}

.meal-calculator-accordion {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
    max-width: 350px;
}
.meal-calculator-accordion:last-child {
    margin-bottom: 0;
}

.meal-calculator-accordion .meal-section-headline::before {
    display: flex;
    justify-content: center;
    align-items: center;
    color: red;
    font-weight: bold;
    flex-shrink: 0;
    counter-increment: meal-step-counter;
    content: attr(data-step-text) " " counter(meal-step-counter);
}

.meal-section-headline {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #333;
    background: white;
    border-radius: 10px;
    gap: 15px;
}

.meal-section-headline::after,
.summary-headline::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-left: auto;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%23888888' fill-rule='evenodd' d='M4.293 7.793a1 1 0 0 1 1.414 0L12 14.086l6.293-6.293a1 1 0 1 1 1.414 1.414L13.414 15.5a2 2 0 0 1-2.828 0L4.293 9.207a1 1 0 0 1 0-1.414' clip-rule='evenodd'/></svg>")
        no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.meal-section-headline.active::after,
.summary-headline.active::after {
    transform: rotate(180deg);
}

.meal-options-content,
.summary-content {
    max-height: 0;
    overflow: hidden;
   
    transition:
        max-height 0.3s ease-out,
        padding 0.3s ease-out,
        margin-top 0.3s ease-out, 
        background-color 0s 0.3s; 
    padding: 0 15px;
    background-color: transparent;
}

.meal-options-content.open,
.summary-content.open {
    padding: 15px;
    margin-top: -15px;
    overflow: hidden; 
    max-height: 2000px !important; 
    background: white;
    background-color: white; 
    margin-bottom: 8px;
    border-radius: 0 0 10px 10px;
	font-family: var(--Geologica);
    transition:
        max-height 0.3s ease-out,
        padding 0.3s ease-out,
        margin-top 0.3s ease-out,
        background-color 0s 0s;
}

.meal-options-content.open {
    margin-top: 0px;
}

.meal-options-content .radio-option {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.meal-options-content .radio-option:last-child {
    margin-bottom: 0;
}

.meal-options-content .radio-option input {
    margin-right: 8px;
}

.summary-table-display table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

.summary-table-display th,
.summary-table-display td {
    padding: 8px 12px;
    text-align: left;
    border: none !important;
    font-size: 14px;
}

.summary-headline {
    height: 77px;
    cursor: pointer;
    font-weight: bold;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    background: white;
    border-radius: 10px;
    gap: 15px;
    font-size: 24px;
    margin-bottom: 16px;
}

.nutrition-summary-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
}

.summary-item {
    text-align: center;
    padding: 5px 10px;
}

@media (max-width: 1100px) {
    .nutrition-summary-header {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px 10px; 
        justify-content: unset;
        padding: 15px; 
    }
    
    .summary-item {
       
        padding: 5px 0; 
    }
}

.summary-item span {
    font-size: 12px;
    color: black;
}

.summary-item-span,
.summary-item-span span {
    font-size: 18px !important;
    font-weight: bold;
}

.summary-content.open hr {
    margin: 0;
}

.desktop-data {
	text-align: center !important;
}

.data-header-mobile,
.mobile-data {
    display: none;
}

@media (max-width: 768px) {
    .data-header-desktop,
    .desktop-data {
        display: none !important; 
    }

    .data-header-mobile,
    .mobile-data {
        display: table-cell !important;
    }
    
    .summary-table-display th.data-header-mobile {
        padding: 0; 
        text-align: center;
        background: white; 
        border-radius: 10px 10px 0 0;
        font-weight: bold;
        color: #333;
    }

    #data-display-selector {
        width: 100%;
        padding: 10px 15px; 
        border: none;
        background: transparent;
        font-family: var(--Geologica);
		font-weight: var(--extrabold-weight); 
        font-size: 1em; 
        -webkit-appearance: none; 
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
        outline: none;
        color: #333;
        text-align-last: right; 
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'><path fill='%23333' d='m17 10l-5 6l-5-6z'/></svg>");
        background-repeat: no-repeat;
        background-position: left 35px center; 
        background-size: 16px;
    }

    #data-display-selector::-ms-expand {
        display: none;
    }
	
	.mobile-data {
		text-align: right !important;
	}

    #data-display-selector option {
        text-align: left;
    }
}

@media screen and (max-width: 500px) {
	#data-display-selector {
		background-position: left 15px center; 
	}
}

/*** Stores Page ***/

/* The stores grid */
@media screen and (min-width: 1501px) {
	.dn-store-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1500px) {
	.dn-store-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
}

@media screen and (max-width: 1100px) {
	.dn-store-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

@media screen and (max-width: 1024px) {
	.dn-store-grid div{
		padding-bottom: 32px;
	}
}

/*** Recruitment Page ***/
.store-swiper {
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}

.store-swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
}

.store-swiper .swiper-slide {
  text-align: center;
	width: 160px;
	display: flex;
    justify-content: center;
    align-items: center;
}

.store-swiper .store-name {
  	height: max-content;
    text-align: center;
    position: absolute;
    font-size: 18px;
	font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
	text-transform: uppercase;
    text-wrap: wrap;
    margin: 0;
	padding-top: 20px;
}

.store-swiper .store-img {
  height: auto;
  display: inline-block;
}

@media (max-width: 767px) {

	
  .store-swiper .swiper-wrapper {
    display: flex;
  }

  .store-swiper .swiper-slide {
    flex: 0 0 auto;
  }
	
	.store-swiper .store-name {
		font-size: 13px;
	}
}

@media screen and (max-width: 500px) {
	.store-swiper .swiper-wrapper {
		padding-left: 40px;		
	}
}

/*** Franchise Page ***/
.dn-franchise-details, 
.dn-franchise-accordion {
	justify-content: space-evenly;
}

@media screen and (max-width: 768px) {
	.dn-franchise-details img {
		scale: 1.15 !important;
	}
}


/* Franchise list */

ol.franchise-list li::marker {
    font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
	font-size: 32px;
}

ol.franchise-list li::marker {
    content: counter(list-item) ''; 
}

ol.franchise-list #text {
    font-family: var(--Geologica);
}

@media screen and (max-width: 768px) {
	ol.franchise-list li::marker {
    	font-size: 28pt;
	}
}


/* Accordion styles */
.dn-accordion .hidden-content {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    padding: 0;
	font-family: var(--Geologica);
}

.dn-accordion .hidden-content.open {
    max-height: 500px;
    padding: 10px 0;
}


.dn-accordion .headline {
    cursor: pointer;
    color: black;
    transition: color 0.3s ease;
	font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
	font-size: 56px;
}

.dn-accordion .headline:hover,
.dn-accordion .headline.active {
    color: var(--red);
}

@media screen and (max-width: 1024px) {
    .dn-accordion {
        text-align: center !important;
    }
}

@media screen and (max-width: 768px) {
	.dn-accordion .headline {
		font-size: 32px;
	}
	
	.dn-accordion .hidden-content.open {
	 	padding-top: 0 !important;	
	}
	
	.dn-accordion .headline.active {
		 margin-bottom: 0 !important;
	}
}

/*** Contact forms ***/
.wpcf7-form,
.wpcf7-form.init,
.wpcf7-form.sent,
.wpcf7-form.invalid {
    text-align: start !important;
    font-family: var(--Geologica) !important;
}



.dn-cf7-row {
    width: 100%;
}

input.dn-cf7-row,
textarea.dn-cf7-row,
select.dn-cf7-row {
    border-radius: 10px;
    border: 1px solid black;
    background: inherit;
	font-family: var(--Geologica);
}


.dn-submit-row {
    display: flex;
    justify-content: end;
}

.wpcf7-form label {
    display: flex;
    flex-direction: column;
    row-gap: 10px; 
}

.dn-submit-row p {
    display: flex;
    flex-direction: column;
}

/* Select arrow */
.wpcf7-form select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24'%3E%3Cpath fill='%23000000' d='M5.293 9.293a1 1 0 0 1 1.414 0L12 14.586l5.293-5.293a1 1 0 1 1 1.414 1.414l-6 6a1 1 0 0 1-1.414 0l-6-6a1 1 0 0 1 0-1.414'/%3E%3C/svg%3E");
    
    background-repeat: no-repeat;
    background-position: right 10px center; 
    background-size: 14px;
    padding-right: 15px; 
    cursor: pointer;
}

.wpcf7-submit {
    border-radius: 10px;
    font-family: var(--Geologica);
    padding: 10px 20px !important;
    background: black !important;
    text-transform: lowercase;
}


/* Styles for recruitment form */
.wpcf7-date {
	padding: 9px 15px;
}

.dn-two-column-flex {
    display: flex; 
	justify-content: space-between;
}

.dn-two-column-flex-alt {
	display: flex;
}

@media screen and (max-width: 1024px) {
	.dn-two-column-flex,
	.dn-two-column-flex-alt{
		flex-direction: column;
	}
}

.dn-col-30 {
    flex: 0 0 30%;
}

.dn-col-70,
.dn-col-70-alt{
    flex: 0 0 70%; 
}

.dn-col-70-alt.dn-nested-row,
.dn-col-70-alt.dn-nested-row-alt{
	padding-left: 80px;
}

.dn-col-70-alt .dn-nested-row-alt label {
	margin-bottom: 0.5em;
}


.dn-nested-row,
.dn-nested-row-alt {
	display: flex;
    width: 100%; 
    margin-bottom: 10px; 
}

.dn-nested-col-50 {
    flex: 0 0 50%;
}

.dn-nested-col-50 label {
	margin-bottom: 1em;
}

.dn-nested-col-50 .wpcf7-list-item.first {
	margin-left: 0 !important;
}


.dn-two-column-flex h3,
.dn-two-column-flex-alt h3,
.dn-two-column-flex label,
.dn-two-column-flex-alt label{
	font-family: 'Geologica';
	font-weight: var(--extrabold-weight);
}

/*** 404 Page ***/
body.error404 .content-area,
body.error404 .inside-article {
    text-align: center;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
	background-image: url('/wp-content/uploads/2025/10/footer-bg.svg');
	background-color: var(--red);
	background-size: cover;
	background-position: center center;
}

body.error404 .search-field,
body.error404 .search-submit,
body.error404 .site-footer {
    display: none;
}

body.error404 .entry-title {
    font-size: 48px;
    font-family: var(--Geologica);
	font-weight: var(--extrabold-weight);
}

body.error404 .entry-content {
    font-family: var(--Geologica);
}

body.error404 .site-main {
    margin: 0 !important;
	font-family: var(--Geologica);
}

body.error404 .back-to-home {
    padding-top: 30px;
	font-family: var(--Geologica);
}

.wok-404-image {
	width:378px; 
	height: 443px;
}

@media screen and (max-width:768px) {
	.wok-404-image {
		width:301px; 
		height: 380px;
	}
	
	body.error404 .content-area,
	body.error404 .inside-article {
		background-image: url('/wp-content/uploads/2025/10/mob-header-bg.svg');
		background-repeat: no-repeat;
		background-size: cover;
		min-height: 100vh;
	}
}



/*** Footer ***/
@media screen and (max-width: 767px) {
	.dn-noodle-bowl {
		height: 373px !important; 
		transition: height 0.3s ease-in-out;
	}
	
	.copyright-section {
		display: block !important;
	}
}
	
@media screen and (max-width: 500px) {
	.dn-noodle-bowl {
		height: 373px !important;
		transition: height 0.3s ease-in-out;
	}
}