@import url('https://fonts.googleapis.com/css2?family=Rubik+One&display=swap');

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

body {
  background-color: #1b1b1b;
  color: white;
  font-family: 'Rubik One', sans-serif;
}

/* NAVIGATION */
nav {
  background-color: #2a2a2a;
  padding: 14px 40px;
  border-radius: 50px;
  display: flex;
  gap: 35px;
  font-size: 15px; /* Nav size */
  font-weight: normal;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  margin: 25px auto;
}

nav a {
  text-decoration: none;
  color: white;
}

nav a:hover {
  opacity: 0.8;
}

/* CONTAINER */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  text-align: center; /* Center all text */
}

/* HOME PAGE */
h1.hero {
  font-size: 96px; /* Home size */
  line-height: 1.05;
}

/* ABOUT PAGE */
.about-text {
  font-size: 24px; /* About size */
  margin: 25px 0;
  line-height: 1.4;
}

/* CONTACT PAGE */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: 32px; /* Contact banner size */
  margin-bottom: 40px;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  gap: 40px;
}

.contact-content img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.contact-info {
  text-align: left;
}

.contact-info h2 {
  font-size: 32px; /* Evelyn name size */
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 12px; /* Email/Discord size */
  line-height: 1.8;
}

/* FORM */
.contact-form {
  width: 100%;
  max-width: 400px;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  background-color: #3a3a3a;
  border: none;
  padding: 10px;
  color: white;
  font-size: 1rem;
  border-radius: 25px;
}

.contact-form textarea {
  height: 150px;
  border-radius: 15px;
}

/* CONTACT PAGE LAYOUT */
.contact-page {
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  height: calc(100vh - 100px); /* full screen minus nav */
  gap: 80px; /* space between form and info */
  text-align: center;
}

.contact-form-section {
  text-align: center;
}

.contact-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-form {
  width: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  background-color: #3a3a3a;
  border: none;
  padding: 10px;
  color: white;
  font-size: 1rem;
  border-radius: 25px;
}

.contact-form textarea {
  height: 150px;
  border-radius: 15px;
}

.contact-info-section {
  text-align: center;
}

.contact-info-section img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.contact-info-section h2 {
  font-size: 32px;
}

.contact-info-section p {
  font-size: 12px;
  line-height: 1.6;
}

