@charset "utf-8";

/*
    Emily & Blake Our Story Stylesheet
    Author: Jose Sanchez

    Filename: styles2.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 {
    background-image: url(gallery/proposal.jpg);
    background-position: center;
    background-size: cover;
    height: 15rem;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;

}

.heading h1 {  
    font-size: 5.2rem;
    line-height: 8rem;
    padding: 0px 75px;
    color: white;
    text-shadow: black 3px 3px 6px;
    font-family: "Pinyon Script", cursive;
    font-weight: 300;
}


/*Main Article Styles */
.main-article {
    padding: 0px 30px;
    text-align: center;
}
.main-article h2 {
    font-size: 2.2rem;
    font-family: "Rochester", cursive;
}
.main-article p {
    font-size: 1.2rem;
    line-height: 1.7rem;
}

.icon {
    height: 4rem;
    width: 4rem;
    align-self: center;
}


/* Growing Together Styles */
.growing-together {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding-bottom: 15px;
}

.growing-together h2 {
    margin-bottom: 0;
}

.growing-together p {
    margin-top: 0;
}

.container {
    width: 350px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: black 4px 4px 6px;
}

.image-work {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.container:hover .image-work {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.container:hover .overlay {
    opacity: 1;
}

.overlay-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

/*Proposal Styles*/
.proposal {
    margin-bottom: 70px;
}

.proposal-img {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
    margin-top: 30px;
}

.frame {
    display: flex;
    flex-direction: column;
    background-color: white;
    align-items: center;
    margin-bottom: 40px;
    box-shadow: rgb(103, 103, 103) 3px 3px 7px;
    rotate: 3deg;
}

.frame p {
    margin-top: 0;
    padding: 10px ;
    font-family: "Rochester", cursive;
    font-weight: 600;
}

/* Next Page Styles */
.btn {
    display: inline-block;
    padding: 6px 40px;
    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;
}

.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: 3rem 0;
    }

    .heading h1 {
        word-spacing: 6rem;
        margin-left: 40px;
        font-size: 8rem;
    }

    .container {
        width: 40rem;
        height: 20rem;
    }

    .frame {
        width: 80%;
        justify-self: center;
        box-shadow: rgb(102, 102, 102) 5px 5px 10px;
    }

}



/*  ===========================
    Desktop Styles: 1025px and above
    ===========================
*/

@media only screen and (min-width:1025px) {
    .frame {
        width: 60%;
    }
}