/* HEADER */
.header-container {
  background-color: #fff1dbf9;
  height: 1.5in;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-container h1 {
  font-family: 'Allura';
  letter-spacing: 5px;
  font-size: 4.5rem;
  color: #c7d7c3;
  margin: 0;
}
/*BACKGROUND COLOR*/
body {
  font-family: 'Lora', serif;
  background-color: #c7d7c3;
  margin: 0;
}
/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

nav a:hover {
  color: #e8a0a0;
}

/* SECTION LAYOUT */
.oval-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

/* OVAL BASE STYLE */
.oval {
  width: 350px;
  height: 500px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

/* IMAGE INSIDE OVAL */
.oval-img {
  width: 350px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
}

/* COLOR VARIATIONS */
.pink {
  background-color: #f9d6e8;
}

.beige {
  background-color: #fff1dbf9;
}

.blue {
  background-color: #9ac8eccf;
}

/* INTRO BOX */
.intro {
  flex-direction: column;
  text-align: center;
  padding: 3rem;
  box-sizing: border-box;
}

/* CONTACT FORM CONTAINER */
.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  padding: 20px;
}

/* ACTUAL FORM BOX */
.form-box {
  width: 100%;
  max-width: 500px;
  background-color: #fde8c8;
  padding: 2rem;
  border-radius: 20px;
  box-sizing: border-box;
}

/* This stacks them*/
label {
  display:block;
  margin-top: 1rem;
}

/* INPUT FIELDS */
input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
}

/* SUBMIT BUTTON */
input[type=submit] {
  width: 100%;
  background-color: #e8a0a0;
  color: #1a1a1a;
  padding: 12px;
  margin-top: 1.5rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  transition: 0.3s ease;
}

input[type=submit]:hover {
  background-color: #d88c8c;
}

/* ABOUT SECTION */
.about-card {
  background-color: #ffffffcc;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-title {
  text-align: center;
  font-size: 3rem;
  font-family: 'Lora', serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.about-text {
  text-align: center;
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto; 
  line-height: 1.5;
  margin-top: 1rem;
}

/* TUTORIAL SECTION */
.tutorial-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem;
}

/* EACH ROW (image + text) */
.tutorial-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* makes it responsive */
}

/* TEXT CARD */
.tutorial-card {
  background-color: #ffffffcc;
  width: 300px;
  padding: 1.5rem;
  border-radius: 20px;
  font-family: 'Lora', serif;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* TITLE */
.tutorial-card h3 {
  margin-bottom: 1rem;
  text-align: center;
}

/* NUMBERED LIST */
.tutorial-card ol {
  padding-left: 1.2rem;
  line-height: 1.6;
}

/* ALTERNATE ROW DIRECTION */
.tutorial-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* FOOTER */
.footer {
  background-color: #fff1dbf9; 
  text-align: center;
  padding: 1rem 1rem;
  border-radius: 20px 20px 0 0;
}

/* ASK ME ANYTHING BUTTON */
.ask-box {
  display: inline-flex;
  margin: 0 auto;
  background-color: #c7d7c3;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  padding: 1rem 3rem;
  border-radius: 20px;
  transition: 0.3s ease;
}

.ask-box:hover {
  background-color: #c79bbd;
}

/* DIVIDER LINE */
.footer-line {
  margin: 2rem auto;
  width: 60%;
  border: none;
  border-top: 1px solid #1a1a1a;
  opacity: 0.3;
}

/* COPYRIGHT TEXT */
.copyright {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  opacity: 0.7;
}