@charset "utf-8";

/*
    Emily & Blake Home Stylesheet
    Author: Jose Sanchez

    Filename: styles1.css
*/

/*  ===========================
    Base Styles: Mobile Styles
    ===========================
*/

/* Font Imports */
.pinyon-script-regular {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.rochester-regular {
  font-family: "Rochester", cursive;
  font-weight: 400;
  font-style: normal;
}



/*HTML and Body Styles*/
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: antiquewhite;
}

/* Menu styles*/
.menu {
    display: block;
    justify-content: center;
    text-align: center;
    margin: 0;
    background-color: #9f8055;
    padding: 10px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}


/* Nav styles */
.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background: #c3a278;
    color: white;
    text-align: center;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 180px;
}

    
    
/* Heading styles */
.heading h1{
    color: rgb(255, 255, 255);
    text-align: center;
    padding-top: 2rem;
    font-size: 3.8rem;
    margin: 0;
    text-shadow: black 3px 3px 5px;
    font-family: "Pinyon Script", cursive;
    font-weight: 300;
}

.heading p {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: black 2px 2px 4px;
}

.heading {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(rgba(0, 0, 0, 0.2)),
                url(gallery/coupleheading.jpg);
    width: 100%;
    height: 18rem;
    background-size: cover;
    background-position: center;
    margin: 0;
}

h2 {
    font-family: "Rochester", cursive;
    font-size: 2rem;
}

/* Welcome Message */
.welcome {
    text-align: center;
    padding: 0px 30px;
    line-height: 1.8rem;
}

.welcome p {
    font-size: 1.2rem;
}

/* Our Story Styles */

.our-story {
    justify-items: center;
    align-items: center;
    margin: 20px;
    text-align: center;
}

.icon {
    height: 4rem;
    width: 4rem;
}


a.button {
    display: flex;
    background: url(gallery/proposal.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    width: 80%;
    max-width: 400px;
    text-shadow: rgb(0, 0, 0) 2px 2px 5px;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 5rem;
    margin: 20px auto;
    padding: 1rem 2rem;
    color: white;
    box-shadow: rgb(0, 0, 0) 2px 2px 5px; 
    line-height: 8rem;
    font-family: "Pinyon Script", cursive;
    font-weight: 300;
}

.disclaimer {
    text-align: center;
}


/* Footer Styles */
footer {
    text-align: center;
    background-color: #9f8055;
    padding: 20px;
    margin-top: 20px;
}



/*
    ====================
    Tablet Screen Styles
    ====================
*/

@media only screen and (min-width: 481px) {

    .heading {
        padding: 5rem 0rem;
        gap: 10rem;
    }

    .heading h1 {
        padding-top: 0;
        font-size: 5rem;
    }

    .heading p {
        margin-top: 3rem;
    }

    .welcome {
        margin: 50px 0px;
    }

    .our-story {
        padding-bottom: 50px;
    }

}
