/* instrument-serif-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/instrument-serif-v5-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* instrument-serif-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/instrument-serif-v5-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {font-size: 16px;}

body {
  background-image:url("img/noisy.png");
  font-family: 'Inter','Helvetica', sans-serif;
  font-weight: false;
  line-height: 1.65;
  overflow-x:hidden;
  margin:10px 0;
}

.home {
    margin: 10px 0px;
    background-image:url("img/noisy.png");
    background-repeat: repeat;
    background-size:200px;
}

p {
  font-size: 1em;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Inter', sans-serif;
  font-weight: true;
  line-height: 1.15;
}

h1,
.text-size-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 0;
  font-size: 3.05em;
}

h2,
.text-size-h2 { font-size: 2.44em; }

h3,
.text-size-h3 { font-size: 1.95em; }

h4,
.text-size-h4 { font-size: 1.56em; }

h5,
.text-size-h5 { font-size: 1.25em; }

.text-caption { font-size: 0.8em; }

small,
.text-small {
  font-size: 0.64em;
}
              

body{
    background-color: #fdfaea;
    width:cover;
    height: 600px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.home {
    margin: 0px 0px 0px 0px;
    padding-bottom:50px;
}

/* ------------------------------------ animations ------------------------------*/

@keyframes fadein{
    from{
        opacity:0;
    }
    to{
        opacity:100%;
    }
}

@keyframes slideinfade{
    from{
        opacity:0;
        transform: translateY(20px);
    }
    to{
        opacity:100%;
        transform: translateY(0px);
    }
}

@keyframes still{
    from{
        opacity:100%;
    }
    to{
        opacity:100%;
    }
}
/* ------------------------------------ header / nav ----------------------------*/

.header h1{
    font-family: 'Instrument Serif','Helvetica', 'Arial', sans-serif;
    font-size: 6em;
    font-weight:300;
    letter-spacing:-3px;
    color:#5c839b;
    margin: 10px 0 10px 0;
    text-align:left;
    width:fit-content;
}


.header {
    display:flex;
    flex-direction:row;
    align-items: center;
    margin:5px auto 14px auto;
    justify-content: space-between;
    width: 95%;
}

.home .header {
    opacity:0%;
    animation:fadein 1s ease-in;
    animation-delay:0.2s;
    animation-fill-mode: forwards;
    margin-top:5px;
}

.header a{
    text-decoration:none;
    color:#5c839b;
}

.nav {
    margin-top: 20px;
    height: fit-content;
    margin-right:0;
}

.nav ul{
    font-family: 'Inter', 'Helvetica', sans-serif;
    display:flex;
    flex-direction: row;
    gap:75px;
    justify-content:end;
    margin: 8px 0 10px 0;
    width: fit-content;
    padding:0;
}
.nav li{
    color:#5c839b;
    text-decoration: none;
    list-style: none;
    font-size: 1.25em;
    padding: 0 0px 0 0px;
    letter-spacing: 0px;
    font-weight:500;
    text-align:center;
    margin:0;
    width:fit-content;
}

.nav a {
    color:#5c839b;
    border: 2px solid #5c839b;
    border-radius: 30px;
    height: 35px;
    padding: 3px 15px 5px 15px;
    text-decoration: none;
}

.nav-button:hover{
    color:#fdfaea;
    background-color:#5c839b;
    transition: all 0.1s ease-in-out;
}

.login a:hover{
    color:#fdfaea;
    background-color:#5c839b;
    transition: all 0.1s ease-in-out;
}

/*-------------------------- hero -------------------------------*/

.hero {
    opacity:0%;
    animation: slideinfade 1s ease-in-out;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    background-image: url(img/homepage/hero-img.jpg);
    background-size:cover;
    background-position-y: bottom;
    background-blend-mode: multiply;
    height:700px;
    width:86%;
    display:flex;
    justify-content:center;
    margin: 0 auto;
    background-color: #bbd8e9;
    padding: 30px 90px;
    border-radius: 35px;
}

.hero h2{
    font-family: 'Instrument Serif', 'Garamond', serif;
    font-size:8em;
    font-weight:500;
    letter-spacing:-2px;
    line-height: 110px;
    -webkit-text-stroke: 1px black;
    text-shadow: 3px 1px black;
    color:#fdfaea;
    width: 80%;
    margin-bottom:10px;
    text-align:center;
    margin-top:0;
    padding-top:0;
    overflow:hidden;
}

.hero-info{
    opacity:0%;
    animation: slideinfade 1.2s ease-in-out;
    animation-delay:1s;
    animation-fill-mode: forwards;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    margin:0 auto;
}

.comfort{
    font-style:italic;
}

.comfort:hover{
    color: #fff9a4;
    text-decoration-line: underline;
    text-decoration-thickness: 4px;
    text-decoration-style: wavy;
    text-decoration-color: #fff9a4;
    cursor:default;
    transition: all 0.3s ease;
}

