:root {
    --venice-blue: #055989;
    --venice-blue-dark: #044a73;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    line-height: 1.6;
}

/* --------------------- Header --------------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

header .logo img {
    height: 90px;
}

header nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

header nav ul li a {
    color: var(--venice-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: var(--venice-blue-dark);
}

/* --------------------- Hero / About Us --------------------- */
.hero {
    text-align: center;
    padding: 60px 20px; /* moved closer to top */
    background-color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.about-bullets {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 auto 30px;
    max-width: 600px;
    text-align: left;
    color: var(--venice-blue-dark);
    font-size: 18px;
    font-weight: 500;
}

.about-bullets li {
    margin-bottom: 12px;
}

/* --------------------- Categories --------------------- */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 50px 80px; /* moved closer to About Us */
}

.category {
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.category h3 {
    margin: 25px 0;
    font-weight: 800;
    color: #000;
    font-size: 26px;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

/* --------------------- Map Section --------------------- */
.map-section {
    padding: 80px 50px;
    background-color: #fff;
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 800;
    color: #000;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --------------------- Leaflet Popup --------------------- */
.leaflet-popup-content {
    font-size: 14px;
    font-weight: 600;
}

.leaflet-popup-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.leaflet-popup-content a {
    color: var(--venice-blue);
    font-weight: 600;
}

/* --------------------- Footer --------------------- */
footer {
    text-align: center;
    padding: 25px 20px;
    background-color: #fff;
    color: var(--venice-blue);
    font-weight: 600;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

footer .footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

footer .footer-logos img {
    height: 20px; /* adjust size as needed */
    cursor: pointer;
    transition: opacity 0.3s;
}

footer .footer-logos img:hover {
    opacity: 0.8;
}

footer p {
    margin: 0;
    font-size: 16px;
}


/* --------------------- Logo --------------------- */
.logo a {
    display: inline-block;
}

.logo img {
    cursor: pointer;
}

.logo img:hover {
    opacity: 0.85;
}
