/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Courier Prime', 'Courier New', monospace;
  background: #0d0d0d;
  color: #ccc;
  line-height: 1.6;
}

header {
  background: #0d0d0d;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px dashed rgba(139, 0, 0, 0.5);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  background: #0d0d0d;
  padding: 0 2rem;
}

.logo-container {
  flex: 1;
}

.logo-main {
  height: 48px;
  width: auto;
  aspect-ratio: 16/4;
  background: transparent;
  border-radius: 4px;
  border: none;
}

.logo-small-container {
  flex: 0 0 auto;
  margin-left: 1.5rem;
}

.logo-small {
  height: 40px;
  width: 40px;
  aspect-ratio: 1/1;
  background: transparent;
  border-radius: 50%;
  border: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: #aaa;
  font-weight: 700;
  transition: all 0.2s;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: #ff4444;
  border: 1px dashed rgba(139, 0, 0, 0.6);
  text-shadow: 0 0 5px rgba(255, 68, 68, 0.4);
  background: rgba(139, 0, 0, 0.05);
}

.hero {
  text-align: center;
  padding: 6rem 1rem 4rem 1rem;
  background: #0d0d0d;
  background-image: 
    linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.95)),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm1 1h38v38H1V1z' fill='%23222' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-right: 0.15em solid #ff4444;
  display: inline-block;
  padding-right: 10px;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #ff4444 }
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #aaa;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero p::before {
  content: "> ";
  color: #ff4444;
  margin-right: 0.5rem;
}

.content-section {
  max-width: 800px;
  margin: 4rem auto;
  background: #0a0a0a;
  border: 1px solid #333;
  padding: 2.5rem;
  color: #ccc;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8B0000, transparent);
  opacity: 0.8;
}

.content-section h2 {
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
  display: inline-block;
  letter-spacing: 1px;
}

.content-section h2::before {
  content: "$ ";
  color: #8B0000;
  margin-right: 0.5rem;
}

.para-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.para-card h3 {
  margin-top: 0;
  color: #ff6666;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.para-card p {
  line-height: 1.7;
  color: #bbb;
  margin: 0;
  font-size: 0.95rem;
}

.contact-section {
  text-align: center;
  border: 1px dashed #444;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  max-width: 500px;
  margin: 2rem auto 0 auto;
}

.email-form input[type="email"] {
  padding: 0.8rem 1rem;
  border: 1px solid #444;
  font-family: 'Courier Prime', monospace;
  font-size: 0.95rem;
  flex: 1;
  background: #111;
  color: #fff;
  transition: all 0.2s;
  border-radius: 0; /* Removing rounded corners for terminal look */
}

.email-form input[type="email"]:focus {
  outline: none;
  border-color: #8B0000;
  background: #1a1a1a;
  box-shadow: 0 0 8px rgba(139, 0, 0, 0.2);
}

.email-form button {
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: #8B0000;
  border: 1px solid #8B0000;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0; /* Removing rounded corners */
}

.email-form button:hover {
  background: #8B0000;
  color: #fff;
  box-shadow: 0 0 12px rgba(139, 0, 0, 0.4);
}

footer {
  background: #0d0d0d;
  padding: 3rem 0;
  text-align: center;
  margin-top: 5rem;
  border-top: 1px dashed rgba(139, 0, 0, 0.3);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-content a {
  color: #888;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

.footer-content a:hover {
  color: #ff4444;
  text-decoration: underline;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border: 1px solid #0d0d0d;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Mobile Responsiveness */
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    height: auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    align-items: center;
  }
  
  .logo-small-container {
    margin-left: 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .content-section {
    padding: 1.5rem;
    margin: 2rem 1rem;
    border: 1px dashed #333;
  }
  
  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    white-space: normal;
    border-right: none;
    animation: none;
    display: block;
  }
  
  .email-form {
    flex-direction: column;
    width: 100%;
  }

  .email-form input[type="email"], .email-form button {
    width: 100%;
    box-sizing: border-box;
  }
}