.hero p{
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-weight:300;
    color:#fdfaea;
    font-size:1.1em;
    line-height:21px;
    width:68%;
    text-align:center;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.575);
}

.cta-text{
    font-weight:600;
}

/*search bar*/

.hero-search{
    display:flex;
    flex-direction:column;
    justify-content:center;
    width:70%;
}

.hero-search form{
    display:flex;
    justify-content:center;
    margin:0 auto;
    flex-direction:row;
    width: 100%;
}

.hero-search select{
    width: 55%;
    height: 45px;
    border-radius: 30px 0px 0px 30px;;
    border:none;
    padding-left: 25px;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-size:1.05em;

}

.hero-search button{
    border:none;
    border-radius: 0 30px 30px 0;
    width:100px;
    height:45px;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-size:1.05em;
    font-weight:500;
    letter-spacing:1px;
    color:#fdfaea;
    background-color:#5c839b;

}

.hero-search button:hover, .feature-button a:hover,
.g2 button:hover, .search-page button:hover, .sidebar-search button:hover,
.login-form-full button:hover, .signup-container button:hover{
    background-color:#46687e;
}

/*-------------------------------------- home below -------------------------------*/

h3{
    font-family: 'Instrument Serif', 'Garamond', serif;
    font-size: 4.5em;
    font-weight:400;
}

.home-about-content{
    display:flex;
    width:80%;
    height:fit-content;
    margin: 100px auto;
    justify-content:center;
}

.home-about{
    margin-top:170px;
    background-color:#84a3b6;
    background-image: url("img/noisy.png");
    background-size: 300px;
    background-repeat:repeat;
    background-blend-mode: color-burn;
    box-shadow: 0 2px 5px #c4bfa7;
    height: 530px;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: row;
}

.home-about p{
    margin-top:25px;
    line-height:24px;
    max-width:1000px;
}

.about-info h3{
    margin-bottom:20px;
    margin-top:0;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    text-decoration-color: #fdfaea;
    font-weight:100;
}

.about-info{
    margin:0;
    max-width: 1500px;
    width:50%;
    justify-content:center;
    align-content:center;
    color:#fdfaea;
}

.home-about img{
    transform: rotate(-5deg) translateY(25px);
    margin-right: 70px;
}

.home-about-cta a{
    background-color:#3a312d;
    color:#fdfaea;
    padding: 8px 25px;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-weight: 300;
    border-radius:30px;
}

.home-about-cta {
    margin-top:50px;
}

.home-about-cta a:hover{
    border: 2px dashed #fdfaea;
    background-color:rgba(0, 0, 0, 0);
    color:#fdfaea;
    padding: 6px 23px;
}

/* ---------- feature ------------*/

.home-features{
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin:100px auto 120px auto;
    width:80%;
    max-width: 1700px;
    height:fit-content;
}

.home-features h3{
    margin-bottom:75px;
    font-weight:100;
    border-bottom: 3px solid #3a312d;
    color:#473a32;
}

.feature-gallery{
    display:flex;
    margin: 0 auto;
    justify-content:space-between;
    width:100%;
    max-width: 1700px;
}

.feature-card{
    background-color:#fdfaea;
    border-radius: 25px;
    height: fit-content;
    width: 265px;
    padding: 50px 40px;
    box-shadow:1px 2px 3px #c4bfa7;
    justify-content:center;
}

.card-header{
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin:0 auto;
}

.card-header img{
    justify-self:center;
    margin:0 auto;
}

.feature-card h4{
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    font-size:2.4em;
    font-weight:400;
    line-height:36px;
    margin-top:7px;
    margin-bottom:0px;
    text-align:center;
    color:#473a32;
}

.feature-card p{
    line-height:24px;
    color:#473a32;
}

.feature1{
    transform:translateX(-12px);
}

.feature-button {
    justify-content:center;
    margin:22px auto 0 auto;

}

.feature-button a{
    background-color:#5c839b;
    padding: 10px 30px;
    color:#fdfaea;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-weight:400;
    box-shadow:1px 2px 3px #c4bfa7;
    border-radius:25px;
    text-decoration: none;
}

/* ---------------------------- footer ------------------ */

.home-footer{
    background-color:#3a312d;
    background-image: url('img/asphalt.png');
    background-size: 300px;
    background-repeat:repeat;
    background-blend-mode: multiply;
    width:100%;
    height:fit-content;
    border-radius: 30px 30px 0 0;
    overflow-y: hidden;
}

.footer-all{
    width: 85%;
    margin: 0 auto 50px auto;
    padding-top:40px;
    max-width:2500px;
}

.footer-all h1{
    font-size:5em;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    text-decoration-color: #5c839b;
    font-family: 'Instrument Serif','Times New Roman', serif;
    font-weight:300;
    letter-spacing:-3px;
    color:#5c839b;
    margin: 10px 0 10px 0;
    text-align:left;
    width:fit-content;
}

.footer-all a{
    color:#5c839b;
    text-decoration: none;
}

