* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-background-color: #edf3f8;
  --primary-text-color: #333;
  --secondary-text-color: whitesmoke;
  --secondary-background-color: #2b506e;
  --active-link-color: #2b506e;
  --active-link-background-color: skyblue;
  --text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  --secondary-text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.6);
  --footer-background-color: #1d374d;
}
html {
  font-size: 18px;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--primary-text-color);
  background-color: var(--primary-background-color);
}

/* Navigation styles */
.main-nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  height: 100%;
  gap: 3.5rem;
}
.main-nav ul li {
  color: var(--secondary-text-color);
  height: 100%;
  display: flex;
}
.main-nav ul li a {
  position: relative;
  text-decoration: none;
  color: inherit;
  margin: auto 0;
  text-shadow: var(--text-shadow);
  overflow: hidden;
}
.main-nav ul li a:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* Navigation active links */
.main-nav ul li.active a {
  font-weight: bold;
  color: var(--active-link-color);
  text-shadow: var(--secondary-text-shadow);
}

/* Header styles */
.header {
  position: relative;
  background-image: url('../images/headerResized.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 0;
  margin: 0;
  overflow: hidden;
  text-align: center;
}
.header-container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.header-text {
  color: var(--secondary-text-color);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
  padding-top: 22rem;
  font-size: 1.3rem;
  text-shadow: var(--text-shadow);
}

/* Footer styles */
.footer {
  background-color: var(--secondary-background-color);
  color: var(--secondary-text-color);
  padding-top: 2rem;
  text-align: center;
}
.footer-contact-info,
.footer-social-links,
.footer-other-links {
  margin: 1rem 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.footer-contact-info li a,
.footer-social-links li a,
.footer-other-links li a {
  text-decoration: none;
  color: var(--secondary-text-color);
}
.footer-contact-info {
  gap: 10rem;
}

.footer-social-links,
.footer-other-links {
  justify-content: center;
  gap: 2rem;
}
.footer-social-links {
  padding-bottom: 0.5rem;
}

.footer-social-links li a img {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.footer-social-links a:hover img {
  transform: scale(1.2);
}
.footer-social-links .facebook:hover {
  filter: drop-shadow(0 0 4px #1877f2); /* Facebook Blue */
}
.footer-social-links .instagram:hover {
  filter: drop-shadow(0 0 4px #e4405f); /* Instagram Pink-Red */
}
.footer-social-links .whatsapp:hover {
  filter: drop-shadow(0 0 4px #25d366); /* WhatsApp Green */
}

.footer-other-links li:not(:last-child)::after {
  content: '|';
  color: #ccc;
  padding-left: 1rem;
}
.footer-other-links {
  padding: 1rem;
  margin-bottom: 0;
  background-color: var(--footer-background-color);
}
.cookie-container{
	width:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem;
}
.cookie-policy{
	width: 100%;
	overflow-wrap: break-all;
	
}

@media (max-width: 698px) {
  h1 {
    font-size: 1rem;
  }
  h2 {
    margin-top: 0.5rem;
    font-size: 0.8rem;
  }
  p {
    font-size: 0.7rem;
  }
  a {
    font-size: 0.7rem;
  }
  .our-offer-button {
    margin-bottom: 0.7rem;
  }
  .home-contact p,
  .home-contact-button {
    font-size: 1rem;
  }

  .main-nav ul {
    gap: 1rem;
  }
  .main-nav ul li {
    font-size: 0.9rem;
  }
  .header-text {
    padding-top: 0;
  }
  .footer-other-links li:not(:last-child)::after {
    content: '';
    padding-left: 0rem;
  }
  .footer-contact-info {
    gap: 0;
  }
  .footer-contact-info li {
    width: 33%;
  }
  .footer-other-links {
    padding: 0rem;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 699px) and (max-width: 1199px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  p {
    font-size: 0.8rem;
  }
  .header-text {
    padding-top: 6rem;
  }
  .footer-contact-info {
    gap: 0;
  }
  .footer-contact-info li {
    width: 33%;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .header-text {
    padding-top: 12rem;
  }
}

@media (min-width: 2400px) {
  body {
    font-size: 1.2rem;
  }
  .header,
  main,
  .footer {
    margin: 0 auto;
    max-width: 2000px;
  }
}
