/* =====================================
CSS RESET
===================================== */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================
GOOGLE FONTS
===================================== */

/* dm-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/dm-sans-v11-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('assets/fonts/dm-sans-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('assets/fonts/dm-sans-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('assets/fonts/dm-sans-v11-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('assets/fonts/dm-sans-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('assets/fonts/dm-sans-v11-latin-regular.svg#DMSans') format('svg'); /* Legacy iOS */
}
/* dm-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/dm-sans-v11-latin-700.eot'); /* IE9 Compat Modes */
  src: url('assets/fonts/dm-sans-v11-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('assets/fonts/dm-sans-v11-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('assets/fonts/dm-sans-v11-latin-700.woff') format('woff'), /* Modern Browsers */
       url('assets/fonts/dm-sans-v11-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('assets/fonts/dm-sans-v11-latin-700.svg#DMSans') format('svg'); /* Legacy iOS */
}

/* =====================================
MAIN
===================================== */

body {
  background-color: #EDD26F;
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #111;
  padding: clamp(0.88rem, calc(-0.12rem + 5.00vw), 3.75rem);
  font-size: clamp(1.06rem, calc(0.95rem + 0.54vw), 1.38rem) !important;
}

a, a:hover {
  color: #111;
}

.main-wrapper {
  text-align: center;
  background-color: #fff;
  padding: 50px;
}

h1 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(1.06rem, calc(0.95rem + 0.54vw), 1.38rem) !important;
}

.logo img {
  margin: 50px auto 0 auto;
  /* Space s: 130px → 210px */
  width: clamp(8.13rem, calc(5.37rem + 13.79vw), 13.13rem);
}

.main-image img {
  margin: clamp(3.13rem, calc(1.75rem + 6.90vw), 5.63rem) auto;
}

footer {
  margin-bottom: 100px;
}

.footer-address {
  margin: 40px 0;
}

.footer-contact {
  margin: 40px 0;
}

.footer-opening-hours {
  margin: 40px 0;
}

.footer-social a{
  display: inline-block;
  background-image: url(assets/icon-instagram.svg);
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 52px;
}

/* =====================================
IMAGE GALLERY
===================================== */

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}