@charset "UTF-8";

/*------------------------*/
/* BASIC SETUP            */
/*------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    text-rendering: optimizeLegibility; 
    overflow-x: hidden;
}

clearfix {
    zoom: 1;
}

.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*------------------------*/
/* REUSABLE COMPONENTS    */
/*------------------------*/


.row {
    max-width: 1140px;
    margin: 0 auto;
}

.background {
    background: rgba(237, 230, 192, 0.7);
    padding: 2%;
}


/* ----- HEADINGS ----- */

h1, h2, h3 {
    color: #1a0b50;
}



/* ----- PARAGRAPHS ----- */

p {
    line-height: 1.25;
}

.calendar {
    line-height: 1.5;
}
/* ----- LINKS ----- */



/* ----- IMAGES ----- */

.mainimage {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    
}

.navlogo {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5%;
}

.biopic {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.gallery {
    width: 100%;
    padding: 2%;
}

.poster {
    width: 50%;
}

/* ---- OTHER ---- */

.video {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video iframe{
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/*------------------------*/
/* HEADER & NAVIGATION    */
/*------------------------*/


.header {
    overflow: hidden;
    background: rgba(237, 230, 192, 0.7);
}

.topnav {
  overflow: hidden;
  background-color: transparent;
}

.topnav a {
  float: left;
  display: block;
  color: #1a0b50;
  text-align: center;
  padding: 20px 40px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

.topnav a:hover {
  color: #6f7476;
}

.topnav .icon {
  display: none;
}


/* ----

.header a {
    float: left;
    color: #1a0b50;
    text-align: center;
    padding: 2%;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.header a:hover {
    color: #6f7476;
}

.header a:active {
    color: #6f7476;
}

---- */
/*------------------------*/
/* BODY                   */
/*------------------------*/

body {
    background: url(magenta-damask-2.jpg) no-repeat center fixed;
    background-color: #423839;
}

/* ---- CALENDAR ICON ---- */

.date {
    display: block;
    width: 100px;
    height: 110px;
    margin: 30px auto;
    background: #ede6c0;
    text-align: center;
    position: relative;
}

.date .month {
    background: #1a0b50;
    display: block;
    padding: 8px 0;
    color: #ede6c0;
    font-size: 12px;
    font-weight: bold;
    border-bottom: 2px solid #333;
    box-shadow: inset 0 -1px 0 0 #666;
}

.date .day {
    display: block;
    margin: 0;
    padding: 10px 0;
    font-size: 48px;
    box-shadow: 0 0 3px #1a0b50;
    position: relative;
}

.date .day::after {
	content: '';
	display: block;
	height: 100%;
	width: 96%;
	position: absolute;
	top: 3px;
	left: 2%;
	z-index: -1;
	box-shadow: 0 0 3px #ccc;
}

.date .day::before {
	content: '';
	display: block;
	height: 100%;
	width: 90%;
	position: absolute;
	top: 6px;
	left: 5%;
	z-index: -1;
	box-shadow: 0 0 3px #ccc;
}

/* ---- CONTACT FORM ---- */

input[type=text], [type=email], textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: #f2eae2;
}

input[type=submit] {
    background-color: #1a0b50;
    color: #ede6c0;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.container {
    padding: 20px;
}


#loading-img{
display:none;
}
.response_msg{
margin-top:10px;
font-size:13px;
background:#E5D669;
color:#ffffff;
width:250px;
padding:3px;
display:none;
}

/*------------------------*/
/* FOOTER                 */
/*------------------------*/

footer {
    color: #1a0b50;
}