
/************************************************************************************
1. style inherited from template_proc.php which will be event_detail.php
*************************************************************************************/




/************************************************************************************
1. BASE TYPOGRAPHY & DEFAULTS
   Standardizing the font stack and colors across all elements to remove redundancy.
*************************************************************************************/
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

body, tab, tab a, fieldset, p, h1, h2, h3, h4, h5, h6,
.name, .date, .blurb, .more_info, .venue_title, 
#details_box, #select_tickets, #left_column, #right_column,
heading, line_under_heading, input, .title_header {
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: normal;
}

body {
    background: #E1E0E0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, p { color: #272626; }
h1 { font-size: 1.5em; font-weight: 800; }
h2 { font-size: 1.2em; }

p { font-size: 16px; line-height: 1.6em; text-align: left; color: #373737; }
p a { color: grey; text-decoration: none; }
p a:hover { color: #F2BC4F; }

/************************************************************************************
2. FORMS & BUTTONS
   Grouped shared button behaviors while keeping specific colors separate.
*************************************************************************************/
label, input, button {
    font-size: inherit;
    padding: 0.2em;
    margin: 0.1em 0.2em;
    box-sizing: content-box;
}

input[type='text'] {
    border: 1px #9A9998 solid;
    border-radius: 5px;
    padding: 5px 4px;
    width: 230px;
}

input[type='checkbox'] { box-shadow: none; }

/* Shared Button Logic */
#search-button, #proceed-button, #voucher_button, input[type='submit'] {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    border-radius: 5px;
    transition: background 0.2s;
}

#search-button, #proceed-button {
    font-size: 20px;
    font-weight: 300;
    padding: 9px 36px;
    color: #fff;
    border: 0;
}

#search-button { background: orange; }


#proceed-button { background: #fdc444; color: black; font-weight: 500;}


#proceed-button:disabled { background-color: #ccc; cursor: not-allowed; }

#search-button:hover, #proceed-button:hover, #voucher_button:active {
    background: #eea80b;  /* #AB0202;*/
    color: white;
	
	
}

input[type='submit'] {
    background: #f3f3f3;
    border: 1px #9A9998 solid;
    padding: 9px 15px;
    font-weight: bold;
    width: 170px;
    margin: 0 auto;
    display: block; /* Replaces invalid float: center */
}

/************************************************************************************
3. MAIN STRUCTURE & LAYOUT
   The core grid and column definitions.
*************************************************************************************/
#overall_container {
    width: 95%;
    margin: 10px auto;
   
	padding: 10px;
	padding-top: 70px;
    border: 1px #E1DDDD solid;
    overflow: auto;
	
}

#left_column {
    width: 60%;
    float: left;
    min-height: 30px;
    background: white;
}

#left_column_content {
		padding-left: 20px;
		padding-right: 20px;
	}

#right_column {
    width: 35%;
    float: right;
    min-height: 30px;
    padding: 10px;
    background: white;
    border: solid 1px #CCCCCC;
    text-align: center;
}

#container_for_success_confirmation, .container_for_success_confirmation {
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    min-height: 350px;
	margin-top: 120px;
}



#advert_mobile
						{
							display: none;
						}




#event_image {
    width: 60%;
    float: left;
    height: 400px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

/************************************************************************************
4. COMPONENTS (Events, Tables, etc.)
*************************************************************************************/
.boxes { display: table; width: 100%; background: #E1E0E0;}
.box { display: table-cell; text-align: center; vertical-align: middle; width: 25%; line-height: 2.0em; }

.event {
    background: white;
    border-radius: 0 0 10px 10px;
    margin: 0 20px 20px 0;
    height: 375px;
    position: relative;
    box-shadow: 4px 4px 4px #D6D4D4;
}

.name { font-size: 1.2em; color: #494949; font-weight: 500; text-align: center; padding: 8px 10px; }
.date { font-size: 1.2em; font-weight: bold; color: #494949; margin-top: 15px; }

.donation_amount {
    display: inline-block;
    width: 70px;
    height: 1.2em;
    line-height: 1.2em;
    text-align: right;
    border: 1px solid #cccccc;
    background: #F8F5F5;
    border-radius: 3px;
    padding: 1px 5px;
}

/* DivTable.com Styles */
.divTable { display: table; width: auto; }
.divTableRow { display: table-row; }
.divTableCell, .divTableHead { display: table-cell; padding: 3px 10px; border: 0; }
.divTableHeading, .divTableFoot { display: table-header-group; background: #EEE; font-weight: bold; }

#select_tickets {
	
	background: #F8F5F5;
    border: solid 1px #CCCCCC;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

#details_box {
border: solid 1px #CCCCCC; padding: 10px; margin: 0 auto; 
background: #F8F5F5;
    border: solid 1px #CCCCCC;
	margin-bottom: 10px;
	padding-bottom: 10px;
}




#content_container {
	
	background: white;
	width: 98%;
	margin: 0 auto;
	
}

#voucher_box {
		border: 1px solid #CCCCCC;
		background: #F8F5F5;
		display: none;
		padding: 10px 10px 30px;
		text-align: center;
		margin-bottom: 30px;
	
	}
	
	
	#voucher_button {
		border: 1px solid #CCCCCC;
		background: grey;
		
		color: white;
		padding: 5px 10px;
		
		
	}
	
	
	
#table_calculations td {

text-align: left;

}	


/************************************************************************************
5. MEDIA QUERIES (Responsive Adjustments)
*************************************************************************************/


/* --- TABLET VIEW (2 Items Across) --- */

@media screen and (max-width: 1050px) {
    .box {
        display: inline-block;
        width: 40%;
        margin: 0 auto 15px auto;
    }

    #overall_container { width: auto; padding: 3px; }
    
    input#searchTerm, #searchButton { 
        width: 90%; 
        display: block; 
        margin: 10px auto; 
    }

    .venue_title, .venue_sub_title { 
        text-align: center; 
    }

    #artist_image_desktop_holder { display: none; }
    #img_div_for_mobile { display: block; }

    #sidebar { min-height: 0; border: 0; padding-top: 10px; background: none; }
    #content { background: #f8f8f8; }


		#content_container {
		
		width: 96%;
		margin: 0;
		margin-top: 80px;
		
	}

		#left_column {
		width: 55%;
		
	}
	
	
	.container_for_success_confirmation {
    width: 95%;
    margin: 0 auto;
    padding: 10px;
    background: #fff;
    min-height: 350px;
	margin-top: 120px;
}
	
	



}













/* --- MOBILE VIEW (1 Item Across) --- */
@media screen and (max-width: 780px) {
    .box {
        display: block;
        width: 95%;
        margin: 0 auto 15px auto;
    }
	
	
	.event {
		
		margin: 0px;
		
	}

    #overall_container { width: auto; padding: 3px; }
    
    input#searchTerm, #searchButton { 
        width: 90%; 
        display: block; 
        margin: 10px auto; 
    }

    .venue_title, .venue_sub_title { 
        text-align: center; 
    }

    #artist_image_desktop_holder { display: none; }
    #img_div_for_mobile { display: block; }

    #sidebar { min-height: 0; border: 0; padding-top: 10px; background: none; }
    #content { background: #f8f8f8; }



	#content_container {
		
		width: 96%;
		margin: 0;
		margin-top: 80px;
		
	}

	#left_column {
		width: 100%;
		float: none;
		min-height: 30px;
		background: white;
	}

	#right_column {
		margin-top: 50px;
		width: 100%;
		float: none;
		min-height: 30px;
		padding: 10px;
		background: white;
		border: solid 1px #CCCCCC;
		text-align: center;
	}
	
	


}