:root {
  /* Colors */
  --bg-dark: #121212;
  --bg-darker: #0a0a0a;
  --bg-card: #1e1e1e;

  --primary-red: #E60000;
  /* HOFFEN Red */
  --primary-red-dim: #b30000;
  --accent-yellow: #FFD700;
  /* From the '1' in HOFFEN */

  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --border-color: #333333;

  /* Typography */
  --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Inter', 'Roboto', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.footer-bottom a {
	display: flex;
	align-items: center;
	justify-content: right; 
	gap: 15px;
	margin-top: 20px;
}
.footer-bottom a img {
	width: 50px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}
.catalog-section {
	margin-top: 20px;
}


/* Utilities */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  color: #FFFFFF;
  border-color: var(--primary-red);
	background: none;
}

.btn-primary:hover {
  background-color: transparent;
}

.btn-outline {
  border-color: #FFFF00;
  color: #FFFF00;
}

.btn-outline:hover {
    border-color: #FFFFff;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent-yellow);
}

/* Header */
header {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

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

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

.logo img {
  display: block;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

nav a:hover,
nav a.active {
  color: var(--primary-red);
}

/* Footer */
footer {
  background-color: var(--bg-darker);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--primary-red);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  /* Dark gradient background */
  background-image: url("../img/main.png");
	background-repeat: no-repeat;
  overflow: hidden;
	    background-size: cover;
	    background-position: top;
  padding: 0 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
  transform: rotate(-15deg);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero .highlight {
  color: #FFFF00;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Categories Section */
.categories-section {
  padding: 80px 20px;
  background-color: var(--bg-dark);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.category-card {
  background-color: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red-dim);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

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

/* Trust Section */
.trust-section {
  padding: 80px 20px;
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  text-align: center;
}

.trust-item h3 {
  color: var(--primary-red);
  font-size: 1.4rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 100px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), #1a1a1a;
  padding: 80px 20px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.page-header p {
  color: var(--text-muted);
}

/* Catalog Filters */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-red);
  color: var(--bg-darker);
  border-color: var(--primary-red);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding-bottom: 80px;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red-dim);
}

.product-image {
  position: relative;
  height: 450px;
  overflow: hidden;
  background-color: #000;
}

.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);
  opacity: 0.7;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-main);
  text-transform: none;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  background-color: rgba(255, 77, 0, 0.1);
  color: var(--accent-yellow);
  border-radius: 4px;
  text-transform: uppercase;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* About Page */
.about-section {
  padding: 80px 20px;
  background-color: var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-red);
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  background-color: var(--bg-card);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-yellow);
  margin-bottom: 5px;
}

.stat-item p {
  color: var(--text-main);
  font-weight: 500;
}

/* Mission Section */
.mission-section {
  padding: 80px 20px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.mission-card {
  padding: 30px;
  background-color: var(--bg-dark);
  border-left: 3px solid var(--primary-red);
}

.mission-card h3 {
  color: var(--text-main);
  margin-bottom: 15px;
}

.mission-card p {
  color: var(--text-muted);
}

/* Contact Page */
.contact-section {
  padding: 80px 20px;
  background-color: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

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

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.info-intro {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.info-item {
  margin-bottom: 30px;
}

.info-item h4 {
  color: var(--primary-red);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.info-item p {
  color: var(--text-main);
}

/* Contact Form */
.contact-form-wrapper {
  background-color: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 30px;
  color: var(--text-main);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: var(--bg-darker);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-body);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding-top: 80px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  nav a {
    font-size: 1.2rem;
  }

  /* Hamburger Animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Additional Responsive Polish */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .category-card {
    padding: 20px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .form-group label {
    font-size: 0.85rem;
  }
}

/* Tablet & Mini Laptop (Landscape) */
@media (max-width: 1024px) {
  :root {
    --section-padding: 60px 20px;
  }

  .container {
    max-width: 960px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  /* Compact Nav for smaller desktops/tablets */
  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 0.9rem;
  }

  /* Switch detailed grids to stack earlier if needed */
  .contact-grid,
  .about-grid {
    gap: 40px;
  }
}

/* Tablet (Portrait) Refinements */
@media (max-width: 900px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-text,
  .contact-info {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .contact-info h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}html { scroll-behavior: smooth; }
