@charset "utf-8";
/* Gibson Girls Beauty */

/* PREVENT PADDING FROM AFFECTING VIEWPORT WIDTH */
html {
	box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
	background-color: #FFF;
	font-size: calc(1em + 0.15vw);
	margin: 0;
  width: 100%;
}

p {
  font-family: benton-sans, sans-serif;
  color: #6B5743;
}

/* HEADER */
header {
	margin: 0;
	position: fixed;
	text-align: center;
	width: 100%;
	height: 112px;
	background-color: #FFF;
  z-index: 999;
}

header table {
	margin: 0 auto;
	height: 112px;
  width: 100%;
}

header table tr:nth-child(2) td {
  background: linear-gradient(90deg, #FFF, #6B5743, #FFF 100%);
  height: 2px;
  top: 112px;
}

header a.page {
	text-align: center;
  font-size: 1.15em;
	padding: 0 20px;
	color: rgb(144,113,85);
	text-decoration: none;
	transition: color .4s;
	-webkit-transition: color .4s;
}

header a.page:hover {
	color: rgba(96,75,56);
}

header a span{
	display: table-cell;
	vertical-align: middle;
}

header img.logo {
	height: 85px;
	min-height: 80px;
	padding: 0;
}

img.social {
  height: 30px;
  padding: 0 2px;
  cursor: pointer;
  opacity: 1.0;
  transition: opacity 0.4s;
  -webkit-transition: opacity 0.4s;
}

img.social:hover {
  opacity: 0.8;
}

.break {
  display: none;
}

.menu, .close {
  display: none;
  height: 80px;
  padding: 10px;
  float: right;
  cursor: pointer;
}

.menu.active {
	display: none;
}

.close.active {
	display: inline;
}

/* HOME */
img.home {
  max-height: 95vh;
  padding-top: 112px;
	margin: 0 auto;
  display: block;
  max-width: 100%;
}

#home {
  opacity: 0;
  transition: opacity 1.0s;
}

table.services-cities {
  margin: 0 auto;
}

table.services-cities tr td img {
  max-height: 10vh;
}

.carousel-container {
	margin: 0 auto;
  height: 10vh;
  width: 100%;
}

.carousel-container img {
  height: 10vh;
  margin: 0 auto;
}

/* ALL PAGES */

#fadecontent {
  opacity: 0.0;
  transition: opacity 1s;
}

.content-container {
	margin: 0 auto;
  top: calc(100vh - 112px);
	padding: 140px 0 0 0;
	width: 60vw;
  /*background-color: rgba(144,113,85,0.2);*/
}

h1 {
	text-align: left;
  font-family: alana, sans-serif;
  font-size: 80px;
  line-height: 20px;
  font-weight: 200;
  color: #6B5743;
  margin-top: 20px;
}

h2 {
  text-align: left;
  font-family: alana, sans-serif;
  font-size: 50px;
  line-height: 50px;
  font-weight: 200;
  color: #6B5743;
}

/* SERVICES */
table.services {
  width: 100%;
  font-family: benton-sans, sans-serif;
  font-weight: 100;
  color: #6B5743;
}

table.services tr td:nth-child(1) {
  width: 33%;
}

table.services tr td:nth-child(2) {
  font-size: 0.9em;
}

#bridal, #gala, #prom, #quinceanera, #photoshoot, #travel {
  display: none;
}

p.contact-us {
  background: #DBD2C8;
  text-align: center;
  padding: 10px 0px;
  cursor: pointer;
  transition: background 0.3s;
}

p.contact-us:hover {
  background: #E9E3DD;
}

/* CONTACT */

a.inquiry {
  display: block;
  text-align: center;
  width: 100%;
  font-family: benton-sans, sans-serif;
  background-color: #D9A7B2;
  padding: 10px 0px;
  margin: 0.1em;
  transition: background-color 0.3s;
  cursor: pointer;
}

a.inquiry:hover {
  background-color: #F9C1CD;
}

#back, #back3 {
  display: none;
}

/* MOBILE MENU OVERLAY */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */    
    height: 0;
    width: 100%;
    position: fixed; /* Stay in place */
    z-index: 50; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); /* Black fallback color */
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
		overflow-y: hidden; /* Disable vertical scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    padding: 8px;
    text-decoration: none;
		cursor: pointer;
    font-size: 36px;
    color: #818181;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {font-size: 20px}
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

/* RESPONSIVE CODE */
@media (max-width: 950px){
  .break {
    display: inline;
  }
  header table {
    line-height: 1.8em;
  }
  header a.page {
    line-height: 0px;
  }
  .content-container {
    width: 80vw;
  }
}

@media (max-width: 700px) {
  .menu {
    display: inline;
  }
  td.pages, td.social {
    display: none;
  }
  header img.logo {
    padding-left: 10px;
  }
  .content-container {
    width: 90vw;
  }
}