*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #111111;
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  text-align: center;
}

.logo {
  width: min(260px, 70vw);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(200, 30, 30, 0.35));
}

.title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.coming-soon {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c81e1e;
}

.instagram-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
}

.instagram-link:hover {
  color: #c81e1e;
  transform: scale(1.15);
}

.instagram-icon {
  width: 32px;
  height: 32px;
}

a {
  color: #e8e8e8;
  text-decoration: underline;
  transition: color 0.2s ease;
}

a:hover {
  color: #c81e1e;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #c81e1e;
}

.footer-divider {
  color: #444444;
}

/* Contact Page */
.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
}

.home-link {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 1rem;
}

.logo-small {
  width: min(100px, 25vw);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(200, 30, 30, 0.3));
}

.contact-wrapper {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-heading {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-subtext {
  color: #aaaaaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaaaaa;
}

.form-group input,
.form-group textarea {
  background-color: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 4px;
  color: #ffffff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555555;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c81e1e;
}

.submit-btn {
  background-color: #c81e1e;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.15s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #a01818;
  transform: translateY(-1px);
}

.contact-divider {
  border: none;
  border-top: 1px solid #2a2a2a;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.95rem;
}

.detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c81e1e;
}

/* Privacy Policy / Left-aligned pages */
.left-aligned-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  text-align: justify;
}
