body {
    padding-top: 20px;
    background-image: url('images/custom.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #333;
    font-family: Arial, sans-serif;
}

.hero {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    margin-bottom: -50px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.container {
    max-width: 800px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.lead {
    font-weight: bold;
}

.contact-info {
    margin-top: 20px;
}

.contact-info a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.contact-info a:hover {
    background: #0056b3;
}

.language-selector {
    position: absolute;
    top: 10px;
    right: 10px;
}

.language-selector select {
    padding: 5px;
}

.flag-icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 9999;
    font-size: 0.95rem;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent button {
    margin-left: 10px;
    padding: 6px 10px;
    border: 0;
    border-radius: 6px;
    background: #007bff;
    color: #fff;
}

.cookie-consent button:hover {
    background: #0056b3;
}

.hero-menu {
    margin-top: 18px;
}
/* Hero menu buttons – silver theme */
.hero-menu .btn {
    background-color: #c0c0c0;      /* silver */
    border-color: #a9a9a9;
    color: #000;
}

.hero-menu .btn:hover {
    background-color: #b0b0b0;
    border-color: #909090;
    color: #000;
}

.hero-menu .btn:focus,
.hero-menu .btn:active {
    background-color: #a9a9a9;
    border-color: #808080;
    color: #000;
    box-shadow: none;
}
/* ==============================
   TOP NAVIGATION BAR
============================== */

#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: center;

    padding: 10px 0;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
}

/* Ensure buttons look compact and elegant */
#top-nav .btn {
    margin: 0 6px;
}

/* Push page content down so it does not hide under nav */
body {
    padding-top: 80px;
}

