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

:root {
  --primary-color: #D35400; /* Rich Terracotta / Orange */
  --secondary-color: #F1C40F; /* Golden Yellow */
  --bg-color: #1A1A1D; /* Premium Dark Background */
  --surface-color: #2D2D30;
  --text-primary: #ecf0f1;
  --text-muted: #95a5a6;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
}

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

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

/* Typography Headings */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: 1px;
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  background: rgba(26, 26, 29, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
}

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

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

.nav-actions button {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: var(--transition);
}

.nav-actions button:hover {
  background: var(--secondary-color);
  color: var(--bg-color);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: url('../img/hero.png') no-repeat center center/cover;
}

.hero::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to bottom, rgba(26,26,29,0.3) 0%, rgba(26,26,29,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: -webkit-linear-gradient(45deg, var(--secondary-color), #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #bdc3c7;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(211, 84, 0, 0.6);
}

/* SECTION */
section {
  padding: 80px 5%;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--secondary-color);
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* PRODUCT CARD */
.product-card {
  background: var(--surface-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: rgba(241, 196, 15, 0.3);
}

.product-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-category {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.btn-add-cart {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* FOOTER */
footer {
  background: #111;
  padding: 60px 5% 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer .footer-logo {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-copyright {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 400;
}

.footer-moin {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-flags {
  font-size: 1.5rem;
}
