/*
Theme Name: DDA
Theme URI: https://dirtydogairsoft.co.uk/
Description: DDA
Author: DDA
Author URI: https://dirtydogairsoft.co.uk/
Version: 1.0
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

:root {
    --dda-red: #9c2222;
    --dda-red-light: #ac2f2f;
    --dda-white: #fefefe;
    --dda-grey: #4a4a4a;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* tags */

html {
    font-family: "Raleway", sans-serif;
    color: var(--dda-grey);
}

p {
    margin-bottom: 1em;
}

a {
    text-decoration: none;
}

h2 {
    color: var(--dda-red);
    font-size: 2em;
    margin-bottom: 1em;
    text-align: center;
}

h3 {
    font-size:1.5em;
    color: var(--dda-red);
    margin-bottom: 1em;
}

/* colours */

.white-text {
    color: var(--dda-white)
}

/* generic */

.content-wrap {
    width:100%;
    margin:0 auto;
    padding:0 1em;
}

@media (min-width: 1200px) {
    .content-wrap {
        max-width: 1200px;
    }
}

.section-spacing {
    margin-bottom: 3em;
}

/* header */

#logo-wrap {
    display: flex;
    justify-content: center;
    padding: 1em 0;
}

#logo {
    max-width: 150px;
    width: 100%;
    height:auto;
}

#navigation-wrap {
    background:var(--dda-red);
}

#navigation-wrap ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

#navigation-wrap ul li {
    padding: 1em;
    flex-basis: 20%;
    text-align: center;

    &:hover {
        background-color: var(--dda-red-light);
    }
}

#navigation-wrap ul li a {
    color: var(--dda-white);
  text-decoration: none;
}

/* main content */

.responsive-embedded-video {
    height:0;
    max-width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    overflow:hidden;

    & iframe, & object, & embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

.pre-game-day-times-wrap {
    display: flex;
    gap: 1em;
    margin-top: 2em;
    margin-bottom: 1em;
    flex-wrap: wrap;

    .pre-game-day-time-item {
        width:100%;
        text-align: center;
        
        .pre-game-day-time {
            font-size: 2em;
            border-radius: 50%;
            border: 4px solid;
            padding: 1em;
            max-width: 180px;
            height: 180px;
            line-height: 100px;
            display: block;
            margin: 0 auto 1em auto;
        }
    }
}

@media (min-width: 650px) {
    .pre-game-day-times-wrap {
        flex-wrap: nowrap;

        .pre-game-day-time-item {
            width: 33.33%;
        }
    }
}

.price-details-container {
    display:flex;
    flex-wrap: wrap;
    gap: 1em;

    table {
        td, th {
            border: 1px solid #ccc;
            padding: 1em;
        }
    }

    .price-details-video {
        flex-basis: 100%;
    }
}

@media (min-width: 900px) {
    .price-details-container {
    flex-wrap: nowrap;

    table {
        width: 50%;
    }

    .price-details-video {
        flex-basis: 50%;
    }
}
}

#map_wrap, #google_map{
	max-width:1200px;
	width:100%;
	height:320px;
}

.contact-wrap {
    background-color: var(--dda-red);
    padding:1em 0;
    margin-bottom: 1em;
     
    ul {
        text-align: center;
        
        li {
            margin-bottom: 0.5em;
        }

        a {
            color: var(--dda-white);
        }

        .social-media-icons {
            display:flex;
            gap: 1em;
            justify-content: center;
            align-items: center;
        }
    }
}

/* footer */
.footer-wrap {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;

    .copyright {
        margin: 0.5em 0;
    }

    #ukara {
        overflow: hidden;
    
        #ukara_logo {
            max-height: 50px;
            width: auto;
        }
    }

    a {
        color: var(--dda-red)
    }
	
	#menu-footer-menu {
		display:flex;
		justify-content:center;
		gap:1em;
	}
}


/* 404 */

.not-found {
    padding: 2em; 
    text-align: center;
}









