:root {
  --primary-color: #d35400;
  /* Burnt Orange/Saffron */
  --secondary-color: #2c3e50;
  /* Dark Slate Blue */
  --accent-color: #f1c40f;
  /* Gold */
  --text-color: #333333;
  --light-bg: #fcfaf5;
  /* Off-white/Cream */
  --dark-bg: #1a1a1a;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.announcement-bar {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  height: 80px;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary-color);
  line-height: 1;
  margin: 0;
}

.logo span {
  font-size: 0.8rem;
  display: block;
  letter-spacing: 3px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 0.4rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 1rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: var(--secondary-color);
  align-items: center;
}

.nav-icons .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-icons a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 85vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/hero_indian_feast.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  /* Subtle backdrop for readability */
  backdrop-filter: blur(2px);
  border-radius: 8px;
}

.hero h2 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: #b04600;
}

.btn-secondary {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 3rem 5%;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.feature-item {
  text-align: center;
  padding: 1rem;
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: #777;
}

/* Collections */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.collections {
  padding: 5rem 5%;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  group;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.1);
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-info {
  transform: translateY(0);
}

.collection-info h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.btn-link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.collection-card:hover .btn-link {
  opacity: 1;
}

/* Products Showcase */
.products-showcase {
  padding: 5rem 5%;
  background-color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-details {
  padding: 1.5rem;
  text-align: center;
}

.category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.product-details h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.price {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* About Section */
.about-section {
  padding: 6rem 5%;
  display: flex;
  justify-content: center;
  background-color: var(--light-bg);
  text-align: center;
}

.about-content {
  max-width: 900px;
}

.about-content h5 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-img {
  margin-top: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Newsletter */
.newsletter {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 4rem 5%;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter p {
  color: #ddd;
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.subscribe-form input {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  width: 300px;
  font-size: 1rem;
}

.subscribe-form button {
  border: none;
}

/* Footer */
footer {
  background-color: #222;
  color: #fff;
  padding: 5rem 5% 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #444;
  padding-bottom: 3rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p {
  color: #aaa;
  line-height: 1.6;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #aaa;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {

  .nav-links,
  .nav-icons {
    display: none;
    /* Simplification for mobile */
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-form input {
    width: 100%;
  }
}
