@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #000000;
  line-height: 1.5;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: rgba(239, 242, 255, 0.95);
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

a {
  color: rgba(239, 242, 255, 0.95);
}

a:hover {
  color: #939393;
}

a:active {
  color: #ff7171;
}

header, footer {
  padding: 1rem;
  text-align: center;
}

/* Background image layer (desktop only) */
.background-image {
  display: none;
}

/* Hero takes a full screen and scrolls away naturally */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: visible;
}

/* Centers your block, but NOT fixed */
.hero-inner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* keep text above background */
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.99);
  transition: opacity 10s ease, transform 10s ease;
  color: rgb(255, 255, 255);
}
.hero-inner h1 {
  font-size: 12vw;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: rgb(222, 120, 157);
}
.hero-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.hero-inner h2 .hero-title-divider {
  font-size: clamp(0.5rem, 1vw, 2rem);
}
.hero-inner h2 {
  color: rgb(222, 120, 157);
}

/* Safari-friendly script font safety */
.hero-title {
  display: inline-block;
  line-height: 1.2;
  padding: 0.25em 0.15em;
  white-space: nowrap;
  max-width: 90vw;
  padding-top: 60vh;
}

/* triggered by js */
html.fonts-loaded .hero-inner {
  opacity: 0.9;
  transform: scale(1);
}

/* Next section sits “under” the hero and is revealed on scroll */
.home-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7294117647); /* so it covers the background */
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.816);
  backdrop-filter: blur(6px) saturate(115%);
  -webkit-backdrop-filter: blur(6px) saturate(115%);
}

.page-content {
  margin: 0 auto;
  max-width: 1300px;
  background: rgba(0, 0, 0, 0.816);
  backdrop-filter: blur(6px) saturate(115%);
  -webkit-backdrop-filter: blur(6px) saturate(115%);
  padding: 1rem;
}

.page-title {
  font-size: 3rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: rgb(222, 120, 157);
}

.site-footer {
  padding: 0;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.gallery-section {
  margin-top: 2rem;
}

.gallery-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.photo-gallery.masonry {
  column-count: 3;
  column-gap: 1rem;
}

.photo-gallery.masonry .photo {
  break-inside: avoid;
  margin: 0 0 1rem;
}

.photo-gallery.masonry img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* responsive */
@media (max-width: 1100px) {
  .photo-gallery.masonry {
    column-count: 2;
  }
}
@media (max-width: 650px) {
  .photo-gallery.masonry {
    column-count: 1;
  }
}
@media (hover: hover) {
  .photo-gallery img {
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .photo-gallery img:hover {
    transform: scale(1.02);
    opacity: 0.95;
  }
}
/* clickable image */
.photo-btn {
  padding: 0;
  border: 0;
  background: none;
  width: 100%;
  cursor: zoom-in;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 99999;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-column {
  display: grid;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.contact-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.contact-item a {
  text-decoration: none;
  color: inherit;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-instagram-icon {
  height: 1.3rem;
  fill: rgba(239, 242, 255, 0.95);
}

/* Mobile */
@media (max-width: 640px) {
  .contact-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.bio-inspirations {
  margin: 0 auto;
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

.bio-inspirations .sep {
  margin: 0 0.03em;
  opacity: 0.45;
}

/* Hamburger button */
.hamburger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2392156863);
}
.hamburger:hover {
  color: rgb(222, 120, 157);
}
.hamburger:active {
  color: rgb(106, 106, 106);
}

/* Menu container */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6235294118);
  display: none;
  z-index: 1000;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.816);
  backdrop-filter: blur(6px) saturate(115%);
  -webkit-backdrop-filter: blur(6px) saturate(115%);
}
.mobile-menu h1 {
  font-size: 4rem;
}
.mobile-menu h3 {
  font-size: 2.5rem;
}
.mobile-menu a:hover {
  color: rgb(222, 120, 157);
}
.mobile-menu a:active {
  color: rgb(211.9821428571, 79.0178571429, 127.25);
}

/* Open state */
.mobile-menu.open {
  display: block;
}

/* Menu list */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway/static/Raleway-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.background-image {
  background-image: url("../images/horizontal_background.jpg");
  background-position: center;
  display: block;
  position: fixed;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 60vh;
}

/* Phones: use vertical */
@media (max-width: 900px) {
  .background-image {
    background-image: url("../images/vertical_background.jpg");
    background-position: center;
  }
  .hero-title {
    padding-top: 75vh;
  }
}
/* iPad-ish portrait: use vertical */
@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .background-image {
    background-image: url("../images/vertical_background.jpg");
    background-position: center;
  }
  .hero-title {
    padding-top: 60vh;
  }
}
/* iPad-ish landscape: use wide but adjust framing */
@media (min-width: 768px) and (max-width: 1100px) and (orientation: landscape) {
  .background-image {
    background-image: url("../images/horizontal_background.jpg");
    background-position: center 30%;
  }
  .hero-title {
    padding-top: 60vh;
  }
}

/*# sourceMappingURL=main.css.map */