/* Reset & Base Styles */

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

:root {
  --primary-color: #D4A574;
  --secondary-color: #8B4513;
  --accent-color: #FF6B6B;
  --text-color: #333;
  --light-color: #FFF8F0;
  --dark-color: #2C1810;
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--dark-color);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Navigation */

.navbar {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.logo i {
  color: var(--primary-color);
  font-size: 1.8rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

.nav-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */

.hero {
  height: 80vh;
  background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)), url('images/tea-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 70px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

/* Menu Section */

.menu-section {
  padding: 5rem 0;
  background-color: white;
}

.menu-category {
  margin-bottom: 4rem;
}

.menu-category h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-category h3 i {
  color: var(--primary-color);
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.menu-item:hover {
  transform: translateY(-5px);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.item-header h4 {
  font-size: 1.3rem;
  color: var(--dark-color);
}

.price {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Flavor Grid */

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.flavor-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.flavor-item:hover {
  transform: translateY(-5px);
}

.flavor-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.flavor-icon.vanilla {
  background-color: #F3E5AB;
}

.flavor-icon.chocolate {
  background-color: #8B4513;
}

.flavor-icon.butterscotch {
  background-color: #E97451;
}

.flavor-icon.strawberry {
  background-color: #FF6B8B;
}

.flavor-icon.blueberry {
  background-color: #4F86F7;
}

.flavor-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* About Section */

.about-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-color) 0%, #f9f3e9 100%);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Contact Section */

.contact-section {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin: 1.5rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p {
  color: #666;
  margin-bottom: 1rem;
}

.map-placeholder {
  background: var(--light-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map {
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f8f4e9, #f0e6d6);
}

.map-content {
  text-align: center;
  color: var(--secondary-color);
}

.map-content i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* Footer */

.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--primary-color);
}

.footer p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: var(--transition);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #999;
}

/* Responsive Design */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .flavor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .feature {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .flavor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 1.1rem;
  }
}

