/* style.css */

/* --- CSS Variables --- */
:root {
  --primary: #D4AF37; /* Gold */
  --primary-hover: #b8962c;
  --bg-color: #050505;
  --bg-secondary: #1A1A1A;
  --text-main: #FFFFFF;
  --text-muted: #C9C9C9;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-speed: 0.3s;
}

/* --- Global Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
}

.highlight {
  color: var(--primary);
}

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

ul {
  list-style: none;
}

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

/* --- Reusable Components --- */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #F9D976, #D4AF37);
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 500;
  padding: 12px 30px;
  border: 1px solid var(--primary);
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
}

.glass-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 3rem;
  line-height: 1.2;
}

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: background var(--transition-speed) ease, padding var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
  height: 90px;
}

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

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: var(--text-main);
  transition: all 0.3s;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('assets/images/hero.png') center/cover no-repeat;
  text-align: center;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.4), rgba(5,5,5,0.9));
  z-index: 1;
}

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

.hero-logo {
  max-width: 300px;
  margin: 0 auto 30px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

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

/* --- Features Section --- */
.features {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background: #080808;
  padding: 20px 40px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.feature-card {
  text-align: center;
  padding: 5px;
  transition: transform var(--transition-speed) ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .material-symbols-outlined {
  font-size: 45px;
  color: var(--primary);
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.feature-card h3 {
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* --- About Section --- */
.about {
  position: relative;
  overflow: hidden;
  background: url('assets/images/about.png') center/cover no-repeat;
}

.about .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-content {
  max-width: 50%;
}

.about-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 40px;
  color: var(--primary);
  margin: 0 auto 15px;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}



/* --- Products Section --- */
.products {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  padding: 30px 15px;
  text-align: center;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111; /* Slightly darker than secondary */
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  border-color: var(--primary);
}

.product-image-wrap {
  width: 100%;
  height: 220px;
  background: #FFFFFF;
  border-radius: 12px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.5s ease;
  position: relative;
}

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

.product-image-wrap img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.1);
}

.product-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
}

.products .btn-container {
  text-align: center;
}

/* --- Safety Section --- */
.safety {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.safety-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.safety-intro {
  flex: 0 0 300px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.shield-icon {
  font-size: 60px;
  color: var(--primary);
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.safety-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.safety-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.safety-tips {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tip-card {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tip-icon {
  font-size: 40px;
  color: var(--primary);
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.tip-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}

/* --- CTA Section --- */
.cta {
  position: relative;
  background: url('assets/images/ft.png') center/cover no-repeat;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 0;
}

.cta-content {
  max-width: 50%;
  text-align: left;
}

.cta-content h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  color: #1A1A1A;
}

.cta-content p {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 30px;
  font-weight: 500;
}

.cta-content .btn-primary {
  background: #000;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 12px 30px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.cta-content .btn-primary:hover {
  background: var(--primary);
  color: #000;
}

/* --- Footer --- */
footer {
  background: #000;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 60px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all var(--transition-speed) ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}
}


/* --- Responsive Media Queries --- */

/* Desktop (1366px and below) */
@media (max-width: 1366px) {
  .hero h1 { font-size: 4rem; }
  .section-title, .about-title, .cta-content h2 { font-size: 2.8rem; }
  .features-grid { padding: 30px; gap: 15px; }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .about .container { flex-direction: column; text-align: center; }
  .stats-grid { justify-content: center; }
  
  .safety-wrapper { flex-direction: column; text-align: center; padding: 30px; }
  .safety-intro { flex: auto; flex-direction: column; align-items: center; margin-bottom: 30px; }
  .safety-tips { flex-wrap: wrap; justify-content: center; gap: 30px; }
  
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  
  .cta-wrapper { justify-content: center; text-align: center; }
  .cta-content { max-width: 80%; text-align: center; }
  .about-content { max-width: 100%; }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  .menu-toggle { display: flex; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #050505;
    flex-direction: column;
    padding-top: 100px;
    align-items: center;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }
  .nav-links.active { right: 0; }
  
  .hero h1 { font-size: 2.8rem; }
  .section-title, .about-title, .cta-content h2 { font-size: 2.2rem; }
  
  .features { padding: 40px 0; margin-top: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  
  .footer-content { flex-direction: column; gap: 30px; }
  
  .about {
    background: linear-gradient(rgba(5,5,5,0.7), rgba(5,5,5,0.7)), url('assets/images/about.png') center/cover no-repeat;
  }
  .about-image { display: none; }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title, .about-title, .cta-content h2 { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .safety-tips { flex-direction: column; align-items: center; }
  .tip-card { flex-direction: column; text-align: center; }
  .cta-content { max-width: 100%; }
}

@media (max-width: 375px) {
  .hero h1 { font-size: 2rem; }
  .btn-primary { padding: 12px 25px; font-size: 0.9rem; }
}
