/* Resetting default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f3dc;
    color: #333;
}

.logo {
    width: 120px;
    display: block;
    margin: 0 auto 10px auto;
}

/* Language content */
.lang-content { 
    display: none; 
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
    color: #555;
}
.lang-content.lang-en { display: block; } /* English shown by default */

/* Header styling */
header {
    background-color: #0066cc;
    padding: 30px 0;
    text-align: center;
    position: relative;
}

header h1 {
    color: #ffcc00;
    font-size: 2.5em;
}

header p {
    color: white;
    font-size: 1.2em;
}

/* Simulated barcode background with waves */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, #0066cc 0px, #0066cc 20px, #ffcc00 30px, #ffcc00 100px);
    opacity: 0.1;
    animation: wave 20s ease-in-out infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Language switcher */
.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
}

.lang-btn {
    background-color: #ffcc00;
    color: #0066cc;
    padding: 8px 16px;
    margin: 0 5px;
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

.lang-btn:hover {
    background-color: #0066cc;
    color: #ffcc00;
}

.lang-btn.active {
    background-color: #0066cc;
    color: #ffcc00;
}

/* About section */
.about {
    padding: 40px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2em;
    color: #0066cc;
}

/* Contact section */
.contact {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2em;
    color: #0066cc;
}

.contact a {
    color: #0066cc;
    text-decoration: none;
}

/* Footer Section */
footer {
    background-color: #f1f1f1;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9em;
    color: #555;
}

.impresso p {
    margin: 5px 0;
}

/* Language content lists */
.lang-content li {
    text-align: left;        /* Align list items to the left */
    margin: 0 auto 20px auto; /* Center the list block with spacing below */
    padding-left: 20px;      /* Indent bullets */
    font-size: 0.9em;          /* Slightly smaller than paragraph text (1.1em) */
    color: #555;             /* Keep consistent with paragraphs */
}
