@charset "utf-8";

/*
    Emily & Blake Details Stylesheet
    Author: Jose Sanchez

    Filename: styles4.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;
}

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;

}

/* Header Styles */
.header {
    display: flex;
    flex-direction: column;
    background-image: url(gallery/background.jpg);
    background-size: cover;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 15rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    margin: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
    text-align: center;
}

.header h1 {
    line-height: 2.8rem;
    margin-bottom: 0.5rem 0;
    font-family: "Pinyon Script", cursive;
}

.heart-icon {
    height: 4rem;
    width: 4rem;
    align-self: center;
    margin: 0.5rem 0 1rem 0;
}

/* Main Article Styles*/
.main-article {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7rem;
    margin: 0px 10px;
}

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

/* Information Styles */
.info {
    line-height: 1.7rem;
}

.info h2 {
    margin-top: 40px;
}

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

.venue {
    display: flex;
    align-items: end;
    justify-content: center;
    justify-self: center;
    background-image: url(gallery/venue.jpg);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 16rem;
    border-radius: 10px;
}

button {
    padding: 1rem;
    border: 2px black solid;
    background-color: #c3a278;
    box-shadow: inset rgb(255, 221, 179) 1px 3px,
        inset rgb(113, 96, 73) -1px -3px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 30px;
}

.dress-code {
    padding: 10px;
    margin: 40px 0px;
}

/* Next Page Styles */
.btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #c3a278;
    border-radius: 30px;
    border: 3px solid black;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-family: "Rochester", cursive;
    font-weight: 400;
    box-shadow: 2px 3px black;
    letter-spacing: 5px;
}

.next-page {
    margin: 50px 0;
}

/* Disclaimer Styles */
.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) {

    .header h1 {
        font-size: 3rem;
    }

    .venue {
        height: 30rem;
    }

    button {
        margin-bottom: 50px;
        font-size: 1.2rem;
        
    }

}
