@import url('https://fonts.googleapis.com/css2?family=Bellefair&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Yellowtail&display=swap');

body{
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	font-family: "Roboto", sans-serif;
}


.container{
	width: 100%;
    background-color: #ffffff;
	margin: 0px auto;
}


header{
    height: 150px;
    width: 100%;
    z-index: 100;
    position: relative;
    background: #EB2326;
    top: 0;
    left: 0;
    padding: 0px;
    border: none;
    overflow: visible;   /* scallops ko dikhane ke liye */
}



/* Shed-style round scallops */
header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -42px; /* scallops ka half-size niche */
    height: 29px;  /* scallop diameter */
    background:
        repeating-radial-gradient(
            circle at 50% 0,
            transparent 0,
            transparent 17px,
            #EB2326 17px,
            #EB2326 18px
        );
        
    background-size: 36px 100%; /* scallop width */
    pointer-events: none;
}


.header-inner{
	width: 70%;
	margin: 0px auto;
	text-align: center;
}

.header-inner img{
	margin-top: 25px;
    width: 25%;
}

.main_box{
	width: 100%;
	min-height: 300px;
	height: auto;
    margin: 0px auto;
    background: #FFf;
    position: relative;
}

.header_box{
    position: absolute;
    width: 48%; 
    margin: 20px auto;
    padding-top: 16px;
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;
}

.header_box h2{
	font-size: 3em;
    font-weight: bold;
    font-style: normal;
}

.eat_now{
	text-decoration: none;
	padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    background: #EB2326;
    outline: none;
    color: #fff;
    cursor: pointer;
}

.eat_now:hover{
    border: 1px solid #EB2326;
    background: #fff;
    color: #EB2326;
}


section{
	Position: relative;
	width: 70%;
	margin: 0px auto;
	padding: 0px;
}



.abt_box{
	width: 70%;
	min-height: 150px;
	height: auto;
    margin: 0px auto;
    clear: both;
}

.two-column {
  display: flex;
  gap: 20px; /* space between columns */
}

.abt_column {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
}

.abt_box h3{
	font-size: 1.2em;
	text-align: left;
	font-weight: 400;
}

.abt_box p{
	font-size: 0.9em;
	line-height: 1.3em;
}

.explr_box{
	width: 62%;
	text-align: center;
    min-height: 320px;
    height: auto;
	padding: 20px;
    margin: 0px auto;
	clear: both;
	background: #f4f2e9;
	position: relative;
}


.explr_box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -12px;          /* scallop ko left border se chipkana */
    width: 12px;          /* scallop strip width */
    height: 100%;         /* full height */
    background: radial-gradient(circle, transparent 6px, #f4f2e9 7px);
    background-size: 12px 33px;   /* circle width height swap for vertical */
    background-repeat: repeat-y;  /* vertical repeat */
}

.explr_box h3 {
    font-family: "Yellowtail", cursive;
    font-size: 2em;
    margin: 0px 0px 0px;
    font-weight: 400;
    display: inline-block; 
    transform: rotate(-10deg);
    color: #EB2326;
}

.explr_box p{
    font-size: 1em;
    line-height: 1.5em;
    text-align: left;
    margin: 20px 0px 0px;
    font-weight: 400;
}

.rating_box{
    width: 68%;
    min-height: 300px;
    height: auto;
    margin: 0px auto;
	text-align: center;
}


#slideshow { 
text-align: left;
  margin: 50px auto; 
  position: relative; 
  width: 100%; 
  height: auto;
  min-height: 250px;
  border-radius: 10px;
}

#slideshow > div { 
  position: absolute; 
  top: 10px; 
  left: 10px; 
  right: 10px; 
  bottom: 10px; 
}


#slideshow p{
	font-size: 1.5em;
	margin-left: 10px;
	text-align: left;
	font-family: 'Merriweather', serif;
}

#slideshow span{
    color: #EB2326;
	font-size: 1.2em;
	text-align: left;
	font-weight: 600;
	margin-left: 10px;
}


.map{
    width: 100%;
    height: 400px;
    margin: 0px auto;
    padding: 0px;
    
}

footer{
	width: 100%;
    height: 40px;
    padding-top: 2px;
	background: #EB2326;
	font-size: .8em;
	color: #fff;
	text-align: center;
}


.cpy_rght{font-size: 1em;}


@media screen and (max-width: 768px) {

.header-inner{
	width: 95%;
	margin: 0px auto;
}

.header-inner img{
	margin: 25px auto;
	width: 60%;
}

.header_box{
    width: 90%;
    background-position: right bottom;
    background-size: 80% auto;
}

.header_box h2{
    margin: 20px 0px 20px;
    font-size: 2.5em;
}

section{
	width: 95%;
}

.abt_box{
    width: 98%;
}

.two-column{
    gap: 10px
}

.explr_box{
    width: 80%;
}

.rating_box{
    width: 100%;
}

#slideshow p{
	font-size: 1.3em;
}

}