@import url('fonts.css');

/* Basic reset and setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  line-height: calc(100% + 9px);
}

html {
  font-size: 15px;
  background-color: #C6B4A4;
  box-shadow: 0 10rem 22rem -11rem #201814 inset;
  min-height: 100%;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #242220;
  font-weight: 350;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 450;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -2px;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

/* Layout structure */
.live-area {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 2vw;
}

header {
  padding: 2rem 20px;
  text-align: center;
}

.tagline {
  font-family: 'Montserrat-Italic', Arial, sans-serif;
  padding: 0% 20%;
}

footer {
  padding: 2rem 20px;
  text-align: center;
}

/* Sections */
section {
  
}

/* Links */
a {
  color: #F2EFEA;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none;
}

main a {
  color: #70655E;
  font-weight: bold;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 0.25rem 0.75rem 0.25rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #70655E;
}

.time {
  text-align: right;
  padding-left: 13.75rem;
}

th {
  font-weight: bold;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: #F2EFEA;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #B0A498;
  text-decoration: none;
}

.btn-rounded {
  display: inline-block;
  padding: 0.15rem 0.875rem;
  background-color: rgba(0, 0, 0, 0.4);
  color: #F2EFEA;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 450;
  transition: background-color 0.3s ease;
  font-size: 90%;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background-color: #B0A498;
  padding: 1.5rem;
  border-radius: 5px;
  color: #F2EFEA;
  font-family: 'Montserrat-Italic', Arial, sans-serif;
}

/* Bio section layout */
.bio-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.bio-text {
  flex: 2;
}

/* Responsive design */
/* @media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .bio-section {
    flex-direction: column;
  }

  .testimonials {
    gap: 1rem;
  }

  table {
    font-size: 0.9rem;
  }

  th,
  td {
    padding: 0.5rem;
  }
} */

.parent {
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px) minmax(0, 320px) minmax(0, 420px) 1fr;
  grid-template-rows: repeat(5, auto);
  grid-column-gap: 4vw;
  grid-row-gap: 6vw;
  width: 100%;
}

.div1 {
  grid-area: 1 / 2 / 2 / 4;
  padding-right: 5vw;
  padding-top: 5vw;
}

.div2 {
  grid-area: 1 / 4 / 3 / 6;
  margin-bottom: -6vw;
  margin-top: -6vw;
  background-image: url(../images/2.jpg);
  background-size: cover;
  background-position: 0 0;
  border-radius: 100% 0 0 100%;
}

.div3 {
  grid-area: 3 / 3 / 4 / 5;
  margin-top: 6vw;
  padding-right: 11rem;
}

.div4 {
  grid-area: 2 / 1 / 4 / 3;
  /* margin-bottom: -6vw;
  margin-top: -6vw; */
  background-image: url(../images/19.jpg);
  background-size: cover;
  background-position: 100% 100%;
  border-radius: 100% 100% 0 0;
}

.div5 {
  grid-area: 4 / 2 / 5 / 5;
}
