body {
    margin: 0;
    font-family: Georgia, serif;
    background-color: #f6f4ef;
    color: #222;
}

header {
    text-align: center;
    padding: 40px;
}

header h1 {
    font-size: 64px;
    margin-bottom: 10px;
}

header p {
    font-size: 22px;
    color: #666;
}

header img {
    width: 90%;
    max-width: 1400px;
    border-radius: 12px;
}
.hero {
    height: 100vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
        ),
        url("images/fishfarm.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}
.hero h1 {

    font-size: 5rem;

    margin: 0;
}

.hero p {

    font-size: 1.5rem;

    margin-top: 20px;
}
nav {

    position: absolute;

    top: 30px;
    left: 50px;
    right: 50px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}
nav ul {

    list-style: none;

    display: flex;

    gap: 35px;

    margin: 0;
    padding: 0;
}
nav a {

    color: white;

    text-decoration: none;

    font-size: 18px;
}
nav a:hover {

    color: #d8c28a;
}
.logo {

    font-size: 24px;

    font-weight: bold;

    color: white;
}
.journeys {

    padding: 80px 10%;
    background: white;

}

.journeys h2 {

    text-align: center;
    font-size: 2.8rem;

    margin-bottom: 60px;

}

.cards {

    display: flex;

    justify-content: center;

    gap: 40px;

    flex-wrap: wrap;

}

.card {

    width: 450px;

    background: white;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 8px 25px rgba(0,0,0,0.1);

}

.card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

}

.card h3 {

    padding: 20px 25px 10px;

}

.card p {

    padding: 0 25px 25px;

    line-height: 1.6;

}

.card a {

    display: inline-block;

    padding: 0 25px 25px;

    text-decoration: none;

    color: #4d7a5a;

    font-weight: bold;

}