@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

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

:root {
    --primary-color: rgb(34, 34, 34);
}

body
{
    background:rgb(240, 237, 237);
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    color:var(--primary-color);
}

.header {
    width:100vw;
    height:100%;
    background-size: cover;
    background-position: center;
    color:var(--primary-color);
    display:flex;
    flex-direction:column;
    align-items: center;
}

.header *{
    z-index:1;
}

.home {
    font-weight:300;
    font-size: 35px;
    text-transform:uppercase;
    margin:30px 0 30px;
}

.navbar {
    margin-bottom:50px;
}

.navbar a {
    font-size: 18px;
    color:var(--primary-color);
    padding: 10px;
}

.wrapper {
    width:100%;
    display:flex;
    justify-content:center;
    padding:0px;
}

.container {
    display: flex;
    flex-direction:row;
    justify-content:center;
    font-family: 'Cormorant Garamond', serif;
    color:var(--primary-color);
    line-height: 1.5rem;
    padding: 50px 100px 50px 100px;
    gap:5rem;
    width: 100%;
}

h1 {
    font-size:40px;
    font-weight:500;
    text-transform:uppercase;
    padding-bottom: 4rem;
}

p {
    font-size: 1.4rem;
    font-weight:400;
}

p:nth-child(4){
    padding-bottom:40px;
}

.breakline {
    width:30px;
    height:2px;
    background:var(--primary-color);
    margin: 40px 0 40px;
}

h3, .container a {
    font-family: serif;
    font-weight:100;
    font-size: 16px;
}

.container a {
    text-decoration:underline;
}

.form-item {
    display:flex;
    flex-direction: column;
}

.inline {
    display: flex;
    gap:1rem;
}

.first-name-wrapper,
.last-name-wrapper{
    display:flex;
    flex-direction:column;
    width:100%;
}

.form-label {
    font-size:20px;
    font-weight:500;
    margin-top:1rem;
}

.form-input {
    display:flex;
    height: 1.8rem;
    width:70%;
    outline:none;
    margin-bottom: 1rem;
}

.form-input, 
.first-name, 
.last-name{
    font-size:16px;
    padding-left:.5rem;
}

.container-left,
.container-right {
    width:100%;
}


.inline {
    margin-bottom:1rem;
}

.inline input{
    height: 1.8rem;
    outline:none;
}

span {
    font-size:18px;
    font-weight:600;
}

.message{
    min-width:70%;
    max-width:100px;
    height:200px;
    padding:.5rem;
}

hr {
    color:rgb(199, 199, 199);
    margin:2rem 0 1.5rem 0;
}

.event-date{
    display:flex;
    padding:.5rem;
    margin-bottom:1.5rem;
}

.venue {
    padding:1rem;
    margin-bottom:1rem;
}

.services-container {
    margin-top:2rem;
}

ul {
    margin-top:-1.5rem;
    margin-left:1rem;
    margin-bottom:1.5rem;
}

li {
    list-style-type: none;
}

select {
    height:2rem;
    padding: 1 1.5rem;
    color:--primary-color;
    background:#fff;
}

.checkbox {
    margin-right:.5rem;
}

button {
    width: 13%;
    margin: 40px 50%;
}

button:hover {
    cursor:pointer;
}

/* FOOTER SECTION */
.bottom{
    width:100%;
    height:200px;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin-bottom:100px;
}

.name {
    text-transform:uppercase;
    font-size: 30px;
    margin-top:90px;
    margin-bottom: 40px;
}

.occupation {
    font-style:italic;
}

.break-line {
    width:20px;
    border: 1px solid black;
    margin: 50px;
}

.email {
    color:black;
    margin-bottom:2rem;
}

/* MEDIA QUERIES */
@media(max-width:830px) {
    .wrapper{
        padding: 1rem;
    }
    .container {
        flex-direction:column;
        padding:0;
        margin-top:3rem;
    }
    .container-left {
        width:80%;
    }
    .container-right {
        width:60%;
    }
    .inline {
        flex-direction:column;
    }

    .first-name,
    .last-name {
        width: 100%;
    }
}

@media(max-width:650px) {
    .about-image {
        display:none;
    }
}

@media(max-width:450px) {
    .container-left {
        width:100%;
    }
    .container-right {
        width:100%;
    }
}





