/* Reset basic spacing */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f2f2f2;
    color: #333;
}

/* Header */
#banner {
    background-color: #01411C;
    color: white;
    text-align: center;
    padding: 25px;
}
h1 {
    margin-bottom: 10px;
    color: #fcfcfc;
    background-color: rgba(67, 126, 35, 0.5);
}

/* Navigation bar */
nav {
    background-color: #01411C;
    text-align: center;
    padding: 10px;
}

nav a {
    color: rgb(44, 75, 24);
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero section */
#banner{
    background-image: url("pictures/banner3.jpg");
    background-size: cover;
    background-position: center;
    height: 300px;
    color: rgb(23, 81, 11);
    text-align: center;
    line-height: 300px;
    font-size: 36px;
    font-weight: bold;
}

/* Main content box */
.container {
    width: 80%;
    margin: 30px auto;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
}

/* Images */
.container img {
    width: 100%;
    margin: 20px 0;
    border-radius: 6px;
}

/* Headings */
h2, h3 {
    color: #01411C;
}

/* Lists */
ul {
    margin-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background-color: #01411C;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

#main{
    height: 100%;
}

.food-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

.food-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.food-item:hover {
    background-color: #f0f0f0;
}

.food-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover effect ONLY for historical places */
#history-place{
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#history-place :hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#history-place img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#history-place img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Text + Image layout */
.text-image {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;

    /* Transition for hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image styling */
.text-image img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;

    /* Image hover transition */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Text styling */
.text-image p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* Hover effect on whole block */
.text-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Hover effect on image */
.text-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
