/* General Styles */
body {
    font-family: 'Lato', sans-serif; /* Body font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f4f0; /* Soft off-white resembling parchment */
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-image: url('../images/heritage_background.jpg'); /* Heritage-themed image */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* Blend with overlay for readability */
    background-color: rgba(24, 15, 4, 0.505); /* Dark overlay */
    color: white;
    text-align: center;
    padding: 80px 20px;
}

header h1 {
    font-size: 50px;
    font-family: 'Playfair Display', serif; /* Elegant font */
    margin-bottom: 10px;
}

header p {
    font-size: 24px;
    font-family: 'Lato', sans-serif; /* Simple, readable text */
}

/* Navigation Buttons */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

.button {
    text-decoration: none; /* No underline */
    background-color: #ff5722; /* Vibrant Indian Orange */
    color: white;
    border: 3px solid #ffd700; /* Golden Border */
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, background-color 0.3s;
    display: inline-block;
}

.button:hover {
    background-color: #82d818fb; /* Darker orange */
    transform: scale(1.1); /* Slight grow effect */
}

.button:active {
    background-color: #63e235; /* Darkest orange */
}

/* Call-to-Action Button */
.cta-button {
    background-color: #d4a373; /* Earthy spice color */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c2895e; /* Darker spice tone */
}

/* Transport Gallery Section */
.gallery-section {
    padding: 50px 20px;
    background-color: #fff3e0; /* Soft tan background */
    text-align: center;
}

.gallery-section h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

/* Grid Layout for Images */
.gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between images */
    margin-top: 20px;
}

.image-box {
    flex-basis: calc(20% - 20px); /* Fit 5 images in one row */
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-box:hover {
    transform: scale(1.05); /* Enlarge slightly on hover */
}

.image-box p {
    font-size: 16px;
    padding: 10px;
    color: #333;
    background-color: #d4a373; /* Earthy background */
    margin: 0;
    font-family: 'Lato', sans-serif;
}

/* Form Section */
.form-section {
    padding: 50px 20px;
    background-color: #e0e0e0; /* Light grey */
    text-align: center;
}

.form-section h2 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 12px;
}

form input, form select {
    width: 100%; /* Adjusted to full width */
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

form button {
    background-color: #4caf50; /* Green */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
   width: 100%; /* Full width for consistency */
}

form button:hover {
    background-color: #45a049; /* Darker green on hover */
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Lato', sans-serif;
}
