a{
  text-decoration: none;  
  color: inherit;
}

body {
    font-family: Arial, sans-serif;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}


h1{
    font-family: "Holtwood One SC", serif;
    color: #2c3e50;
    text-align: center; 
}

.punchline {
    font-family: Arial, sans-serif;
    font-size: 0.525em;
    color: #34495e;
   
    padding: 3px;
    display: inline-block;
    margin-top: 0;
  
}



nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #f7f3f3;
    color: #fff;
}

a.nav-button {
    background-color: #3a47d4;
    color: #fff;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin: 5px;
    font-weight: bold;
}

h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    background-color: #3a47d4;
    color: #f1f1f6;
    font-size: 1.25em;
    font-weight: bold;
    margin: 20px 0 10px;
    text-align: center;
    font-weight: bold;
    font-style: oblique;
    font-stretch: ultra-expanded;
  
    width:85%;
  
}


.h-wrapper{
    display: inline-block;
    align-items: center;
    justify-content: center;
    width:100%;
    margin-left:auto;
    margin-right:auto;
}


ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin: 0 auto;
    width: 90%;
}

ul li {
    font-size: 1.2em;
    margin: 5px 0;
}

.video-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

button.cta-button {
    background-color: #FF0000;
    border-radius:8px;
    border: 2px solid black;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    margin: 10px 0;
}

.paragraph-container {
    border: 2px solid #000;
    padding: 10px;
    margin: 8px auto;
    width: 90%;
   
    font-size:1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
p{
margin-left:10px;    
}

form {
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
}

form label {
    margin: 10px 0 5px;
}

form input, form select {
    padding: 10px;
    margin: 5px 0 10px;
    font-size: 1em;
    width: 90%;
}

form button {
    width: 90%;
}

footer nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #000;
    color: #fff;
    margin-top: 20px;
}
.price {
    font-size: 0.85em; /* Half the size of service text */
    padding: 2px 5px;
    border: 2px solid rgb(8, 0, 0); /* Red border */ 
    background: rgb(250, 248, 248); /* Yellow background */
    color: rgb(15, 0, 0); /* Red text color */
    font-weight: bold;
 
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 22px; /* Slightly bigger than inherited */
    font-weight: 900; /* Much bolder */
    display: inline; /* To keep it in line with the price text */
    margin: 0; /* Remove default margins */
    border: 2px solid rgb(8, 0, 0); /* Red border */
    background: rgb(241, 246, 208); /* Yellow background */
    color: rgb(15, 0, 0); /* Red text color */
    border-radius: 5px;
    padding: 0.25em;
}


.contact-buttons {
    display: flex;
    justify-content: space-between;
 padding:5px;
}

.contact {
   
    background-color: #3a47d4; /* Light navy blue */
    color: white; /* Pure white font color */
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-decoration: none; /* Remove underline */
}

.contact .icon {
    margin-right: 10px;
}

.phone {
    justify-content: flex-start;
}

.email {
    justify-content: flex-end;
}

h4 {
    padding: 1em;
    background-color: #3a47d4;
    color: #f1f1f6;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px;
    text-align: center;
    font-weight: bold;
    font-style: oblique;
    font-stretch: ultra-expanded;
}

.center-left {
    display: inline-block;
    text-align: left;
}

#explain{
    background-color: yellow;
    text-align: right;
    margin: 0 auto;
}
#honeypot-elimator{
    display:none;
  }

  select {
    padding: 10px; /* Padding of 10 pixels */
    max-width: 75%; /* Maximum width of 75% */
    border: 2px solid #ccc; /* Fancy border */
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); /* Shadow */
    border-radius: 5px; /* Optional: Rounding the corners for a nicer look */
    
    background-color: #f9f9f9; /* Optional: Light background color */
}

.arcade-button {
    background: linear-gradient(to bottom, #e60000 0%, #cc0000 100%);
    border: 3px solid #990000;
    border-radius: 10px;
    box-shadow: 0 5px #660000, 0 10px 15px rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 30px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #990000;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    outline: none;
}

.arcade-button:before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 1;
}

.arcade-button:active {
    top: 2px;
    box-shadow: 0 2px #660000, 0 5px 10px rgba(0, 0, 0, 0.5);
}

.arcade-button:hover {
    background: linear-gradient(to bottom, #ff1a1a 0%, #cc0000 100%);
    box-shadow: 0 6px #660000, 0 12px 18px rgba(0, 0, 0, 0.6);
}

.custom-strong {
    font-weight: bold; /* Default behavior of strong */
    color: #2f2e2e;    /* Custom text color */
   font-size:1.25em;
    padding: 5px;
    border-color:rgb(8, 0, 0);     /* Padding around the text */
    border-radius: 3px; /* Rounded corners */
  
}

iframe {
   
  }

  .link-style {
    text-decoration: none; /* Remove the default underline */
    color: rgb(36, 34, 34); /* Inherit the text color from the parent */
    font-size: 0.95em; /* Slightly smaller text */
    background-color: #f0e8e8; /* Slightly off-white background */
    border: 1px solid transparent; /* Invisible border */
    padding: 2px 4px; /* Add some padding to create space around the text */
    border-radius: 4px; /* Gentle curve around the background */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
    cursor: pointer; /* Indicate the element is clickable */
}

.link-style:hover {
    background-color: #cfeaf5; /* Slightly darker off-white on hover */
    color: #0073e6; /* Change text color on hover */
}

.booker {
    background-color: #ebc2c2; /* Slightly darker off-white on hover */ 
}
  @media (min-width: 1000px) {
    iframe {
    height: 500px;
    }
   a.nav-button {
       
        padding: 20px 40px;
        font-size: 1.5em;
        cursor: pointer;
       
    }

    .contact {
        font-size: 1.25em;
       
    }

    .phone {
        justify-content: center;
        margin-left:20%;
    }
    
    .email {
        justify-content: center;
        margin-right:20%;
    }

    .paragraph-container {
        font-size:1.5em;
       
    }

    button.cta-button {
     
        font-size: 1.75em;
       
    }
    header .banner {
        display: flex;
        align-items: left;
        justify-content: space-between;
        padding: 10px;
        background-color: #fff;
     
        height: 12vh;
    }
    header img {
        height: 125px;
        margin-right:20%;
       
    }

    header h1 {
        color: #000;
        font-size: 2em;
        margin-left:20%;
    }

    .iconic {
        height:80px;
        margin-right:50px;
     
       
    }

    h2{
        height:80px;
    }

    .contact {
font-size:1em;
    }
    
  }



  @media (max-width: 999px) {

    header .banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        background-color: #fff;
       
        height: 12vh;
    }

    

  header img {
    max-height: 100%;
   
}

header h1 {
    margin-top: 30px;
    color: #000;
    font-size: 1.6em;
   padding:0.1em;
}

.iconic {
    height:50px;
    margin-right:35px;
 
   
}

h2{
    height:50px;
}

.contact {
    font-size:0.75em;
        }
        
  }

