/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* reset end */

/* ==================My styles start here================= */

/* genereal styles */

*{
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    line-height: clamp( 2.2rem, 2vw + 1rem, 3.5rem);
    
}

h1{
    font-size: 1.6rem;
}

h2{
    font-size: clamp( 1.6rem, 2vw + 1rem, 2.5rem);
}

h3, h4, h5, h6{
    font-size: clamp( 1.4rem, 2vw + 1rem, 1.8rem);
}

p, li, a{
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: clamp( 1.4rem , 2vw + 1rem, 2rem);
}

body {
    background-color: #1b1b1b;
    color: #e5dfd7;
    margin: 2.5%;
}

a {
    text-decoration: none;
    color: #e5dfd7;
}

a:hover, a:active, a:visited, a:focus {
    color: #cbed50;
    transition: all 0.3s ease-in-out;
}

a:focus-visible {
    outline: #aa95c3 solid;
}

img{
    margin: 0 0 25px 0;
}


/* navigation styles */

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}   

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav h1 span{
    color: #cbed50;
}

nav ul li ul.dropdown li{
    display: block;
}

nav ul li ul.dropdown{
    width: 100%;
    position: absolute;
    display: none;
}

nav ul li:hover ul.dropdown{
    display: block;
    transition: all 8s ease-in-out;
}

/* Landing page styles */

#landing-page{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

#landing-page .welcome h2{
    text-align: center;
    padding-bottom: 15px;
}

#landing-page p{
    text-align: center;
    padding-bottom: 5px;
}

#landing-page .welcome p span{
    color: #cbed50;
}

.map p{
    color: #aa95c3;
    padding-bottom: 15px;
}

.mapimg img{
    display: block;
    margin: auto;
    width: clamp(200px, 50vw, 600px);
    height: auto;
}

/* search page styles */

#search{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    margin: 30px 0;
}

.icons ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 3%;
    width: 100vw;
    padding: 3px;
}

.icons ul li img{
    width: clamp(60px, 10vw, 100px);
    height: clamp(60px, 10vw, 100px);
    border-radius: 50%;
    border: #1b1b1b solid 1px;
}

.icons ul li img:hover{
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

.searchbar{
    padding-bottom: 10px;
}

/* card styles */

.cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.item-1, .item-2, .item-3{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    height: auto;
    width: 300px;
    background-color: #222222;
    border-radius: 15px;
}

/* trending page styles */

#trending, #local-fav, #trending-views{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#trending h2, #local-fav h2, #trending-views h2{
    padding: 30px 0 10px 0;
    text-align: center;
}

/*footer styles */

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 0 0;
    margin-top: 40px;
}

/* ====================snacks page styles====================== */
.foodimg img{
    display: block;
    margin: auto;
    width: clamp(350px, 50vw, 600px);
    height: auto;
    border-radius: 50%;
}

.container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.content h2{
    margin: 10px 0;
}

.container p span{
    opacity: 0.5;
}

.feature{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestseller{
    background-color: #cbed50;
    color: #1b1b1b;
    border-radius: 30px;
    padding: 10px;
    margin: 25px 0;
    max-width: 665px;
}

.bestseller h2{
    text-align: center;
}

.container, .ratings, .location, .contact {
    padding-bottom: 10px;
    border-bottom: #404040 solid 1px;
}
.mapcon iframe{
    display: block;
    margin: auto;
    width: 90vw;
    height: 400px;
    border-radius: 20px;
}

.timetable{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 15px;
    max-width: 500px;
}

/* ============================list-page styles=========================== */

.foodspot img{
    display: block;
    margin: auto;
    padding-bottom: 20px;
    width: clamp(200px, 50vw, 400px);
    height: clamp(200px, 50vw, 400px);
}

.list-title h2{
    text-align: center;
    margin-bottom: 20px;
}

.list-title h2 a{
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: #e5dfd7;
}

.list-title h2 a:hover{
    color: #cbed50;
    transition: all 0.3s ease-in-out;
}

#north, #south, #east, #west, #center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#north h3, #south h3, #east h3, #west h3, #center h3{
    text-align: center;
    padding-bottom: 20px;
}

.baz{
    display: flex;
    background-color: #222222;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    border-radius: 50px;
    width: clamp( 330px, 50vw, 600px);
}

.baz img:hover{
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

.baz img{
    width: clamp( 100px, 10vw, 190px);
    height: clamp( 100px, 10vw, 190px);
    border-radius: 50%;
    margin: 10px;
}

.baz h4{
    text-align: center;
}


/*=============================food-history styles============================*/

