/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    background: #0b3d91;
    padding: 1rem;
    color: white;
}

header img {
    height: 60px;
    margin-right: 1rem;
}

nav a {
    color: white;
    margin-right: 1rem;
    text-decoration: none;
    font-weight: bold;
}

nav a.active {
    text-decoration: underline;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem;
}

h1,
h2,
h3 {
    color: #0b3d91;
}

/* HERO */
.hero {
    position: relative;
}

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

.hero-text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: white;
    font-size: 2.5rem;
    text-shadow: 2px 2px 6px black;
}

/* NEWSLETTER */
.newsletter form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter input {
    padding: 10px;
    flex: 1;
}

.newsletter button {
    padding: 10px 20px;
    background: #0b3d91;
    color: white;
    border: none;
    cursor: pointer;
}

/* CTA */
.cta {
    text-align: center;
    margin: 3rem 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0b3d91;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* GRID INFO */
.grid-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.grid-info img {
    width: 100%;
    border-radius: 6px;
}

/* TRIPS PAGE */
.trip-descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.trip img {
    width: 100%;
    border-radius: 6px;
}

.trip-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.trip-table th,
.trip-table td {
    border: 1px solid #aaa;
    padding: 10px;
    text-align: left;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.socialmedia a {
    text-decoration: none;
    margin-right: 8px;
}

.socialmedia img {
    width: 24px;
    height: 24px;
}