/* Regular text*/
.playfair-display-regular {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
}

/* Medium text */
.playfair-display-medium {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}

/* Semi-bold text */
.playfair-display-semi-bold {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
}

/* Bold text */
.playfair-display-bold {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
}

/* Extra-bold text */
.playfair-display-extra-bold {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800;
}

/* Black text */
.playfair-display-#C64142 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #FBF5EF;
}

header {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
}

header h1 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    color: #C64142;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 8px 36px;
    border: 1px solid #000;
    border-radius: 20px;
}

nav ul li a {
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    color: #000;
}

nav ul li a:hover {
    color: #C64142;
}

header #contactUs {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: #C64142;
    color: #fff;
    font-size: 0.8rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.section1 {
    display: flex;
    height: 90vh;
    width: 100%;
}

.section1 .left {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.section1 .left h1 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 700;
    color: black;
    font-size: 5rem;
    width: 60%;
}

.section1 .left h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    color: #D78567;
    font-size: 3.5rem;
    width: 60%;
}

.section1 .left p {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    color: #D78567;
    font-size: 1.5rem;
    width: 60%;
    margin-top: 64px;
    letter-spacing: 1.5px;
}

.section1 .left a {
    padding: 6px 0px;
    border: none;
    border-radius: 1.5rem;
    background-color: #D78567;
    color: #fff;
    font-size: 1rem;
    font-family: 'Times New Roman', Times, serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 900;
    cursor: pointer;
    font-size: 1.8rem;
    width: 60%;
    margin-top: 40px;
    letter-spacing: 2px;
    text-decoration: none;
    text-align: center;
}

.section1 .center {
    display: flex;
    flex: 1;
    /* padding-top: 40px; */
    justify-content: right;
    align-items: center;
    z-index: 2;
}

.section1 .center img {
    height: 80%;
    object-fit: cover;
}

.section1 .right {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.section1 .right h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
    color: #D78567;
    font-size: 2.5rem;
    margin-top: 40px;
    width: 75%;
}

.section1 .right p {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    color: #000;
    font-size: 1.2rem;
    margin-top: 12px;
    width: 75%;
    letter-spacing: 1px;
}