.footer-content{
    width:100%;
    max-width:1700px;
    display:flex;
    justify-content:space-between;
    align-items: start;
}

.footer-block{
    width:fit-content;
    color:#fdfaea;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
}

.contact li{
    color:#fdfaea;
    list-style:none;
    margin-bottom: 12px;
    padding-left:40px;
    position:relative;
}
.g2 label{
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size:14px;
}
.g2 input{
    border-radius:20px;
    border:none;
    box-sizing: border-box;
    padding-left: 8px;
    width:100%;
    height:25px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.g2 textarea{
    border-radius:10px;
    padding: 8px 0 0 8px;
    font-family: 'Inter', 'Helvetica', sans-serif;
}

.g2 button{
    width:30%;
    height:30px;
    background-color:#5c839b;
    color:#fdfaea;
    border:none;
    border-radius:20px;
    font-family:'Inter', 'Helvetica', sans-serif;
    margin:15px auto 0 auto;
    justify-self:center;
}

.g2{
    width: 25%;
}


.name{
    box-sizing: border-box;
    display:flex;
    flex-direction: row;
    width:100%;
    gap:8px;
}



.g3 li{
    color:#fdfaea;
    list-style:none;
    margin-bottom: 12px;
    padding-left:0px;
    position:relative;
}

.footer-block h4{
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    font-style:none;
    font-size: 2em;
    font-weight:300;
    letter-spacing:1px;
    margin-bottom:5px;
    margin-top:6px;
}

.footer-block ul{
    padding-left:0;
}

.contact li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width:25px;
    height:25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.foot-email::before{
    background-image:url("img/icons/email-icon.png");
}

.foot-phone::before{
    background-image:url("img/icons/phone-icon.png");
}

.foot-addy::before{
    background-image:url("img/icons/building-icon.png");
}

.g3{
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
}

.g3 h4{
    text-align:center;
}

.g3 ul{
    display:flex;
    gap: 20px;
}

.home-footer h6{
    text-align:center;
    color:#5c839b;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-size:14px;
    font-weight:400;
    margin-top:25px;
    margin-bottom:5px;
}

/*============================================================
                            search page
==============================================================*/


.search-page{
    width: 95%;
    height:fit-content;
    background-color:#837e78;
    background-image:url("img/search/search-img.jpg");
    background-repeat:no-repeat;
    background-position-y:73%;
    background-size:cover;
    background-blend-mode: multiply;
    border-radius: 40px;
    display:flex;
    justify-content:center;
    margin:0 auto 50px auto;
    padding: 180px 0 150px 0;
    opacity:0%;
    animation: slideinfade 1s ease-in-out;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

.search-page h3{
    margin:0 auto 30px auto;
    color:#fdfaea;
}

.search-content{
    width:80%;
    display:flex;
    flex-direction: column;
    justify-content:content;
    margin:0 auto;
    opacity:0%;
    animation: slideinfade 1s ease-in-out;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.search-content img{
    margin:0 auto;
    opacity:75%;
}

/*search bar*/

.search-page form{
    display:flex;
    justify-content:center;
    margin:0 auto;
    flex-direction:row;
    width: 100%;
}

.search-page select{
    width: 55%;
    height: 45px;
    border-radius: 30px 0px 0px 30px;;
    border:none;
    padding-left: 25px;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-size:1.05em;

}

.search-page button{
    border:none;
    border-radius: 0 30px 30px 0;
    width:100px;
    height:45px;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-size:1.05em;
    font-weight:500;
    letter-spacing:1px;
    color:#fdfaea;
    background-color:#5c839b;

}

.top-search{
    opacity:0;
    display:flex;
    flex-direction: column;
    width:95%;
    margin:0 auto 120px auto;
    animation: fadein 1s ease-in;
    animation-delay:0.7s;
    animation-fill-mode: forwards;
}

.search-header{
    border-bottom: 3px solid #3a312d;
    width:100%;
    margin-bottom:50px;
}

.top-search h3{
    color:#3a312d;
    margin-top:0px;
    margin-bottom:5px;
    font-size:3.5em;
    font-family: 'Instrument Serif', 'Times New Roman', serif;

}

.trend1{
    background-color:#5c839b;
    background-image:url('img/search/seventhday.jpg');
    background-position-y:39%;
    background-size:cover;
    border-radius: 30px 30px 0 0;
    width: 350px;
    height:180px;
    box-shadow: 1px 2px 3px #c4bfa7;
}

.trend2{
    background-color:#5c839b;
    background-image:url('img/search/sweet-hut.jpg');
    background-position-y:39%;
    background-size:cover;
    border-radius: 30px 30px 0 0;
    width: 350px;
    height:180px;
    box-shadow: 1px 2px 3px #c4bfa7;
}

.trend3{
    background-color:#5c839b;
    background-image:url('img/search/miao-spot.jpg');
    background-position-y:75%;
    background-size:cover;
    border-radius: 30px 30px 0 0;
    width: 350px;
    height:180px;
    box-shadow: 1px 2px 3px #c4bfa7;
}

.trend4{
    background-color:#5c839b;
    background-image:url('img/search/perc-coffeehouse.jpg');
    background-position-y:39%;
    background-size:cover;
    border-radius: 30px 30px 0 0;
    width: 350px;
    height:180px;
    box-shadow: 1px 2px 3px #c4bfa7;
}


.search-card-info{
    background-color:#fdfaea;
    padding: 5px 35px;
    width: 280px;
    height: fit-content;
    border-radius:0 0 30px 30px;
    box-shadow: 1px 2px 3px #c4bfa7;

}

.search-gal-card{
    display:flex;
    flex-direction:column;
    width:fit-content;
    height:fit-content;
    flex-wrap:wrap;
}

.search-gal-card:hover{
    transform: translateY(-25px);
    transition: transform 0.3s ease-in-out;
}

.search-gallery{
    display:flex;
    gap:12px;
    width:100%;
    height:fit-content;
    flex-wrap:wrap;
}

.search-gal-card h4{
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    letter-spacing:-1px;
    color:#3a312d;
    margin-top:5px;
    margin-bottom:5px;
    font-size:2.5em;
    font-weight:400;
}

.search-card-info h5{
    font-family: 'Inter', 'Times New Roman', serif;
    letter-spacing:0px;
    color:#3a312d;
    margin: 15px 0 0px 0px;
    font-size:1em;
    font-weight:400;
    position:relative;
    padding-left:20px;
}


.search-card-info h5::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width:15px;
    height:15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.search-card-info h5::before{
    background-image:url('img/icons/categories/location-br.png');
}

.search-rating{
    margin-top:8px;
    display:flex;
    flex-direction: row;
    height:fit-content;
    align-content:flex-end;
    justify-items:flex-end;
}

.search-rating h6{
    font-family: 'Inter', 'Helvetica', sans-serif;
    color:#3a312d;
    font-size: 0.85em;
    font-weight:300;
    margin:0 0 10px 8px;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #3a312d;
    text-underline-offset: 3px;
}

.search-attributes{
    height:fit-content;
    width:100%;
    margin-top:15px;
}

ul.attribute-list{
    display:flex;
    flex-wrap:wrap;
    padding:0;
    gap:5px;
    height:fit-content;
    width:100%;
}

.attribute-list li{
    position:relative;
    display:flex;
    flex-direction:row;
    font-size:14px;
    list-style: none;
    padding:2px 8px 2px 25px;
    border: 1px solid #3a312d;
    border-radius:20px;
}

.attribute-list li::before{
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width:15px;
    height:15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.work-study::before{
    background-image:url('img/icons/categories/check-icon.png');
}

.seating::before{
    background-image:url('img/icons/categories/chair.png');
}

.outlets::before{
    background-image:url('img/icons/categories/outlet.png');
}

.busy::before{
    background-image:url('img/icons/categories/busy-icon.png');
}

.noise::before{
    background-image:url('img/icons/categories/noise\ icon.png');
}

.style::before{
    background-image:url('img/icons/categories/style-icon.png');
}

.hours::before{
    background-image:url('img/icons/categories/hours-icon.png');
}

.wifi::before{
    background-image:url('img/icons/categories/wifi.png');
}

.computer::before{
    background-image:url('img/icons/categories/computer-icon.png');
}

.stairs::before{
    background-image:url('img/icons/categories/stairs.png');
}

.resources::before{
    background-image:url('img/icons/categories/book.png');
}

/*========================================================================
                        search results
==========================================================================*/

.results h3{
    font-size:40px;
    margin:0 auto 10px auto;
    width:93%;
    color:#fdfaea;
}

.search-results .header{
    animation:still 0.0s ease-in;
    opacity:100%;
}

.results{
    opacity:0%;
    width:95%;
    max-width:2000px;
    height:fit-content;
    margin:0 auto 100px auto;
    display:flex;
    flex-direction: column;
    animation: slideinfade 0.8s ease-in-out;
    animation-delay:0.2s;
    animation-fill-mode: forwards;
}

.search-bar{
    width:100%;
    height:fit-content;
    background-color:#5c839b;
    border-radius:30px 30px 0 0;
    margin-bottom:0px;
    box-shadow: 1px 2px 3px #c4bfa7;
    box-sizing: border-box;
    padding: 20px 0;

}

.results-gallery{
    display:flex;
    flex-direction: column;
    width:100%;
    height:860px;
    background-color:#fdfaea;
    border-radius:0 0 30px 30px;
    margin-top:0;
    box-shadow: 1px 2px 3px #c4bfa7;
    padding-bottom: 50px;
    padding-top:30px;
    row-gap: 15px;
    box-sizing:border-box;
}

.gallery-display{
    display:flex;
    flex-direction: column;
    gap:25px;
    height:800px;
    width:100%;
    overflow-y:scroll;
    scrollbar-color:#5c839b7e #fdfaea;
    scrollbar-width: thin;
}


.search-bar form{
    display:flex;
    justify-content:center;
    margin:0;
    flex-direction:row;
    width: 100%;
}

.search-bar select{
    width: 90%;
    height: 40px;
    border-radius: 30px 0px 0px 30px;;
    border:none;
    padding-left: 25px;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-size:1.05em;

}

.search-bar button{
    border:none;
    border-radius: 0 30px 30px 0;
    width:50px;
    height:40px;
    font-family: 'Inter Tight', 'Helvetica', sans-serif;
    font-size:1.05em;
    font-weight:500;
    letter-spacing:1px;
    color:#fdfaea;
    background-color:#3a312d;
}

.search-bar img{
    position:relative;
    top: 2px;
    right:1px;
}

/*-----------------results card------------------------*/

.result-card {
    width:95%;
    flex:1;
    display:flex;
    flex-direction: row;
    margin:0px auto 0 auto;
    align-items:stretch;
}

.result-card-info{
    padding: 5px 40px 10px 25px;
    background-color:#fffef6;
    width:100%;
    box-sizing: border-box;
    flex:1;
    border-radius: 0 25px 25px 0;
    box-shadow: 1px 2px 3px #c4bfa7;
}

.result-img{
    flex: 0 0 220px;
    height:auto;
    background-color:#46687e;
    border-radius:25px 0 0 25px;
    box-shadow: 1px 3px 3px #c4bfa7;

}

.name-addy{
    display:flex;
    align-items:flex-end;
    margin-top:15px;
}

.name-addy h4{
    margin:0 15px 0px 0px;
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    font-size:30px;
    font-weight:500;
    color:#3a312d;
    padding-left:2px;
}

.addy{
    display:flex;
    flex-direction: row;
    gap:20px;
    margin-top:4px;
}

.place-addy::before{
    content: "";
    position: absolute;
    left: 0px;
    bottom: 6px;
    width:18px;
    height:18px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.place-hours::before{
    content: "";
    position: absolute;
    left: 0px;
    top: 2px;
    width:17px;
    height:17px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.place-addy::before{
    background-image:url('img/icons/categories/location-br.png');
}

.place-hours::before{
    background-image:url('img/icons/categories/hours-icon.png');
}

.place-addy{
    position:relative;
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-weight:400;
    font-size:14px;
    color:#3a312d;
    margin: 0;
    padding-left:22px;
    width:fit-content;
}

h6.place-hours{
    position:relative;
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-weight:400;
    font-size:14px;
    color:#3a312d;
    margin:0;
    padding-left:25px;
}


.rating{
    display:flex;
    margin-top:5px;
}

.rating h6{
    margin:0 15px 2px 7px;
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size:15px;
    font-weight:500;
    color:#3a312d;
}

.star-rating{
    position:relative;
}

.rc1{
    background-image:url('img/results/cafe-brazil.jpg');
    background-size:cover;
    background-blend-mode: normal;
    opacity:98%;
}

.rc2{
    background-image:url('img/results/junbi.jpg');
    background-size:cover;
}

.rc3{
    background-image:url('img/results/eiland-coffee.jpg');
    background-size:cover;
    background-position: right, center;
}

.rc4{
    background-image:url('img/results/george-coffe.jpg');
    background-size:cover;
}

.rc5{
    background-image:url('img/results/grutogi.jpg');
    background-size:cover;
    background-blend-mode: normal;
    opacity:98%;
}

.rc6{
    background-image:url('img/results/sweetwaters.png');
    background-size:cover;

}

.rc7{
    background-image:url('img/results/haraz.jpg');
    background-size:cover;

}

.rc8{
    background-image:url('img/results/tomntoms.jpg');
    background-size:cover;

}

.rc9{
    background-image:url('img/results/westoak.jpg');
    background-size:cover;
    background-position:right, center;
}

.rc10{
    background-image:url('img/results/percs.jpg');
    background-size:cover;
}

.rc11{
    background-image:url('img/search/sweet-hut.jpg');
    background-size:cover;
    background-position: center;
}

.rc12{
    background-image:url('img/results/lewisville.jpg');
    background-size:cover;

}

.rc13{
    background-image:url('img/results/frisco-public.jpeg');
    background-size:cover;

}

.rc14{
    background-image:url('img/search/miao-spot.jpg');
    background-size:cover;
    background-position: 40%,center;
}

.rc15{
    background-image:url('img/search/seventhday.jpg');
    background-size:cover;

}

.rc16{
    background-image:url('img/results/turbo.jpg');
    background-size:cover;
}

.rc17{
    background-image:url('img/results/martyb.png');
    background-size:cover;
}

.rc18{
    background-image:url('img/results/cozby.jpg');
    background-size:cover;
    background-position: center, bottom;
}

.rc19{
    background-image:url('img/results/mozart.jpg');
    background-size:cover;
}

.result-card p{
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size:15px;
    line-height:19px;
    color:#3a312d;
}

.search-results ul{
    margin-top:20px;
}

.search-results ul.attribute-list{
    margin-bottom:0px;
    margin-top:35px;
}

/*===================================================
                 blog homepage
=====================================================*/


body.blog-page{
    height:fit-content;
    display:flex;
    flex-direction: column;
    margin-top:5px;
    margin-bottom:0;
}

.blog-home{
    width:95%;
    margin:0 auto 0 auto;
    padding-top:0;
}

.blog-home-img{
    background-color:#928b85;
    background-image: url(img/blog/blog-img.jpg);
    background-blend-mode: multiply;
    background-size:cover;
    background-position-y: 75%;
    margin:0 auto;
    opacity:96%;
    width:90%;
    height:250px;
    box-sizing: border-box;
    border-radius:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    opacity:0;
    animation: slideinfade 0.8s ease-in-out;
    animation-delay:0.2s;
    animation-fill-mode: forwards;
}

.blog-home-img h3{
    margin:0 auto;
    color:#fdfaea;
    font-size:5.2em;
}

.blog-home-img p{
    color:#fdfaea;
    font-family: 'Inter', 'Helvetica', sans-serif; 
    width:45%;
    text-align:center;
    margin: 0 auto;
    line-height:21px;
}

h4.blog-sorting{
    font-family:'Instrument Serif', 'Times New Roman', serif;
    font-size:4em;
    font-weight:300;
    color:#3a312d;
    margin:30px auto 50px auto;
    width:90%;
    border-bottom: 3px solid #3a312d;
    opacity:0;
    animation: slideinfade 0.8s ease-in-out;
    animation-delay:0.5s;
    animation-fill-mode: forwards;
}

.blog-gallery{
    margin:0 auto 50px auto;
    width:90%;
    opacity:0;
    animation: slideinfade 0.8s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
}

.featured-blogs{
    display:flex;
    justify-content:space-between;
    width:95%;
    max-width:2000px;
    align-items:stretch;
    flex:1;
    margin:0 auto;
}

@media (min-width: 2000px){
    .featured-blogs{
        display:flex;
        flex-direction:row;
        gap:30px;
        justify-content:left;
        margin: 0px;
        flex:0;
        width:100%;
    }
}

a.blog-direct{
    text-decoration: none;
    flex:1;
    display:flex;
}

a.blog-direct:hover{
    transform: translateY(-25px);
    transition: transform 0.3s ease-in-out;
}

.blog-display {
    display:flex;
    flex-direction:column;
    justify-content:0;
    flex:1;
}

.blog-display-sm {
    display:flex;
    flex-direction:column;
    justify-content:0;
}

.blog-display-img{
    width:600px;
    height:300px;
    background-color:#46687e;
    border-radius: 30px 30px 0 0;
    box-shadow: 1px 3px 3px #c4bfa7;
}

.art1{
    background-image:url('img/blog/utd-banner-building.jpg');
    background-size: cover;
    background-position-y: top;
}

.art2{
    background-image:url('img/blog/book-place.jpg');
    background-size:cover;
    background-position-y:39%;
    background-blend-mode: overlay;
    background-color:#8b796d;
}

.blog-display-info{
    width:600px;
    height:fit-content;
    padding:20px 50px;
    box-sizing: border-box;
    background-color:#fdfaea;
    border-radius: 0 0 30px 30px;
    box-shadow: 1px 3px 3px #c4bfa7;
    flex:1;
}

.blog-display-info h6{
    margin:10px 0 0 0;
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size:1em;
    font-weight:400;
    color:#7e716c;
}

.blog-display-info h5{
    margin:5px 0 0 0;
    font-family: 'Instrument Serif', 'Times New Roman', sans-serif;
    font-size:3em;
    font-weight:300;
    color:#3a312d;
    line-height: 40px;

}

.blog-display-info p{
    line-height: 20px;
    color:#3a312d;
}

.recent-blogs .blog-display-img{
    width:300px;
    height:250px;
}

.recent-blogs .blog-display-info{
    width:300px;
    height:fit-content;
    padding:15px 30px;
}

.recent-blogs h6{
    font-size:0.75em;
}

.recent-blogs h5{
    font-size:2.5em;
}

.recent-blogs p{
    font-size:0.9em;
}

.all-recents{
    width:100%;
    height:fit-content;
    display:flex;
    flex-direction: row-reverse;
    row-gap:30px;
    gap:30px;
    flex-wrap:wrap;
    justify-content: left;
}

@media (min-width:2000px){
    .all-recents{
        display:flex;
        flex-direction: row-reverse;
        gap:25px;
        justify-content:left;
        margin: 0px;
        flex:0;
        width:100%;
    }
}


.recent2{
    background-image:url('img/blog/utd-banner-building.jpg');
    background-size:cover;
    background-position-y: 50%;
    background-position-x: 58%;;
}

.recent1{
    background-image:url('img/blog/book-place.jpg');
    background-size:cover;
    background-position-y: 50%;
    background-position-x: 58%;;
    background-blend-mode: overlay;
    background-color:#8b796d;
}

.all-recents a{
    text-decoration:none;
    color:#3a312d;
}

.all-recents a:hover{
    transform: translateY(-20px);
    transition: transform 0.3s ease-in-out;
}

/*====================================================
                    login page
======================================================*/

.login-section{
    display:flex;
    justify-content:center;
    margin: 0 auto 100px auto;
    width:95%;
    max-width:1500px;
    gap:100px;
}

.login-form{
    width:45%;
    max-width:1200px;
}

form{
    display:flex;
    flex-direction: column;;
    justify-content:center;
    margin:0 auto;
}

.login-container h3{
    margin-bottom: 25px;
    color:#3a312d;
}

.login-container h5{
    margin: 10px auto 10px auto;
    width:fit-content;
    font-size:16px;
    font-weight: 400;
    font-family: 'Inter', 'Helvetica', sans-serif;
    color:#3a312d;
}

.login-form input, .login-form button{
    display:flex;
    flex-direction:column;
    margin:0 auto;
    justify-self:center;
    align-items:center;
}

.login-form-full{
    width:80%;
}

.login-inputs input#username, .login-inputs input#user-pw{
    margin-left:0;
    width:100%;
}

.login-form input{
    font-family:'Inter', 'Helvetica', sans-serif;
    width: 80%;
    height:40px;
    border-radius:30px;
    border:1px solid #3a312d;
    padding-left:20px;
    box-sizing: border-box;
}

.login-inputs{
    width:80%;
    max-width:600px;
    display:flex;
    flex-direction: column;
    row-gap:0px;
    margin:0 auto;
}

.login-form button{
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size:18px;
    font-weight:600;
    background-color:#5c839b;
    color:#fdfaea;
    width:30%;
    max-width:250px;
    border: 1px solid #5c839b;
    border-radius:30px;
    height:40px;
    padding-top:8px;
    box-sizing: border-box;
    margin-top:30px;
}


.login-container{
    justify-items:center;
}

.login-image{
    width:45%;
    max-width:900px;
    height:700px;
    background-image: url('img/login/studying.jpg');
    background-size:cover;
    border-radius:30px;
    opacity: 0%;
    animation: slideinfade 1s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}

.login-form{
    opacity: 0%;
    animation: slideinfade 1s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
}

.signup-option{
    color:#3a312d;
}

.tos-checkbox{
    display:flex;
    flex-direction: row;
    align-items:center;
    font-size:16px;
    gap:8px;
}

.tos-checkbox label{
    font-size:14px;
    row-gap:0px;
}

input#tos{
    margin:0;
    width:17px;
}

u.tos{
    color:#5c839b;
}

u.tos:hover, u:hover{
    color:#46687e;
    cursor:pointer;
}

/*======================================================
                        sign up 
========================================================*/

.signup-section{
    display:flex;
    justify-content:center;
    margin: 0 auto 100px auto;
    width:95%;
    max-width:1500px;
    gap:100px;
}

.signup-form{
    width:45%;
    max-width:1200px;
}

form{
    display:flex;
    flex-direction: column;;
    justify-content:center;
    margin:0 auto;
}

.signup-container h3{
    margin-bottom: 25px;
    color:#3a312d;
}

.signup-container h5{
    margin: 10px 0 10px 0;
    font-size:16px;
    font-weight: 400;
    font-family: 'Inter', 'Helvetica', sans-serif;
    color:#3a312d;
}

.signup-form button{
    display:flex;
    flex-direction:column;
    margin:0 auto;
    justify-self:center;
    align-items:center;
}

.signup-form input{
    display:flex;
    flex-direction:column;
    margin:0 auto 10px auto;
    justify-self:center;
    align-items:center;
}

input#email, input#username, input#user-pw,
input#user-pw-repeat{
    margin-bottom:10px;
    margin-right:0px;
}

.signup-form input{
    font-family:'Inter', 'Helvetica', sans-serif;
    width: 100%;
    height:40px;
    border-radius:30px;
    border:1px solid #3a312d;
    padding-left:20px;
    box-sizing: border-box;
}

.signup-form-full{
    width:80%;
}

.signup-inputs{
    width:80%;
    max-width:600px;
    display:flex;
    flex-direction: column;
    row-gap:0px;
    justify-content:center;
    margin:0 auto;
    box-sizing: border-box;
}

.signup-form button{
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size:18px;
    font-weight:600;
    background-color:#5c839b;
    color:#fdfaea;
    width:30%;
    max-width:250px;
    border: 1px solid #5c839b;
    border-radius:30px;
    height:40px;
    padding-top:8px;
    box-sizing: border-box;
    margin-top:30px;
}


.signup-container{
    justify-items:center;
}

.signup-image{
    width:45%;
    max-width:900px;
    height:700px;
    background-color:#e7ddd8;
    background-blend-mode: multiply;
    background-image: url('img/login/signup-study.jpg');
    background-size:cover;
    background-position-y: 62%;
    border-radius:30px;
    opacity: 0%;
    animation: slideinfade 1s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.3s;
}

.signup-form{
    opacity: 0%;
    animation: slideinfade 1s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
}

.signup-option{
    color:#3a312d;

}

.signup-inputs label, .signup-inputs input{
    margin-left:0;
    color:#3a312d;
    margin-bottom:0px;
}

/*====================================================
                blog article layout
======================================================*/

.article{
    display:flex;
    flex-direction: row;
    width:85%;
    height:fit-content;
    box-sizing: border-box;
    margin:25px auto 100px auto;
    border-top:2px solid #3a312d;
    padding-top:40px;
    animation: slideinfade 0.8s ease-in-out;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    opacity:0%;
}

.article-layout{
    width:80%;
    box-sizing: border-box;
    border-right: 2px solid #3a312d;
    padding: 0 40px 0px 0px;
}

.article-header{
    height: fit-content;
    margin-bottom: 20px;
}

.article-header h3{
    color:#3a312d;
    margin:5px 0 5px 0;
}

.article-header h4{
    color:#3a312d;
    margin:10px 0 5px 0;
    font-size:18px;
}

.top-reading{
    margin-left:50px;
    margin-bottom:50px;
    width:100%;
}

.utd-spots .article-big-img{
    background-image:url('img/blog/utd-banner-building.jpg');
    background-size:cover;
    border-radius: 20px;
    width:100%;
    height:500px;
    margin-bottom: 50px;
}

.utd-study-spots{
    margin-left:50px;
    margin-bottom:50px;
}

.utd-study-spots img{
    width:700px;
    height:450px;
    max-width:70%;
}

article p, article h5{
    width:90%;
    max-width:1000px;
}

article p{
    color:#3a312d;
    line-height:22px;
}

article h5{
    margin:25px 0 5px 0;
    font-size:2em;
    color:#3a312d;
}

article img{
    border-radius:20px;
}

.article-sidebar{
    background-color:none;
    width:18%;
    max-width: 350px;
    box-sizing: border-box;
    display:flex;
    flex-direction: column;
    gap:20px;
    margin:0 auto;
}

.sidebar-rec{
    margin:0 auto;
    padding:15px 0;
    box-sizing:border-box;
    display:flex;
    flex-direction: column;
    width:85%;
    height:fit-content;
    border-bottom:2px solid #3a312d;
}

.sidebar-rec h5{
    color:#3a312d;
    margin: 0 0 10px 0;

}

.sidebar-rec p{
    margin-top: 0px;
}

.sidebar-rec ul{
    display:flex;
    flex-wrap: wrap;
    gap:5px;
    padding:0;
    width:100%;
    margin-top:8px;
}

.sidebar-rec li{
    font-family: 'Inter', 'Helvetica', sans-serif;
    font-size:14px;
    font-weight:600;
    text-align:center;
    width:fit-content;
    height:fit-content;
    color:#3a312d;
    padding: 4px 8px;
    border: 2px solid #3a312d;
    border-radius:20px;
    list-style-type: none;
}

ul.sidebar-social{
    display:flex;
    flex-direction:row;
    gap:5px;
    row-gap:0px;
}

.sidebar-social li{
    display:flex;
    flex-direction:row;
    gap:5px;
    row-gap:50px;
    border:none;
    margin:0;
    padding:0;
}

.sidebar-blog{
    width:100%;
    display:flex;
    flex-direction:column;
    margin-bottom:15px;
}

.sidebar-blog-img{
    width:100%;
    height:200px;
    background-image:url('img/blog/book-place.jpg');
    background-size:cover;
    border-radius: 20px 20px 0 0;
}

.sidebar-blog h5{
    margin:0;
    padding: 20px 20px 20px 20px;
    box-sizing: border-box;
    background-color:#fdfaea;
    border-radius: 0 0 20px 20px;
    width:100%;
    height:fit-content;
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    font-size:24px;
    font-weight:400;
    color:#3a312d;
}

.sidebar-rec a{
    text-decoration: none;
    margin:0;
}

.sidebar-search form{
    display:flex;
    flex-direction: column;
    gap:20px;
}

.sidebar-search select{
    height:30px;
    width:100%;
    border-radius: 20px;
    font-family:'Inter', 'Helvetica', sans-serif;
    padding-left:10px;
    box-sizing: border-box;
}

.sidebar-search button{
    font-family:'Inter', 'Helvetica', sans-serif;
    color:#fdfaea;
    width: 50%;
    height:30px;
    border-radius: 20px;
    border:none;
    background-color:#5c839b;
    margin:0 auto 15px auto;
    
}

.reading-spots .sidebar-blog-img{
    background-image:url('img/blog/utd-banner-building.jpg');
    background-position-x: 55%;
}

.reading-spots .article-big-img{
    background-image:url('img/blog/book-place.jpg');
    background-size: cover;
    background-position-y: 40%;
    border-radius: 20px;
    width:100%;
    height:500px;
    margin-bottom: 50px;
}




