@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary: #e53935;
    --primary-light: #ff3d3d;
    --primary-dark: #b71c1c;

    --background-dark: #000;
    --background-medium: #111;
    --background-light: #1a1a1a;

    --text-light: #f5f5f7;
    --text-muted: #bbb;

    --font-base: 'Poppins', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    background-color: var(--background-medium);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4%;
    background: var(--background-dark);
    box-shadow: 0 3px 12px rgba(0,0,0,0.7);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    width: 100px;
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    color: var(--text-light);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav a:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}
.contact-container {
  max-width: 700px;
  margin: 3rem auto;
  background: var(--background-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  text-align: center;
}

.contact-container h1 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-container p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

input, textarea {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 2px solid #333;
  background: #222;
  color: var(--text-light);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229,57,53,0.3);
  background: #1e1e1e;
}

textarea {
  resize: none;
}

button {
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-size: 1.1rem;
  margin-top: 1rem;
}

button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

footer {
    background: var(--background-dark);
    color: var(--text-light);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--primary);
    transform: scale(1.2);
}


@media (max-width: 600px) {
  .contact-container {
    padding: 1.5rem;
  }

  .contact-container h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2%;
    }
    
    nav ul {
        gap: 1.5rem;
    }
  }
  @media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
        footer {
        padding: 2rem 1rem;
    }

    .social-links {
        gap: 1.2rem;
    }
  }