﻿/* ============================
   GLOBAL ROOT VARIABLES
============================ */
:root {
  --bg-dark: #0b0b0b;
  --text-light: #f5f5f5;
  --accent-red: #ff0000;
  --accent-gold: #d4af37;
  --font-header: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================
   GLOBAL BODY STYLING
============================ */
body {
  margin: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
}

/* ============================
   HEADER - FIXED CENTERING
============================ */
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #000;
  border-bottom: 2px solid var(--accent-red);
}

.logo {
  justify-self: start;
}

.logo img {
  height: 150px;
}

.contact-info {
  text-align: center;
  justify-self: center;
}

.contact-info h1 {
  font-family: var(--font-header);
  font-size: 2.8rem;
  margin: 0;
  color: var(--accent-gold);
}

.contact-info p {
  margin: 0.3rem 0;
  font-size: 1rem;
}

.email-link {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.social {
  text-align: right;
  justify-self: end;
}

.social img {
  height: 60px;
  margin-top: 0.5rem;
}

/* ============================
   NAVIGATION
============================ */
nav {
  background-color: #000;
  border-bottom: 2px solid var(--accent-red);
  padding: 0.75rem 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav ul li a {
  color: var(--accent-gold);
  font-family: var(--font-header);
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #fff;
}

/* ============================
   SECTIONS
============================ */
section {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-family: var(--font-header);
  color: var(--accent-red);
  margin-bottom: 1rem;
}

/* ============================
   CONTACT BOX
============================ */
.contact-box {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: left;
}

.contact-box p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* ============================
   CTA BUTTONS
============================ */
.cta a,
.cta button {
  display: inline-block;
  background-color: var(--accent-red);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
}

.cta a:hover,
.cta button:hover {
  background-color: #cc0000;
}

/* ============================
   GRID + CARDS
============================ */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
}

.card h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.card p {
  font-size: 1rem;
  color: var(--text-light);
}

/* ============================
   FOOTER
============================ */
footer {
  background-color: #000;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo img {
  height: 120px;
}

.footer-info p {
  margin: 0.3rem 0;
}

.footer-social img {
  height: 50px;
}

.footer-copy {
  margin-top: 1.5rem;
  opacity: 0.8;
}

/* ============================
   ADDITIONAL STYLES
============================ */
.request-part-btn {
  background: #cc0000;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.request-part-btn:hover {
  background: #aa0000;
}

#confirmation-screen.open {
  display: block !important;
}