/*******************************/
/********* General CSS *********/
/*******************************/
html{
    width: 100%; /* Match viewport width */
    max-width: 100%; /* Prevent overflow */
    height: 100%;
}

body {
    color: #797979;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #414141;
}

a {
    color: #313131;
    transition: .3s;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.btn {
    padding: 20px ;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: transparent;
    background: transparent;
    border: none;
}

/**********************************/
/********* Age Verify CSS *********/
/**********************************/
#verifyOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}
 
#verifyPopup {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #414141;
    background: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    padding: 20px;
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
    position: relative;
}

#verifyPopup img{
    max-width: 100%;
    max-height: 300px;
}
 
#verifyPopup .btn {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
}
 
#verifyBox .btn:hover {
    cursor: pointer;
    color: #414141
}

#verifyOverlay.show {
	display: block;
}
#verifyBox {
    display: none;
}

#unverifiedBody {
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
}

#unverifiedOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: block;
}
 
#unverifiedPopup {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #414141;
    background: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    padding: 20px;
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
    position: relative;
}

#unverifiedPopup img{
    max-width: 100%;
    max-height: 300px;
}

#unverifiedBox {
    display: block;
}

/* Tablet: 3 columns */
@media (max-width: 992px) {

}

/* Small tablets / large phones: 2 columns */
@media (max-width: 768px) {

}

@media (max-width: 480px) {

   
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index:  9999 ;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.navbar .navbar-brand {
    margin: 0;
    font-size: 45px;
    line-height: 0px;
    font-weight: 700;
    letter-spacing: 2px;
    transition: .5s;
    
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 80px;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #FFC0D3;
}

.dropdownMenu {
  float: left;
  overflow: hidden;
}

.dropdownMenu .dropbtn {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    border: none;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg) !important;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  color: #111111;
}

/* Show the dropdown menu on hover */
.dropdownMenu:hover .dropdown-content {
  display: block;
}

@media (min-width: 1024px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 15px 60px;
        background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg) !important;
        border-bottom: 1px solid rgba(256, 256, 256, .5);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 10px 60px;
        background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg) !important;
    }
    
    .navbar .navbar-brand {
        color: #ffffff;
    }
    
    .navbar.nav-sticky .navbar-brand {
        color: #ffffff;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:focus {
        padding: 10px 10px 8px 10px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 500;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link,
    .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
        color: #ffffff;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: #111111;
    }
    
    .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
    .navbar-light.nav-sticky .navbar-nav .nav-link.active {
        color: #111111;
    }

    .dropbtn:hover {
        color: #111111;
    }

    .dropbtn:active {
        color: #ffffff;
    }
}

