:root {
  --color-primary: #9E1915;
  --color-secondary: #DE4D2E;
  --color-light: #F5E6D3;
  --color-dark: #2B2B2B;
  --color-accent: #FF8C42;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Montserrat', sans-serif;
  background: 
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%232B2B2B" width="100" height="100"/><path fill="%23333" d="M0 0h100v100H0zM50 50L0 0l50 50L100 0 50 50zm0 0L0 100l50-50L100 100 50 50z"/></svg>');
  background-size: cover;
  color: var(--color-light);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.9) 90%);
  pointer-events: none;
}

.container {
  background: rgba(43, 43, 43, 0.92);
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 850px;
  width: 100%;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 10px 35px rgba(0,0,0,0.7);
  position: relative;
  z-index: 1;
  animation: scaleUp 1.3s ease-in-out;
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.flame-decoration {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(222, 77, 46, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  z-index: -1;
}

.logo {
  margin-bottom: 25px;
}

.logo-img {
  max-width: 350px;
  margin-bottom: 25px;
  filter: drop-shadow(0px 0px 20px rgba(222,77,46,0.8));
  transition: transform 0.5s ease;
  animation: pulse 3s infinite alternate;
}

.logo-img:hover {
  transform: scale(1.03);
}

@keyframes pulse {
  from { filter: drop-shadow(0 0 15px rgba(222,77,46,0.6)); }
  to { filter: drop-shadow(0 0 30px rgba(222,77,46,1)); }
}

.logo h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo p {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-light);
  margin-bottom: 5px;
}

.divider {
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-primary), var(--color-secondary), transparent);
  margin: 25px auto;
  border: none;
}

.construction-message {
  margin-bottom: 30px;
}

.construction-message h2 {
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-weight: 700;
}

.construction-message p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--color-light);
}

.specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.specialty {
  background: linear-gradient(to bottom, var(--color-primary), #7a130f);
  padding: 12px 18px;
  border-radius: 8px;
  min-width: 140px;
  border: 1px solid var(--color-secondary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.specialty:hover {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 18px rgba(222, 77, 46, 0.6);
}

.specialty h3 {
  color: var(--color-light);
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
}

.specialty p {
  color: var(--color-light);
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-info {
  margin-bottom: 25px;
  background: rgba(70, 35, 15, 0.7);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--color-secondary);
}

.contact-info h3 {
  color: var(--color-secondary);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.contact-info p {
  margin-bottom: 8px;
  color: var(--color-light);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 25px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(222, 77, 46, 0.5);
}

.cta:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.social a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--color-primary), #7a130f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: 1px solid var(--color-secondary);
  text-decoration: none;
}

.social a:hover {
  background: linear-gradient(to bottom, var(--color-secondary), var(--color-primary));
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(222, 77, 46, 0.4);
}

.footer {
  margin-top: 25px;
  font-size: 0.9rem;
  color: var(--color-light);
  opacity: 0.8;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 25px;
  }
  
  .logo-img {
    max-width: 280px;
  }
  
  .logo h1 {
    font-size: 2.2rem;
  }
  
  .logo p {
    font-size: 1.1rem;
  }
  
  .construction-message h2 {
    font-size: 1.5rem;
  }
  
  .specialties {
    flex-direction: column;
    align-items: center;
  }
}
