/* 
* Aylmer Tee - Main Stylesheet
* Website: aylmertee.store
* Description: Premium Brazilian Tea Store
*/

/* Base Styles */
:root {
  --primary-color: #2e7d32;
  --secondary-color: #81c784;
  --accent-color: #ffab00;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-color: #f9f9f9;
  --footer-color: #1b5e20;
  --card-color: #ffffff;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--light-text);
}

.primary-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

/* Header Styles */
.header {
  background-color: var(--card-color);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  width: 50px;
  height: 50px;
}

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

.main-nav {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

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

.nav-links a {
  font-weight: 600;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--light-text);
  margin-top: 80px;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-align: center;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: var(--card-color);
}

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

.product-card {
  background-color: var(--background-color);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Sustainability Section */
.sustainability {
  padding: 5rem 0;
  background-color: var(--background-color);
}

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

.sustainability-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.sustainability-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.sustainability-list li {
  background-color: var(--card-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  transition: var(--transition);
}

.sustainability-list li:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
}

/* Games Section */
.games {
  padding: 5rem 0;
  background-color: var(--card-color);
}

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

.games-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.games-list, .news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.games-list li, .news-list li {
  background-color: var(--background-color);
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.games-list li:hover, .news-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.games-list a, .news-list a {
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--background-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3, .contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

/* Footer */
.footer {
  background-color: var(--footer-color);
  color: var(--light-text);
  padding: 3rem 0;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-logo img {
  width: 80px;
  height: 80px;
}

.footer-links h3, .footer-social h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--light-text);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-text);
  transition: var(--transition);
}

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