/* Global Variables and Settings */
:root {
  --color-background: #000000;
  --color-text:       #eeeeff;
  --color-accent:     #d0b0ff;
}
html {
  scroll-behavior: smooth;
  font-size: 18px
}
body {
  margin: 0;
  font-family: sans-serif;
  background-color: var(--color-background);
  color: var(--color-text); /* text color */
}
h1, h2, h3, h4, h5, h6 {
  color: var(--color-accent);
  font-family: serif;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

section {
  padding: 100px 20px 60px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

button {
  padding: 10px 30px;
  font-size: 1rem;
  border: 3px solid var(--color-accent);
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  color: var(--color-text);
}
.btn-cta {
  background-color: var(--color-accent);
  color: var(--color-background);
}
button:active {
  transform: scale(0.95);
  transition: transform 0.05s ease;
}

/* Support for touch screens */
@media (hover: hover) and (pointer: fine) {
  button:hover {
    border-color: var(--color-text);
    background-color: var(--color-text);
    color: var(--color-background);
  }
}

/* Header and Nav */
header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  background-color: #1a1a1a;
  position: fixed;
  top: 0;
  height: 100px;
  width: 100%;
  z-index: 1000;
}
header img {
  height: 100%;
  object-fit: contain;
}
header nav {
  display: flex;
  flex-wrap: wrap;           /* allows wrapping */
  align-items: center;       /* This centers nav links vertically */  align-items: center;
  gap: 10px 20px;            /* vertical and horizontal spacing */
  justify-content: flex-end; /* right-align each row */
}
nav a {
  display: inline-block;
  white-space: nowrap;      /* prevents text breaking */
  font-weight: bold;
  margin-right: 20px;
}

/* Socials */
.social-icons {
  margin-top: 40px;
  margin-bottom: 40px;
}
.social-icons a {
  margin-right: 20px;
  font-size: 1.5rem;
}
.social-icons img {
  max-height: 40px;
}
.logo-youtube {
  margin: 0
}

/* Hero section */
#hero {
  height: 100vh;
  background: url('img/hero.jpg') right center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 10% 80px;
  text-align: left;
  overflow-x: hidden;
  word-wrap: break-word;
}
#hero h1 {
  font-size: clamp(2rem, 10vw, 4rem);
  margin: 0;
  color: #ffffff;
  text-shadow: 2px 2px 4px #000000;
}
#hero p {
  font-size: 1.5rem;
  margin: 10px 0 30px;
  color: var(--color-accent);
}
#hero button {
  padding: 12px 36px;
}

/* Galleries */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* Contacts */
.contact-info {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}
