body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
    color: #333;
}

header {
    background: #002147;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    position: relative;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}



.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: black;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.tour-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.tour-card h3 {
    margin: 15px;
}

.tour-card p {
    margin: 0 15px 20px;
}

.tour-hero img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}

.tour-content {
    padding: 20px 30px;
}

.button {
    display: inline-block;
    background: #002147;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.contact-section {
    padding: 30px;
}

form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background: #002147;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
}