@media (max-width: 1024px) {   
    .navbar {
        padding: 15px;
        background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg) !important;
    }
    
    .navbar .navbar-brand {
        color: #111111;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

@media (max-width: 768px) {   
    .navbar {
        padding: 15px;
        background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg) !important;
    }
    
    .navbar .navbar-brand {
        color: #111111;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

@media (max-width: 488px) {   
    .navbar {
        padding: 15px;
        background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg) !important;
    }
    
    .navbar .navbar-brand {
        color: #111111;
    }
    
    .navbar .navbar-nav {
        margin-top: 15px;
    }
    
    .navbar a.nav-link {
        padding: 5px;
    }
    
    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    width: 100%;
    margin-top: 45px;
    overflow: hidden;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-info {
    position: relative;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: large;
}

.footer .logoPic {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer .footer-social {
    position: relative;
    margin-top: 15px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 20px;
    color: Transparent;
    transition: .3s;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #414141;
}

.footer .footer-social .btn:hover{
    transform: scale(1.5) perspective(1px);
}

.footer .copyright {
    position: relative;
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer .copyright::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    top: 0;
    left: 25%;
    background: rgba(256, 256, 256, .2);
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
    font-weight: 600;
}

.footer .copyright p a:hover {
    color: #414141;
}

@media (max-width: 1024px) {
    .footer .footer-info h2 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }

    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .footer .footer-menu p {
        font-size: 16px;
        line-height: 16px;
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .footer .footer-info h2 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }

    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .footer .footer-menu p {
        font-size: 16px;
        line-height: 16px;
        padding: 0 5px;
    }
}

@media (max-width: 488px) {
    .footer .footer-info h2 {
        margin-bottom: 20px;
        font-size: 20px;
        font-weight: 600;
    }

    .footer .footer-info h3 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .footer .footer-menu p {
        font-size: 16px;
        line-height: 16px;
        padding: 0 5px;
    }
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 0 0 0;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(224, 192, 211, .95), rgba(224, 192, 211, .95), transparent, transparent), url(../img/hero-bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .hero-content {
    position: relative;
    padding-left: 75px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hero .hero-content .logoImage {
    max-height: 400px;
    padding-left: 60px;
}

.hero .menu-btn .btn{
    margin-top: 35px;
    margin-left: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
}

.hero .menu-btn .btn:hover {
    cursor: pointer;
    color: #111111
}

.hero .hero-btn .btn {
    margin-top: 20px;
    color: transparent;
    background: transparent;
    box-shadow: none;
}

.hero .hero-btn .btn:hover {
    color: transparent;
    background: transparent;
    border: none;
    transform: scale(1.5) perspective(1px);
}

.hero .hero-btn .btn:first-child {
    margin-right: 10px;
}

@media (max-width: 1024px) {
    .hero {
        padding-top: 60px;
    }
    
    .hero .hero-content {
        padding: 0 15px;
    }

    
    .hero .hero-btn .btn {
        padding: 12px 30px;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .hero,
    .hero .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero .hero-btn .btn {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px) {
    .hero .hero-text p {
        font-size: 16px;
    }
    
    .hero .hero-text h1 {
        font-size: 30px;
    }
    
    .hero .hero-text h2 {
        font-size: 18px;
        height: 18px;
    }
    
    .hero .hero-btn .btn {
        padding: 8px 10px;
        letter-spacing: 0;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/******** Portfolios CSS ********/
/*******************************/
.portfolio {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.portfolio .portfolios {
    position: relative;
    margin: 0 auto 30px auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    grid-template-rows: repeat(1, auto);  
    gap: 60px;
    align-items: center;
    max-width: 960px;
    width: fit-content;
    padding: 0 10px;
}

.portfolio .portfolios .portfolio-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio .portfolios .portfolio-item img {
    width: 100%;

    object-fit: cover; /* fill without distortion */
    display: block;
}

.portfolio .portfolios .portfolio-item:hover {
    transform: scale(1.10) perspective(1px);
    cursor: pointer;
}

.portfolio .portfolios .portfolio-item p {
    color: #111111;
    font-size: 16px;
    padding-top: 40px;
}

.portfolio .portfolios .portfolio-item:hover .portfolio-text h3,
.portfolio .portfolios .portfolio:hover .portfolio-text p {
    color: #ffffff;
}

.portfolio .portfolioButton {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.portfolio .portfolioButton .link-btn {
    margin-top: 35px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    width: auto;
}

.portfolio .portfolioButton .link-btn:hover {
    cursor: pointer;
    color: #111111
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
    .portfolio .portfolios {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

/* Small tablets / large phones: 2 columns */
@media (max-width: 768px) {
    .portfolio .portfolios {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .portfolio .portfolios {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }
}

/**********************************/
/********* Menu Page CSS **********/
/**********************************/
.menuHome {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
}

.menuHome p {
text-align: center;
}

.menuHome .section-header {
    padding-top: 40px;
}

.menuHome .contactInfo {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 25px;
}

.menuHome .contactInfo .contactInfo1, .menuHome .contactInfo .contactInfo2 {
    display: grid;
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    padding: 10px;
    text-align: center;
}

.menuHome .menuInfo {
    text-align: center;
}

.menuHome .menu1 {
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    background-color: rgba(238, 205, 225, 0.959);
    align-items: start;
    gap: 10px;
    column-count: 2;
    column-gap: 10px;
}

.menuHome .menu1 .menu-item {
    /*border: 1px solid;*/
    text-align: center;
    padding: 10px;
    break-inside: avoid;
    margin-bottom: 10px;
    background: rgba(238, 205, 225, 0.959);
}

.menuHome .menu1 .menu-item .menuImg {
    border-radius: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.menuHome .menu1 .menu-item h3,
.menuHome .menu1 .menu-item p {
    margin: 5px 0;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
}

.menuHome .menuButton, .menuHome .contactInfo, .menuHome .contactButton {
    display: flex;
    /*width: 800px;*/
    align-items: center;
    justify-content: center;
}

.menuHome .menuButton .link-btn, .menuHome .contactInfo .link-btn, .menuHome .contactButton .link-btn {
    margin-top: 35px;
    /*margin: 0 50px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    /*flex: 1;*/
    text-align: center;
    
}

.menuHome .menuButton .link-btn:hover, .menuHome .contactInfo .link-btn:hover, .menuHome .contactButton .link-btn:hover {
    cursor: pointer;
    color: #111111
}

@media (max-width: 600px) {
  .menuHome .contactInfo {
    grid-template-rows: auto;
  }
}

@media (max-width: 600px) {
  .menuHome .menu1 {
    column-count: auto;
  }
}

/**********************************/
/********* Rules Page CSS **********/
/**********************************/
.rulesHome {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
}

.rulesHome p {
text-align: center;
}

.rulesHome .section-header {
    padding-top: 40px;
}

.rulesHome .rulesPic {
    display: flex;
    /*width: 800px;*/
    align-items: center;
    justify-content: center;
}

.rulesList {
    list-style: none;
}

.rulesHome .rulesPic .image{
    border-radius: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.rulesHome .contactButton {
    display: flex;
    /*width: 800px;*/
    align-items: center;
    justify-content: center;
}

.rulesHome .contactButton .link-btn {
    margin-top: 35px;
    /*margin: 0 50px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    /*flex: 1;*/
    text-align: center;
    
}

.rulesHome .contactButton .link-btn:hover {
    cursor: pointer;
    color: #111111
}

/**********************************/
/********* Benefits Page CSS **********/
/**********************************/
.benefitsHome {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
}

.benefitsHome p {
text-align: center;
}

.benefitsHome .section-header {
    padding-top: 40px;
}

.benefitsHome .benefitsList {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefitsHome .benefitsList ul {
    list-style: none;
}

.benefitsHome .contactButton {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefitsHome .benePic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefitsHome .benePic img {
    border-radius: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.benefitsHome .link-btn {
    margin-top: 35px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
}

.benefitsHome .disc-btn {
    margin-bottom: 20px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
}

.benefitsHome .link-btn:hover, .disc-btn:hover {
    cursor: pointer;
    color: #111111
}

/**********************************/
/********* Schedule Page CSS **********/
/**********************************/

.scheduleHome {
	display: flex;
	align-items: center;
    flex-flow: column;
    vertical-align: middle;
	font-family: 'Montserrat', sans-serif;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
}

.scheduleHome p {
text-align: center;
}

.scheduleHome .section-header {
    padding-top: 40px;
}

.scheduleHome .schedule {
    position: relative;
    justify-self: center;
}

.scheduleHome ul {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	flex-wrap: wrap;

	li {
		display: flex;
		width: 9rem;
		height: 9rem;
		margin: 10px;
		flex-flow: column;
		border-radius: 0.2rem;
		padding: 1rem;
		font-weight: 300;
		font-size: 1rem;
		box-sizing: border-box;
		background: rgb(224, 192, 211);
        color: #ffffff;
		box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
		backdrop-filter: blur(4px);
		border-radius: 10px;
		border: 1px solid rgba(255, 255, 255, 0.18);

		time {
			font-size: 2rem;
			margin: 0 0 1rem 0;
			font-weight: 500;
            color: #ffffff;
		}
	}
}

.scheduleHome .contactButton {
    position: relative;
}

.scheduleHome .contactButton a {
    display: inline-block;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    margin: 10px;
}

.scheduleHome .contactButton .link-btn:hover {
    cursor: pointer;
    color: #111111
}

@media (max-width: 1024px) {
    .scheduleHome ul {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .scheduleHome ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 488px) {
    .scheduleHome ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/***********************************/
/*********Contact Page CSS**********/
/**********************************/

.contactHome {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
}

.contactHome p {
text-align: center;
}

.contactHome .section-header {
    padding-top: 40px;
}

.contactHome .contactPic {
    display: flex;
    /*width: 800px;*/
    align-items: center;
    justify-content: center;
}

.contactHome .contactPic img {
    border-radius: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.contactHome .contactInfo {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 25px;
}

.contactHome .contactInfo .contactInfo1, .contactHome .contactInfo .contactInfo2 {
    display: grid;
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    padding: 10px;
    text-align: center;
}

.contactHome .menuButton, .contactHome .contactInfo, .contactHome .contactButton {
    display: flex;
    /*width: 800px;*/
    align-items: center;
    justify-content: center;
}

.contactHome .contactInfo .link-btn, .contactHome .contactButton .link-btn {
    margin-top: 35px;
    /*margin: 0 50px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    /*flex: 1;*/
    text-align: center;
    
}

.contactHome .contactInfo .link-btn:hover, .contactHome .contactButton .link-btn:hover {
    cursor: pointer;
    color: #111111
}

.contactHome .linkList1, .contactHome .linkList2, .contactHome .linkList3 {
    position: relative;
    display: grid;
    grid-template-rows: repeat(1, auto);  
    align-items: center;
    max-width: 960px;
    width: fit-content;
    padding: 0 10px;
    justify-content: center;
}

.contactHome .linkList1 {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    margin: 0 auto 30px auto;
}

.contactHome .linkList2 {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    margin: 0 auto 30px auto;
}

.contactHome .linkList3 {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    margin: 0 auto 30px auto;
}

.contactHome .linkList1 a i {
    margin-right: 15px;
    font-size: 20px;
    color: Transparent;
    transition: .3s;
}

.contactHome .linkList1 a:last-child i {
    margin: 0;
}

.contactHome .linkList1 .btn:hover, .contactHome .linkList2 .btn:hover,
 .contactHome .linkList3 .btn:hover {
    transform: scale(1.5) perspective(1px);
}

/* Tablet: 3 columns */
@media (max-width: 992px) {
    .contactHome .linkList1 {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
    }

    .contactHome .linkList2 {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .contactHome .linkList3 {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }

    .contactHome .contactInfo {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

/* Small tablets / large phones: 2 columns */
@media (max-width: 768px) {
    .contactHome .linkList1 {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .contactHome .linkList2 {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .contactHome .linkList3 {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .contactHome .contactInfo {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .contactHome .linkList1 {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .contactHome .linkList2 {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .contactHome .linkList3 {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }

    .contactHome .contactInfo {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }
}

/***********************************/
/*********Wardrobe Page CSS**********/
/**********************************/

.wardrobePage {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
}

.wardrobePage h2 {
    padding-top: 40px;
}

.wardrobePage p {
    text-align: center;
}

.wardrobePage img:hover {
    transform: scale(2);
}

.wardrobePage .pantiesPics {
    position: relative;
    margin: 0 auto 30px auto; /* center horizontally */
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr)); /* desktop default */
    gap: 25px;
    align-items: center;
    max-width: 960px; /* keeps total width reasonable */
    width: fit-content;
    padding: 0 10px;
}

.wardrobePage .pantiesPics img {
    width: 100%;
    aspect-ratio: 1 / 1; /* keeps perfect square */
    object-fit: cover; /* fill without distortion */
    display: block;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.wardrobePage .lingeriePics {
    position: relative;
    margin: 0 auto 30px auto; /* center horizontally */
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr)); /* desktop default */
    gap: 25px;
    align-items: center;
    max-width: 960px; /* keeps total width reasonable */
    width: fit-content;
    padding: 0 10px;
}

.wardrobePage .lingeriePics img {
    width: 100%;
    aspect-ratio: 1 / 1; /* keeps perfect square */
    object-fit: cover; /* fill without distortion */
    display: block;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.wardrobePage .cosplayPics {
    position: relative;
    margin: 0 auto 30px auto; /* center horizontally */
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr)); /* desktop default */
    gap: 25px;
    align-items: center;
    max-width: 960px; /* keeps total width reasonable */
    width: fit-content;
    padding: 0 10px;
}

.wardrobePage .cosplayPics img {
    width: 100%;
    aspect-ratio: 1 / 1; /* keeps perfect square */
    object-fit: cover; /* fill without distortion */
    display: block;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.wardrobePage .contactButton {
    display: flex;
    /*width: 800px;*/
    align-items: center;
    justify-content: center;
}

.wardrobePage .contactButton .link-btn {
    margin-top: 35px;
    /*margin: 0 50px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    /*flex: 1;*/
    text-align: center;
}

/* Tablet: 3 columns */
@media (max-width: 1024px) {
    .wardrobePage .pantiesPics {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

/* Small tablets / large phones: 2 columns */
@media (max-width: 768px) {
    .wardrobePage .pantiesPics {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
    .wardrobePage .pantiesPics {
        grid-template-columns: minmax(200px, 1fr);
    }
}

/***********************************/
/*********Toybox Page CSS**********/
/**********************************/

.toyBoxPage {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
    padding: 120px 0 0 0;
}

.toyBoxPage h2 {
    padding-top: 40px;
}

.toyBoxPage p {
    text-align: center;
}

.toyBoxPage img:hover {
    transform: scale(2);
}

.toyBoxPage .dildoPics {
    position: relative;
    margin: 0 auto 30px auto; /* center horizontally */
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr)); /* desktop default */
    gap: 25px;
    align-items: center;
    max-width: 960px; /* keeps total width reasonable */
    width: fit-content;
    padding: 0 10px;
}

.toyBoxPage .dildoPics img {
    width: 100%;
    aspect-ratio: 1 / 1; /* keeps perfect square */
    object-fit: cover; /* fill without distortion */
    display: block;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.toyBoxPage .plugPics {
    position: relative;
    margin: 0 auto 30px auto; /* center horizontally */
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr)); /* desktop default */
    gap: 25px;
    align-items: center;
    max-width: 960px; /* keeps total width reasonable */
    width: fit-content;
    padding: 0 10px;
}

.toyBoxPage .plugPics img {
    width: 100%;
    aspect-ratio: 1 / 1; /* keeps perfect square */
    object-fit: cover; /* fill without distortion */
    display: block;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.toyBoxPage .contactButton {
    display: flex;
    /*width: 800px;*/
    align-items: center;
    justify-content: center;
}

.toyBoxPage .contactButton .link-btn {
    margin-top: 35px;
    /*margin: 0 50px;*/
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    color: #ffffff;
    background: linear-gradient(rgba(224, 169, 185, .95), rgba(224, 192, 211, .95)), url(../img/hero-bg.jpg);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    /*flex: 1;*/
    text-align: center;
}

/* Tablet: 3 columns */
@media (max-width: 1024px) {
    .toyBoxPage .dildoPics {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }

    .toyBoxPage .plugPics {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }

    .toyBoxPage .vibePics {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
    }
}

/* Small tablets / large phones: 2 columns */
@media (max-width: 768px) {
    .toyBoxPage .dildoPics {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .toyBoxPage .plugPics {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .toyBoxPage .vibePics {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
    .toyBoxPage .dildoPics {
        grid-template-columns: minmax(200px, 1fr);
    }

    .toyBoxPage .plugPics {
        grid-template-columns: minmax(200px, 1fr);
    }

    .toyBoxPage .vibePics {
        grid-template-columns: minmax(200px, 1fr);
    }
}