/* style.css - basic styling for all 5 pages */

/* Basic settings for the whole page */
body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #222222;
    margin: 0;
    padding: 0;
}

/* Top bar with logo and nav links */
.navbar {
    background-color: #2f4f4f;
    padding: 10px;
    text-align: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 18px;
}

.logo {
    height: 40px;
}

/* Hero section with background image (used on homepage) */
.hero {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

/* Simple heading style */
h1 {
    font-size: 32px;
}

h2 {
    font-size: 24px;
    color: #2f4f4f;
}

/* Normal paragraph text */
p {
    font-size: 16px;
    line-height: 1.5;
}

/* General spacing for sections on the page */
.section {
    padding: 20px 40px;
}

/* Destination boxes (simple box, no shadow, no rounded corners) */
.destination {
    border: 1px solid #cccccc;
    padding: 10px;
    margin-bottom: 20px;
    width: 250px;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}

.destination img {
    width: 100%;
}

/* Simple table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #999999;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #2f4f4f;
    color: white;
}

/* Video size */
video {
    display: block;
    margin-top: 10px;
}

/* Simple contact form styling */
input, textarea {
    display: block;
    margin-bottom: 10px;
    padding: 6px;
    width: 250px;
}

/* Footer at the bottom of every page */
.footer {
    background-color: #2f4f4f;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
