@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
  --primary: #DC8E61;
  --secondary: #F4D3C1;
  --accent: #D46A4B;
  --bg-light: #FFF9F2;
  --glass: rgba(255, 255, 255, 0.7);
  --text-dark: #3E2723;
  --text-muted: #6D4C41;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Nav Styles */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  background: var(--glass);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-container img {
  height: 40px;
  width: auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  background: linear-gradient(135deg, #FFF9F2 0%, #F4D3C1 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 2;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--text-dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(220, 142, 97, 0.3);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 142, 97, 0.4);
}

/* Scroll Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles */
footer {
  background: var(--text-dark);
  color: #FFF;
  padding: 6rem 5% 2rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  text-align: left;
}

.footer-section h3 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #aaa;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

/* Chatbot Styles */
#chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
}

#chatbot-toggle {
  width: 65px;
  height: 65px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.8rem;
  transition: var(--transition);
}

#chatbot-toggle:hover {
  transform: scale(1.1);
}

#chatbot-window {
  position: absolute;
  bottom: 85px;
  right: 0;
  width: 380px;
  height: 550px;
  background: white;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.4s ease-out;
}

#chatbot-header {
  padding: 1.5rem;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

#chatbot-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  padding: 12px 18px;
  border-radius: 20px;
  max-width: 85%;
  font-size: 0.95rem;
  line-height: 1.5;
}

.bot-msg {
  background: #F5F5F7;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.user-msg {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

#chatbot-input {
  padding: 1.2rem;
  border-top: 1px solid #EEE;
  display: flex;
  gap: 12px;
  align-items: center;
}

#chatbot-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 15px;
  background: #f8f8f8;
  border-radius: 25px;
}

#chatbot-input button {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

#chatbot-branding {
  padding: 8px;
  background: #fdfdfd;
  font-size: 0.75rem;
  text-align: center;
  border-top: 1px solid #eee;
  color: #999;
}

#chatbot-branding a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* Products Page Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 5rem 5%;
}

.product-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.product-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product-info {
  padding: 2rem;
}

.product-info h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.product-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    background: white;
  }

  .nav-links {
    gap: 1rem;
    width: 100%;
    justify-content: center;
  }

  .nav-links li a {
    font-size: 0.85rem;
  }

  .hero {
    height: auto;
    padding: 10rem 5% 5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-content {
    animation: none;
  }

  .specialities-grid, .products-grid, .footer-content {
    grid-template-columns: 1fr !important;
  }

  .chef-section {
    flex-direction: column !important;
    padding: 5rem 5% !important;
    text-align: center;
    border-radius: 50px 0 50px 0 !important;
    margin: 3rem 0 !important;
  }

  .chef-section img {
    height: 350px !important;
  }

  #chatbot-window {
    width: calc(100vw - 40px);
    right: 0;
    bottom: 80px;
    height: 450px;
  }
}
