@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Hk Grotesk';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/HKGrotesk-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Jost-Regular.ttf') format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

:root {
    --font-size-small: 1.8rem;
    --font-size-normal: 2.2rem;
    --font-size-medium: 2.8rem;
    --font-size-medium-1: 3.6rem;
    --font-size-large: 5.5rem;
    --font-size-huge: 7.5rem;
    --font-stack: 'Hk Grotesk', sans-serif;

    --line-height-normal: 1.7;
    --line-height-small: 1.2;

    --black: #000;
    --pink: #ff3258;
    --white: #f0e9f2;
    --white-1: #e5e5e6da;


    --container-max-width: 1180px;
    --container-normal-width: 800px;
    --container-medium-width: 700px; 
    --container-small-width: 500px;

    --gutter-huge: 12rem;
    --gutter-medium: 6rem;
    --gutter-normal: 3rem;
    --gutter-small-1: 2.5rem;
    --gutter-small: 2rem;

    --border-light: 1px solid rgb(36, 35, 35);
}

html {
    font-size: 62.5%; /* (16/10)*100 = 62.5% => 1rem = 10px */
    box-sizing: border-box;
    scroll-behavior: smooth;
}

@media(max-width: 1000px) {
    html {
        font-size: 52%;
    }
}

.row {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

@media(max-width: 1340px) {
    .row {
        max-width: 1100px;
    }
}

@media(max-width: 1240px) {
    .row {
        padding: 0 var(--gutter-medium);
    }
}

@media(max-width: 600px) {
    .row {
        padding: 0 var(--gutter-normal);
    }
}

@media(max-width: 600px) {
    .row {
        padding: 0 var(--gutter-small);
    }
}

body {
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  display: block; /* or remove display:flex entirely */
	
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(0, 0, 0, 0.1) 30%,
		rgba(0, 0, 0, 0.1) 80%,
		rgba(0, 0, 0, 0.6) 100%
	),
	url('../images/bg_3.jpg') center/cover no-repeat;

	background-size: cover;
	background-position: center;
	background-attachment: fixed;	
}

.gallery-viewport {
  position: relative;
  height: 500px;
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  border: 2px solid #ccc;
  background-color: #000;
	margin: 2rem auto; /* Centre the gallery-viewport horizontally */
}
.photo-track {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}

.photo {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  flex-shrink: 0; /* Add this here if you remove the line above */
}

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5em;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
}

img {
  image-orientation: from-image;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  padding: 0.5em;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;

}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

/* --------------------------------------- */
/* ----- Header ----- */
/* --------------------------------------- */

.header {
/*
    background: linear-gradient(rgba(0,0,0, .1), rgba(0,0,0, .4)), 
url('../images/header_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
*/
		height: auto;
    font-size: var(--font-size-normal);
}

.header__text-box {
  max-width: var(--container-max-width);
  margin: 2% auto;
  padding: 0;
  position: relative;
/*	background: rgba(255, 0, 0, 0.1);*/
}

.header__text {
	text-align: center;
}

/*

.header__text-box p {
  font-size: clamp(2rem, 5vw, 6rem);
}

.header__text p {
    margin: 1.5rem 0 3.5rem;
    max-width: var(--container-max-width);
    font-family: 'Jost', sans-serif;
    font-size: var(--font-size-medium);
}
*/

@media (max-width: 768px) {
  .header {
    height: auto; /* Let it grow with content */
    padding-bottom: 2rem;
  }
	
  .header__text-box {
    padding: 1rem;
    text-align: center;
  }
	
  .header__text-box p {
    font-size: var(--font-size-small);
    line-height: 1.2;
  }
}

/* Old version
@media(max-width: 500px) {
    .header {
        text-align: center;
    }

    .header__text p {
        transform: scale(.8);

    }
}
*/

@media (max-width: 480px) {
  .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header__text-box {
    margin: 0 auto;
  }
}


/* --------------------------------------- */
/* ----- Navigation ----- */
/* --------------------------------------- */

.nav {
    display: flex;
    justify-content: flex-end;
    padding: var(--gutter-normal) 0;
}

.nav__items {
    display: flex;
    list-style: none;
}

.nav__item:not(:last-child) {
    margin-right: var(--gutter-medium);
}

@media(max-width: 500px) {
    .nav {
        justify-content: center;
    }
}

@media(max-width: 400px) {
    .nav__item:not(:last-child) {
        margin-right: var(--gutter-normal);
    }
}

@media(max-width: 300px) {
    .nav {
        font-size: var(--font-size-small);
    }
}

.nav__link {
    position: relative;
    display: inline-block;
    padding: 1rem 0;
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100%;
    display: inline-block;
    height: 1rem;
    background: var(--white);
    transition: all 0.25s cubic-bezier(1, 0.68, 0.16, 0.9);
}

.nav__link:hover {
    color: var(--pink);
}

.nav__link:hover::after {
    right: 0;
    height: 2px;
    background: var(--pink);
}
