

/*--- General site layout + default styling ---*/

body {
    margin: 0;
    min-height: 100vh;
    display: flex; /* Vertical layout of main elements */
    flex-direction: column;
    align-items: center;
    line-height: 1.5; /* Make default line height more accessible */
    font-family: sans-serif; 
}

* {
    box-sizing: border-box;
}

main {
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 6em;
}

header {
    border-bottom: 1px solid #253c8a;
    margin-bottom: 0em;
    align-self: stretch;
}

.travel-logo {
    margin: 15px;
    width: 150px;
}

footer {
    margin-top: auto;
    background-color:#ffffff;
    align-self: stretch;
    text-align: center;
    padding-bottom:0.5em;
    padding-top:1em;
}

h1,h2,h3,h4,h5,h6 {
    color: #253c8a;
    margin-top: 1em;
    margin-bottom: 0.3em;
    font-weight: normal;
}

p {
    margin-top: 2 em;
    margin-bottom: 2 em;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 7em;
    background-color:#ffff
}

.site-logo {
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: auto;
    font-size: 2em;
    font-weight: bold;
}
.navigation {
    display: flex;
    width: 50%;
}


.navigation-link {
    color:#253c8a;
    padding: 0.1em;
    text-decoration: none;
    font-weight: 700;
    padding-right: 10px;
       
}

.navigation-link:hover {
    color: rgb(243, 195, 0)
}

/* Table styling */

table {
    margin: 2em 0;
    border-collapse: collapse;
}

thead {
    background-color: #eaebf5;
}

th, td {
    border: 1px solid #d7d7d7;
    padding: 0.5em 0.8em;
    text-align: left;
}


/* Form styling */

form {
    max-width: 40em;
    border: 1px solid #e5e5e5;
    /* background-color: #f3f3f3; */
    margin: 2em 0;
}


label {
    font-size: 0.9em;
}

input[type='text'], input[type='email'], textarea {
    border-style: solid;
    border-width: 1px;
    border-color: #000000;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.3em;
}

input[type='radio'] {
    display: inline;
    margin-right: 0.5em;
}

textarea {
    resize: none;
}
input[type='submit'] {
    width: auto;
    padding: 0.5em 2em;
    background-color: #1e3da3;
    color: white;
    border-style: none;
    border-radius: 0.3em;
    margin: 1.5em 0 0 0;
}

.form-header {
    margin-top: 0;
}

.form-description {
    margin-bottom: 1.5em;
}

img{
    width:30%;
    height: 100px;
}

a{
    text-decoration: none;
}

.background-color {
 background-color: rgba(255, 255, 255, 0.8);
 padding-left: 1em;
 padding-bottom: 1em;
 width: 1000px;
}

ol {
    list-style: none;
}

.icons {
    align-items: center;
    font-size:  2em;
}

i, footer, footer a {
    color:rgb(0, 0, 0)

}
.nav-links{
    display: flex;
    margin-left: auto;  
}

.index-background {
    background-image: url(images/Luxury.jpg);
}

.service-background {
    background-image: url(images/Reef.jpg)
}

.contact-background {
    background-image: url(images/Snowboard.jpg)
}

.service-container{
    display: flex;
    width: 1000px;
    
}

.services-info {
   padding-right: 20px;
}
