@charset "utf-8";

/*
    Emily & Blake Gallery Stylesheet
    Author: Jose Sanchez

    Filename: styles3.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 */
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    text-align: center;
    background-color: #c3a278;
    margin: 20px;
    padding: 20px 0px;
    border-radius: 50px 0px;
    border: 8px double antiquewhite;
    font-family: "Pinyon Script", cursive;
    font-size: 2.3rem;
}

.camera-icon {
    display: flex;
    justify-self: center;
    width: 7rem;
}

/* Gallery Styles */
.gallery {
    box-sizing: border-box;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 10px;
    justify-items: center;
    padding: 20px;
}


.grid-container img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1.5;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: rgb(96, 96, 96) 2px 2px 5px;
}

img:hover {
    box-shadow: rgb(67, 67, 67) 3px 3px 8px,
                rgb(67, 67, 67) -3px -3px 8px;
    transform: scale(1.1);
}

/* Next Page Styles */
.next-page {
    text-align: center;
}

.next-page h2 {
    font-size: 2.2rem;
    font-family: "Rochester", cursive;
}

.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;
    margin-bottom: 30px;
}

.disclaimer {
    text-align: center;
}

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




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

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

    .grid-container img {
        width: 90%; 
    }

}