body {
    font-family: 'Poppins', sans-serif;
	padding: 0;
	margin: 0;
	background-color: #2d1406;
    color: #f5e7c6;
}

h1 {
    font-weight: 600;
    font-size: 65px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

h2 {
    font-weight: 500;
    font-size: 30px;
    padding: 0;
    margin: 0;
}

h3 {
    font-size: 40px;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

p {
    font-size: 25px;
}

.container {
    background-color: #2c1505;
    display: flex;
    justify-content: center;
}

.background-wrapper {
    min-height: 100vh;
    background: url('../img/background.png') top center no-repeat;
    background-size: 2000px auto;
    background-color: #2c1505; 
    background-attachment: scroll;
    overflow-x: hidden;
    width: 2000px;
    box-shadow: 
    -40px 0 60px -20px rgba(0, 0, 0, 0.4),
     40px 0 60px -20px rgba(0, 0, 0, 0.4);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px 0 20px;
    margin-bottom: 60px;
}

.logo {
    width: 40px;
    height: 40px;
}

nav {
    display: flex;
    gap: 30px
}

nav>a {
    color: #f5e7c6;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
}

#languageSwitcher {
    font-weight: 500;
    font-size: 24px;
    color: #f5e7c6;
    cursor: pointer;
}

main {
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px 50px 20px;
}

.heading {
    margin-bottom: 60px;
}

.main_container {
    display: flex;
    gap: 50px;
}

.column {
    flex-basis: fit-content;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info_box {
    padding: 50px;
    border-radius: 20px;
    background-color: #ce5c1e;
    text-align: center;
}

.info_box.even {
    background-color: #f5e7c6;
    color: #ce5c1e;
}

.info_box.even>.svg {
    color: #ce5c1e;
}

.svg {
    width: 50px;
    color: #f5e7c6;
}

.con {
    width: 100%;
}

.conRow {
    display: flex;
    justify-content: space-between;
    width: 90%;
    justify-self: center;
    vertical-align: middle;
    align-items: center;
    margin-top: 20px;
    border-radius: 15px;
    background-color: #f5e7c6;
    padding: 5px 20px;
    color: #2d1406;
}

.conRow>p {
    font-size: 20px;
}

.contactText {
    color: #2d1406;
}

.imergency {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    outline: none;
    box-shadow: none;
    background-color: #8B2F2F;
    border: 15px solid #ce5c1e;
    box-shadow: 0 0 12px 0 #f5e7c6;
}

.imergency:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px 0 #f5e7c6; 
}

.imergency>a {
    font-size: 24px;
    color: #f5e7c6;
    text-decoration: none;
    font-weight: 500;
}

.imergency>a>img {
    width: 70px;
}

footer {
    text-align: center;
    padding: 10px 0;
    font-size: 12px;  
    background-color: #ce5c1e;
}

footer>p {
    color: #f5e7c6;
    padding: none;
    margin: 0;
    font-size: 12px;
}

/* --- Layout and general styles --- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  position: relative;
  z-index: 100;
}

.language-switcher {
  cursor: pointer;
}

/* --- Desktop nav --- */
.desktop-nav {
  display: flex;
}

/* --- Burger icon --- */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.burger div {
  height: 3px;
  background-color: #f5e7c6;
  border-radius: 2px;
  transition: 0.4s;
}

/* --- Burger animation when active --- */
.burger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
  opacity: 0;
}

.burger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile dropdown menu --- */
.mobile-menu {
  position: absolute;
  top: 60px;
  right: 1rem;
  background: #ce5c1e;
  flex-direction: column;
  align-items: center;
  display: none;
  padding: 1rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.mobile-menu .language-switcher {
    position: absolute;
    right: 2rem;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu .language-switcher {
  margin-bottom: 1rem;
}

.mobile-menu.show {
  display: flex;
}

@media screen and (max-width: 1300px) {
    .background-wrapper {
        padding: 0 50px;
        background-size: 1500px auto;
    }
}

@media screen and (max-width: 1000px) {
    h3 {
        font-size: 30px;
    }
    p {
        font-size: 18px;
    }
    .background-wrapper {
        padding: 0;
    }
    nav {
        gap: 12px;
    }
    nav>a {
        font-size: 18px;
    }
    h1 {
        font-size: 50px;
    }
    .main_container {
        display: block;
    }
    .column {
        gap: 20px;
    }
    .column:first-child {
        margin-bottom: 20px;
    }
    .column:second-child {
        flex-direction: column-reverse;
    }
    .con {
        width: fit-content;
    }
    .imergency {
        width: 100px;
        height: 100px;
        border: 10px solid #ce5c1e;
    }
    .imergency>a>img {
        width: 30px;
    }
    .imergency>a {
        font-size: 18px;
    }
}

@media screen and (max-width: 700px) {
    .background-wrapper {
        background-size: 1000px auto;
    }
    .desktop-nav, #languageSwitcher {
        display: none;
    }
   .burger {
        display: flex;
    }
    header {
        margin: 0;
    }
    main {
        padding: 20px;
    }
    .heading {
        margin-bottom: 20px;
    }
    h1 {
        font-size: 35px;
    }
    h2 {
        font-size: 20px;
    }
    .info_box {
        padding: 20px;
    }
    .svg {
        width: 30px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    p {
        font-size: 16px;
    }
    .conRow>p {
        font-size: 16px;
    }
    .imergency {
        width: 60px;
        height: 60px;
        border: 6px solid #ce5c1e;
    }
    .imergency>a {
        font-size: 14px;
    }
    .imergency>a>img {
        width: 20px;
    }
}