@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face {
    font-family: 'Canvas Inline';
    src: url('../fonts/CanvasInline-Heavy.woff2') format('woff2'),
        url('../fonts/CanvasInline-Heavy.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
	font-family: "Open Sans", sans-serif;
	line-height: 1.6;
	color: #73521f;
	font-size: 1em;;
}
h1{
	font-family: 'Canvas Inline';
}
h2{
	font-family: 'Canvas Inline';
}

/* Header Styles */
.header {
	background: #f3e6da;
	backdrop-filter: blur(10px);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: 'Georgia', serif;
	color: #D4A574;
	font-weight: bold;
	text-decoration: none;
}

.logo img{
	height:50px;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: #D4A574;
}

.contact-info {
	color: #73521f;
	font-weight:bold;
}
.contact-info a{
	color: #73521f;
	text-decoration:none;
}
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #D4A574;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: url(../images/banner_bg.jpg) #f3e6da;
	background-repeat: no-repeat;
	background-size: 100% auto;
	min-height: 110vh;
	display: flex;
	align-items: end;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding-top: 80px;
}

.hero-content {
	max-width: 800px;
	z-index: 2;
}

.hero-image {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: white;
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.hero-image img {
	width: 250px;
	height: 250px;
	object-fit: cover;
	border-radius: 50%;
}

.floating-elements {
	position: absolute;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.floating-element {
	position: absolute;
	opacity: 0.6;
	animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
.floating-element:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 1s; }

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-title {
	font-size: 120px !important;
	font-weight: bold;
	color: #73521f;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height:1em;
	padding: 2%;
	margin-bottom: 1rem;
	text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
	text-shadow: 4px 0 #fff, 0px 0 #fff, 0 4px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;	
}

.hero-subtitle {
	font-size: 2.5rem;
	color: #D4A574;
	margin-bottom: 3rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Taste By Category Section */
.taste-section {
	padding: 6rem 0 5rem 0;
	background: #f5ebe0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}
.container-2 {
	max-width: 96%;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 4rem;
	color: #73521f;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 100px;
	height: 3px;
	background: #D4A574;
	margin: 1rem auto;
}

.category-slider {
	position: relative;
	overflow: hidden;
	padding: 50px 50px;
}

.category-container {
	display: flex;
	transition: transform 0.3s ease;
	gap: 2.2rem;
}

.category-item {
	flex: 0 0 110px;
	background: white;
	border-radius: 200px;
	padding: 2rem;
	min-height:auto;
	align-content:center;
	justify-content:center;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.category-item-sub{
	border-radius: 200px;
	padding: 4em 2rem;
	width:100%
	height:100%;
	border:solid 1px #8d6e42;
}
.category-item-sub img{
	border-radius: 200px;
	width:100%;
}
.category-image {
	height: auto;
	border-radius: 50%;

}

.category-name {
	font-size: 2.2rem;
	font-weight: bold;
	color: #ff9c00;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Canvas Inline';
}

.slider-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 3rem;
}

.slider-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	border: 2px solid #D4A574;
	color: #D4A574;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.slider-btn:hover {
	background: #D4A574;
	color: white;
}

/* Chef Section */
.chef-section {
	padding: 5rem 0;
	background: white;
}

.chef-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.chef-image {
	position: relative;
}

.chef-image img {
	width: 100%;
	max-width: 500px;
}

.chef-content h2 {
	font-size: 4rem;
	line-height:1.2em;
	color: #ff9c00;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.chef-content h3 {
	font-size: 2rem;
	color: #73521f;
	margin-bottom: 2rem;
}

.chef-content p {
	color: #73521f;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.view-menu-btn {
	background: #D4A574;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s ease;
}

.view-menu-btn:hover {
	background: #73521f;
}

/* Dishes Section */
.dishes-section {
	padding: 0rem 0;
	background: url(../images/dish_bg.jpg) #f5ebe1;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position:center;
	color: #73521f;
	text-align: center;	
	min-height:940px;
}
.flex-end{
	display:flex;
	align-items:end;	
	justify-content:center;
	height:600px;
}

.dishes-title {
	font-size: 8rem;
	line-height:1em;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1rem;
	color:#fff;
	text-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
	text-shadow: 4px 0 #73521f, 0px 0 #73521f, 0 8px #73521f, 0 2px #73521f,
             1px 1px #73521f, -1px -1px #73521f, 1px -1px #73521f, -1px 1px #73521f;
}

.dishes-subtitle {
	font-size: 2rem;
	margin-bottom: 2rem;
}
.col-md-12{height:50px;}
.dishes-description {
	max-width: 600px;
	margin: 0 auto 3rem;
	line-height: 1.8;
}

/* Features Section */
.features-section {
	padding: 1rem 0 8rem 0;
	background: #f5ebe1;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.feature-item {
	text-align: center;
	padding: 2rem;		
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-10px);
}

.feature-icon {
	font-size: 3rem;
	color: #D4A574;
	margin-bottom: 1.5rem;
}

.feature-title {
	font-size: 2.4rem;
	color: #73521f;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
	font-family: 'Canvas Inline';
}

.feature-description {
	color: #73521f;
	line-height: 1.6;
}

/* Footer */
.footer {
	background: #73521f;
	color: white;
	padding: 3rem 0 1rem;
	text-align: center;
}

.footer-logo {
	font-family: 'Georgia', serif;
	font-size: 2.5rem;
	color: #D4A574;
	margin-bottom: 2rem;	
}
.footer-nav {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-nav a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #D4A574;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.social-icon {
	width: 40px;
	height: 40px;
	background: #88642c;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-decoration: none;
	transition: background 0.3s ease;
}

.social-icon:hover {
	background: white;
	color: #73521f;
}

.copyright {
	padding-top: 2rem;
	opacity: 0.8;
}






.nav {
    width: 100%;    
        display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav > .nav-header {
  flex: 0.95;
  padding-left: 1rem;
}
.nav > .nav-header > .nav-title {
  font-size: 22px;
  color: #73521f;
}
.nav > .nav-list {
      display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav > .nav-list > li {
  list-style-type: none;
}
.nav > .nav-list > li a {
  text-decoration: none;
  color: #73521f;
  cursor: pointer;
  font-weight: bold;
}
.nav > #nav-check {
    display: none;
}
.nav > .nav-btn{
	display:none;
}
@media (max-width: 480px) {
  .nav {
    padding: 1rem;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 0.2rem;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid #73521f;
  }
  .nav > .nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background-color: #f2e6d9;
    height: 0;
    transition: all 0.3s ease-in;
    top: 60px;
    left: 0;
    overflow: hidden;
  }
  .nav > .nav-list > li {
    width: 100%;
    margin-top: 1.5rem;
  }
  .nav > #nav-check:checked ~ .nav-list {
    height: calc(100vh - 50px);
	padding-left: 34px;
  }
}
.carousel{
  width:90%;
  margin:0px auto;
}
.slick-slide{
  margin:10px;
}
.slick-slide img{
  width:100%;
}
.slick-prev, .slick-next{
  background: #000;
  border-radius: 15px;
  border-color: transparent;
}
.card{
  flex: 0 0 110px;
	background: white;
	border-radius: 200px;
	padding: 2rem;
	min-height:auto;
	align-content:center;
	justify-content:center;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-body{
  border-radius: 200px;
    padding: 4em 0rem;
    width: 100% height:100%;
    border: solid 1px #ccb59e;
	text-align:center;
}
.card-body img{
	border-radius: 50px;
	margin:auto;
}
.card-content{
  text-align: left;
  color: #333;
  padding: 15px;
}
.card-text{
  font-size: 14px;
  font-weight: 300;
}


















/* Responsive Design */
@media (max-width: 968px) {
	.nav-menu {
		position: fixed;
		top: -100%;
		left:0;
		top: 80px;
		flex-direction: column;
		background: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
		display:none;
	}

	.nav-menu.active {
		top: 0;
	}

	.menu-toggle {
		display: block;
	}

	.contact-info {
		display: none;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.8rem;
	}

	.chef-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.category-item {
		flex: 0 0 200px;
	}

	.slider-controls {
		display: flex;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.dishes-title {
		font-size: 2rem;
	}

	.dishes-subtitle {
		font-size: 1.5rem;
	}

	.category-item {
		flex: 0 0 180px;
		padding: 1.5rem;
	}

	.footer-nav {
		flex-direction: column;
		gap: 1rem;
	}
}

/* About Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
		.about-hero .hero-content{
			max-width: inherit;
		}


        .hero-content p {
            font-size: 1.2rem;
            color: #73521f;
            max-width: 600px;
            margin: 0 auto;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
            font-size: 2rem;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
        .floating-element:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 1s; }
        .floating-element:nth-child(5) { top: 50%; left: 5%; animation-delay: 3s; }
        .floating-element:nth-child(6) { top: 60%; right: 5%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Our Story Section */
        .story-section {
            padding: 5rem 0;
            background: white;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .story-text h2 {
            font-size: 2.5rem;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
        }

        .story-text h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #D4A574;
            margin: 1rem 0;
        }

        .story-text p {
            color: #73521f;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .story-image {
            position: relative;
        }

        .story-image-placeholder {
            width: 100%;
            height: 400px;
            background: linear-gradient(45deg, #D4A574, #F0E6D2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

		.story-image-placeholder img{
			width:400px;
			border-radius:20px;
		}
        /* Mission Section */
        .mission-section {
            padding: 5rem 0;
            background: #F8F4F0;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .mission-item {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mission-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #D4A574, #F0E6D2);
        }

        .mission-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .mission-icon {
            font-size: 3rem;
            color: #D4A574;
            margin-bottom: 1.5rem;
        }

        .mission-title {
            font-size: 1.5rem;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .mission-description {
            color: #73521f;
            line-height: 1.7;
        }

        /* Chef Team Section */
        .team-section {
            padding: 5rem 0;
            background: white;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .team-member {
            text-align: center;
            background: #ffff;
            border-radius: 20px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
			box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .member-photo {
            width: 200px;
            height: 200px;
            background: #f5ebe1;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        .member-name {
            font-size: 1.2rem;
            color: #73521f;`
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .member-position {
            font-size: 1rem;
            color: #D4A574;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .member-description {
            color: #73521f;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .member-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 35px;
            height: 35px;
            background: #D4A574;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .social-link:hover {
            background: #73521f;
        }

        /* Values Section */
        .values-section {
            padding: 5rem 0;
            background: #f5ebe1;
            color: #73521f;
            text-align: center;
        }

        .values-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .values-title {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
        }

        .values-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-item {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 1);
        }

        .value-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #F0E6D2;
        }

        .value-name {
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: white;
            text-align: center;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: 2.5rem;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #73521f;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-btn {
            background: #D4A574;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .cta-btn:hover {
            background: #73521f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-btn.secondary {
            background: transparent;
            color: #D4A574;
            border: 2px solid #D4A574;
        }

        .cta-btn.secondary:hover {
            background: #D4A574;
            color: white;
        }
      
        /* Responsive Design */
        @media (max-width: 968px) {            

            .menu-toggle {
                display: block;
            }

            .contact-info {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .story-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .values-title {
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .story-text h2 {
                font-size: 2rem;
            }

            .story-image-placeholder {
                height: 300px;
                font-size: 3rem;
            }

            .member-photo {
                width: 150px;
                height: 150px;
                font-size: 3rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }
		
       

        /* Menu Hero Section */
        .menu-hero {
            background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }


        .hero-content p {
            font-size: 1.2rem;
            color: #73521f;
            max-width: 600px;
            margin: 0 auto;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
            font-size: 2rem;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 4s; }
        .floating-element:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 1s; }
        .floating-element:nth-child(5) { top: 50%; left: 5%; animation-delay: 3s; }
        .floating-element:nth-child(6) { top: 60%; right: 5%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Menu Filter Section */
        .menu-filter {
            padding: 3rem 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .filter-btn {
            background: white;
            border: 2px solid #D4A574;
            color: #D4A574;
            padding: 1rem 2rem;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: #D4A574;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
        }

        /* Menu Content Section */
        .menu-content {
            padding: 5rem 0;
            background: #F8F4F0;
        }

        .menu-category {
            margin-bottom: 5rem;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.5s ease;
        }
		.menu-hero .hero-content{
			max-width: inherit;
		}
        .menu-category.hidden {
            opacity: 0;
            transform: translateY(20px);
            height: 0;
            margin: 0;
            overflow: hidden;
        }

        .category-title {
            text-align: center;
            font-size: 2.5rem;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 3rem;
            position: relative;
        }

        .category-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: #D4A574;
            margin: 1rem auto;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .menu-item {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #D4A574, #F0E6D2);
        }

        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .item-info {
            flex: 1;
        }

        .item-name {
            font-size: 1.4rem;
            font-weight: bold;
            color: #73521f;
            margin-bottom: 0.5rem;
            text-transform: capitalize;
        }

        .item-description {
            color: #73521f;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .item-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #D4A574;
            margin-left: 1rem;
        }

        .item-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #eee;
        }

        .item-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.9rem;
            color: #888;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .add-to-cart-btn {
            background: #D4A574;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .add-to-cart-btn:hover {
            background: #73521f;
            transform: scale(1.05);
        }

        /* Special Offers Section */
        .special-offers {
            padding: 5rem 0;
            background: linear-gradient(135deg, #73521f 0%, #D4A574 100%);
            color: white;
            text-align: center;
        }

        .offers-title {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 3rem;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .offer-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .offer-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #F0E6D2;
        }

        .offer-description {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .offer-price {
            font-size: 2rem;
            font-weight: bold;
            color: #F0E6D2;
            margin-bottom: 1rem;
        }

        .offer-btn {
            background: white;
            color: #73521f;
            border: none;
            padding: 1rem 2rem;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .offer-btn:hover {
            background: #F0E6D2;
            transform: scale(1.05);
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .menu-toggle {
                display: block;
            }

            .contact-info {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .filter-buttons {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }

            .filter-btn {
                white-space: nowrap;
                flex-shrink: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .category-title {
                font-size: 2rem;
            }

            .offers-title {
                font-size: 2rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .menu-item {
                padding: 1.5rem;
            }

            .footer-nav {
                flex-direction: column;
                gap: 1rem;
            }
        }		
		
		
/* Contact Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, #F5E6D3 0%, #E8D5C4 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }        

        .hero-content p {
            font-size: 1.2rem;
            color: #73521f;
            max-width: 600px;
            margin: 0 auto;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            opacity: 1;
            animation: float 6s ease-in-out infinite;
            font-size: 2rem;
        }

        .floating-element:nth-child(1) { top: 31%; left: 22%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 30%; right: 15%; animation-delay: 2s; }
        .floating-element:nth-child(3) { bottom: 30%; left: 10%; animation-delay: 4s; }
        .floating-element:nth-child(4) { bottom: 30%; right: 10%; animation-delay: 1s; }
        .floating-element:nth-child(5) { top: 28%; right: -34%; animation-delay: 3s; }
        .floating-element:nth-child(6) { top: 56%; left: -45%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Contact Info Section */
        .contact-info-section {
            padding: 5rem 0;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-card {
            text-align: center;
            padding: 3rem 2rem;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #D4A574, #F0E6D2);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #D4A574, #F0E6D2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
        }

        .contact-title {
            font-size: 1.4rem;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .contact-details {
            color: #73521f;
            line-height: 1.8;
        }

        .contact-details a {
            color: #D4A574;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #73521f;
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #F8F4F0 0%, #F0E6D2 100%);
        }

        .form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .form-content h2 {
            font-size: 2.5rem;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
        }

        .form-content h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #D4A574;
            margin: 1rem 0;
        }

        .form-content p {
            color: #73521f;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #73521f;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #E8D5C4;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #FEFEFE;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: #D4A574;
            box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: linear-gradient(45deg, #D4A574, #F0E6D2);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
        }

        /* Map Section */
        .map-section {
            padding: 5rem 0;
            background: white;
        }

        .map-container {
            height: auto;
            background: #f5ebe1;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        /* Hours Section */
        .hours-section {
            padding: 5rem 0;
            background: #f5ebe1;
        }

        .hours-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hours-content h2 {
            font-size: 2.5rem;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
        }

        .hours-content h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #D4A574;
            margin: 1rem 0;
        }

        .hours-content p {
            color: #73521f;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .hours-table {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #E8D5C4;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: bold;
            color: #73521f;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .time {
            color: #73521f;
        }

        .special-note {
            background: linear-gradient(45deg, #D4A574, #F0E6D2);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 2rem;
            font-weight: bold;
        }

        /* Reservation CTA Section */
        .reservation-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #73521f 0%, #D4A574 100%);
            color: white;
            text-align: center;
        }

        .reservation-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .reservation-title {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .reservation-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .reservation-btn {
            background: white;
            color: #73521f;
            padding: 1rem 3rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .reservation-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: #F0E6D2;
        }
		.contact-hero .hero-content{
			max-width: inherit;
		}

        /* Responsive Design */
        @media (max-width: 968px) {
            

            .contact-info {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .form-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hours-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
			.floating-element:nth-child(1){
				top: 15%;
				left: 16%;
				animation-delay: 0s;
				scale: 0.8;
			}
			.floating-element:nth-child(2){
				top: 30%;
				right: 12%;
				animation-delay: 2s;
				scale: 0.6;
			}
			.floating-element:nth-child(3){
				bottom: 59%;
				left: 14%;
				animation-delay: 4s;
				scale: 0.6;
			}
			.floating-element:nth-child(4){
				bottom: 54%;
				right: 10%;
				animation-delay: 1s;
				scale: 0.6;
			}
			.floating-element:nth-child(5){
				top: 10%;
				right: -34%;
				animation-delay: 3s;
				scale: 0.6;
			}
			.floating-element:nth-child(6){
				top: 26%;
				left: -45%;
				animation-delay: 5s;
			}
			.hero-title{
				font-size: 80px !important;
			}
			.hero{
				min-height: 70vh;
				margin-top: 50px;
			}
			.dishes-section{
				min-height: 400px;
			}
            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .reservation-title {
                font-size: 2rem;
            }

            .form-content h2 {
                font-size: 2rem;
            }

            .hours-content h2 {
                font-size: 2rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .map-container {
                height: 300px;
                font-size: 3rem;
            }

            
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }		
	@media (max-width: 480px) {
		.floating-element:nth-child(1){
				top: 42%;
				left: 16%;
				animation-delay: 0s;
				scale: 0.6;
			}
			.floating-element:nth-child(2){
				top: 30%;
				right: 12%;
				animation-delay: 2s;
				scale: 0.4;
			}
			.floating-element:nth-child(3){
				bottom: 59%;
				left: 14%;
				animation-delay: 4s;
				scale: 0.4;
			}
			.floating-element:nth-child(4){
				bottom: 22%;
				right: 10%;
				animation-delay: 1s;
				scale: 0.3;
			}
			.floating-element:nth-child(5){
				top: 10%;
				right: -34%;
				animation-delay: 3s;
				scale: 0.4;
			}
			.floating-element:nth-child(6){
				top: 34%;
				left: -45%;
				animation-delay: 5s;
			}
		.nav {
			padding: 0;
		}
		.nav > .nav-btn{
			right: 20px;
			top: 12px;
		}
		.nav > .nav-list > li{
			text-align: center;
		}
		.footer-logo img{
			height: 40px;
		}
		.hero-title {
			font-size: 50px !important;
		}
		.hero{
			min-height: 57vh;
		}
		.chef-image img{
			max-width: 300px;
		}
		.taste-section{
			padding:3rem 0 3rem 0;
		}
		.chef-content h2{
			font-size: 50px;
		}
		.col-md-12 {
			height: 20px;
		}
		.flex-end{
			height: 300px;
		}
		.dishes-title {
			font-size: 3rem;
			text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
			text-shadow: 4px 0 #73521f, 0px 0 #73521f, 0 4px #73521f, 0 2px #73521f,
            1px 1px #73521f, -1px -1px #73521f, 1px -1px #73521f, -1px 1px #73521f;
		}
		.feature-icon{
			margin-bottom: 0;
		}
		.feature-item{
				padding-bottom:0 !important;
		}	
		.menu-content{
			padding-bottom: 5px;
		}
		.story-text h2::after{
			margin:auto;
		}
		.hours-content h2::after{
			margin:auto;
		}
	}