/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding-top: 2rem;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}

:root {
  --primary-color: #d4b8a0;
  --secondary-color: #8b7355;
  --accent-color: #a67c52;
  --text-color: #5d4037;
  --light-color: #faf5f0;
  --gradient-1: linear-gradient(135deg, #e8d0b3 0%, #d4b8a0 100%);
  --gradient-2: linear-gradient(135deg, #d4b8a0 0%, #b89f81 100%);
  --gradient-3: linear-gradient(135deg, #f0e6d8 0%, #e8d0b3 100%);
  --shadow: 0 20px 40px rgba(139, 115, 85, 0.1);
  --shadow-hover: 0 30px 60px rgba(139, 115, 85, 0.15);
}

html {
  font-size: 16px;
}

body {
  background-color: var(--light-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

section {
  padding: 100px 5%;
}

img {
  width: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*::selection {
  color: #fff;
  background: var(--primary-color);
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  transition: 0.4s;
  background: rgba(250, 245, 240, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

header.active {
  background: rgba(139, 115, 85, 0.95);
  padding: 15px 5%;
  box-shadow: var(--shadow);
}

header.active .logo {
  color: #fff;
}

header.active .navbar a {
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  transition: 0.3s;
  font-family: "Playfair Display", serif;
}

.logo img {
  width: 60px;
  margin-right: 12px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}

.navbar {
  display: flex;
  gap: 10px;
}

.navbar a {
  font-size: 1rem;
  padding: 12px 24px;
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  transition: left 0.4s ease;
  z-index: -1;
}

.navbar a:hover::before {
  left: 0;
}

.navbar a:hover {
  color: var(--text-color);
  transform: translateY(-2px);
}

#menu-icon {
  font-size: 32px;
  cursor: pointer;
  z-index: 10001;
  display: none;
  color: var(--secondary-color);
  transition: 0.3s;
}

/* Home Section */
.home {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
  gap: 3rem;
  color: var(--text-color);
  padding-top: 120px;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.home-text {
  flex: 1 1 25rem;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.home-img {
  flex: 1 1 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.home-img img {
  max-width: 600px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(139, 115, 85, 0.2));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(2deg);
  }
  66% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

.home-text span {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 1rem;
}

.home-text h1 {
  font-size: 4rem;
  color: var(--text-color);
  margin: 10px 0 25px;
  line-height: 1.1;
  font-family: "Playfair Display", serif;
}

.home-text p {
  margin: 1rem 0 3rem;
  font-size: 1.3rem;
  max-width: 550px;
  opacity: 0.8;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: var(--text-color);
  background: var(--primary-color);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: transparent;
  color: var(--text-color);
  letter-spacing: 2.5px;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 115, 85, 0.15);
}

/* About Section (Breakfast) */
.about {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(212,184,160,0.05)" cx="500" cy="500" r="600"/></svg>');
}

.about h1 {
  font-size: 3.5rem;
  color: var(--text-color);
  margin-bottom: 4rem;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.about h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 2px;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.about-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 184, 160, 0.2);
}

.about-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-3);
}

.about-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.about-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.about-box:hover::after {
  left: 100%;
}

.box-img {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
  position: relative;
}

.box-img::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-1);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-box:hover .box-img::before {
  opacity: 1;
}

.box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.4s ease;
}

.about-box:hover .box-img img {
  transform: scale(1.1) rotate(5deg);
}

.about-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 15px 0 10px;
  font-family: "Playfair Display", serif;
}

.about-box p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #8b7355;
  line-height: 1.6;
}

.about-box h2 {
  font-size: 1.8rem;
  color: var(--accent-color);
  letter-spacing: 1px;
  font-weight: 700;
  margin: 10px 0;
}

.veg-tag {
  display: inline-block;
  background: var(--gradient-2);
  color: var(--text-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-top: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Heading Styles */
.heading {
  text-align: center;
  margin-bottom: 4rem;
}

.heading h2 {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #8b7355;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Shop Section (Dinner) */
.shop {
  background: var(--gradient-3);
  position: relative;
  overflow: hidden;
}

.shop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,1000 0,1000"/></svg>');
}

.shop-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.shop-box {
  position: relative;
  box-shadow: var(--shadow);
  border-radius: 20px;
  height: auto;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
  border: 1px solid rgba(212, 184, 160, 0.2);
}

.shop-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.shop-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.shop-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(139, 115, 85, 0.1) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop-box:hover .shop-img::before {
  opacity: 1;
}

.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s ease;
}

.shop-box:hover .shop-img img {
  transform: scale(1.15);
}

.shop-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  padding: 20px 20px 10px;
  font-family: "Playfair Display", serif;
}

.shop-box p {
  font-size: 1rem;
  color: #8b7355;
  padding: 0 20px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.shop-box h2 {
  font-size: 1.6rem;
  color: var(--accent-color);
  letter-spacing: 1px;
  padding: 0 20px 20px;
  font-weight: 700;
}

.shop-box .bxs-cart-add {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 28px;
  padding: 15px;
  color: var(--text-color);
  background: var(--gradient-2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(139, 115, 85, 0.1);
}

.shop-box .bxs-cart-add:hover {
  background: var(--gradient-1);
  transform: scale(1.2) rotate(15deg);
}

/* Customer Reviews */
.customer {
  background: var(--light-color);
  position: relative;
}

.customer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.customer-container .box {
  text-align: center;
  box-shadow: var(--shadow);
  padding: 40px 30px;
  border-radius: 20px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border: 1px solid rgba(212, 184, 160, 0.2);
}

.customer-container .box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.4s ease;
}

.box:hover img {
  transform: scale(1.1);
  border-color: var(--accent-color);
}

.box .stars {
  margin: 15px 0;
}

.box .bx {
  color: #d4b8a0;
  font-size: 1.4rem;
  margin: 0 2px;
}

.box p {
  margin: 20px 0;
  font-style: italic;
  color: #8b7355;
  font-size: 1.1rem;
  line-height: 1.7;
}

.box h2 {
  font-size: 1.4rem;
  color: var(--text-color);
  letter-spacing: 1px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

/* Contact Section */
.contact {
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.1)" cx="200" cy="200" r="400"/></svg>');
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  color: var(--text-color);
}

.contact-form {
  display: flex;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
}

.contact-info p {
  margin: 0.5rem 0 2rem;
  opacity: 0.9;
  font-size: 1.1rem;
  line-height: 1.8;
}

.adress {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.adress i {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.adress span {
  font-size: 1.1rem;
  margin-left: 1rem;
  opacity: 0.9;
}

.social {
  margin-top: 2rem;
  display: flex;
  gap: 15px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social a:hover {
  background: var(--primary-color);
  transform: translateY(-5px) scale(1.1);
}

.contact-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

form input,
textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  outline: none;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(212, 184, 160, 0.3);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

form input:focus,
textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(212, 184, 160, 0.2);
  background: #fff;
  transform: translateY(-2px);
}

form input::placeholder,
textarea::placeholder {
  color: #b89f81;
}

form textarea {
  resize: none;
  height: 150px;
}

form .btn {
  max-width: 100%;
  background: var(--gradient-1);
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 1rem;
}

form .btn:hover {
  background: var(--gradient-3);
  letter-spacing: 2px;
}

/* Copyright */
.copyright {
  padding: 30px;
  text-align: center;
  background: var(--secondary-color);
  color: var(--light-color);
  font-size: 1rem;
}

/* Simple Payment Button */
.payment-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: var(--gradient-1);
  color: var(--text-color);
  padding: 20px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-hover);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  animation: pulse-nude 2s infinite;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(212, 184, 160, 0.3);
}

.payment-button:hover {
  transform: scale(1.1) translateY(-5px);
  background: var(--gradient-2);
  text-decoration: none;
  color: var(--text-color);
  box-shadow: 0 25px 50px rgba(139, 115, 85, 0.2);
}

.payment-button i {
  font-size: 26px;
}

.button-text {
  display: inline-block;
}

@keyframes pulse-nude {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 184, 160, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(212, 184, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 184, 160, 0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .home-text h1 {
    font-size: 3.5rem;
  }
  
  section {
    padding: 80px 5%;
  }
}

@media (max-width: 991px) {
  header {
    padding: 18px 5%;
  }
  
  .home-text h1 {
    font-size: 3rem;
  }
  
  .about h1 {
    font-size: 2.8rem;
  }
  
  .heading h2 {
    font-size: 2.5rem;
  }
  
  .about-container,
  .shop-container,
  .customer-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 5%;
  }
  
  #menu-icon {
    display: block;
  }
  
  header.active #menu-icon {
    color: #fff;
  }
  
  header .navbar {
    position: absolute;
    top: -500px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background: rgba(139, 115, 85, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transition: 0.4s ease;
    text-align: center;
    padding: 20px 0;
  }
  
  .navbar.active {
    top: 100%;
  }
  
  .navbar a {
    padding: 18px;
    display: block;
    color: #fff;
    margin: 5px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .home-text h1 {
    font-size: 2.5rem;
  }
  
  .about h1 {
    font-size: 2.2rem;
  }
  
  .heading h2 {
    font-size: 2.2rem;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
  }
  
  .home {
    text-align: center;
    padding-top: 140px;
    gap: 2rem;
  }
  
  .home-img {
    margin-top: 2rem;
  }
  
  .payment-button {
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .home-text span {
    font-size: 1.1rem;
  }
  
  .home-text h1 {
    font-size: 2.2rem;
  }
  
  .home-text p {
    font-size: 1.1rem;
  }
  
  .about h1,
  .heading h2 {
    font-size: 1.8rem;
  }
  
  .about-container,
  .shop-container,
  .customer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .logo span {
    font-size: 1.4rem;
  }
  
  .logo img {
    width: 50px;
  }
  
  .payment-button {
    bottom: 15px;
    right: 15px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .payment-button i {
    font-size: 22px;
  }
  
  section {
    padding: 60px 5%;
  }
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

/* Loading animation */
.loading {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.loaded {
  opacity: 1;
}