/* ----------------- */
/* RESET + BASICS    */
/* ----------------- */

/* Reset all margin/padding and prevent any overflow */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body, html {
  font-family: 'Gothic A1', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  
}
body {
  margin: 0;
  padding: 0;
}


/* ----------------- */
/* HEADER            */
/* ----------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-left {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: #1a1a1a;
}

.nav-right a {
  font-weight: 500;
  font-size: 1rem;
  color: #1a1a1a;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-right a:hover {
  color: #f08a5d;
}

/* ----------------- */
/* MAIN LAYOUT       */
/* ----------------- */
main.cuddledown-page {
  padding-top: 100px;
}

/* ----------------- */
/* HERO IMAGE        */
/* ----------------- */
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ----------------- */
/* INTRO SECTION     */
/* ----------------- */
.project-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-left {
  flex: 1 1 40%;
}

.intro-left h1 {
  font-family: 'Antic Didone', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.intro-right {
  flex: 1 1 55%;
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #333;
}

.intro-right p + p {
  margin-top: 1rem;
}

/* ----------------- */
/* SECTION BLOCKS    */
/* ----------------- */
.section-block {
  padding: 4rem 2rem;
  max-width: auto;
  margin: 0 auto;
}

.section-block h2 {
  font-family: 'Antic Didone', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.section-block img {
  width: 100%;
  height: auto;
  margin-bottom: 0rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.hide-header {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
body.cuddledown-page {
  cursor: default !important;
}
/* ----------------- */
/* Header Disapear   */
/* ----------------- */
.brinc-page header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease;
}

.full-image {
  width: 100vw;       /* Full viewport width */
  max-width: 100%;    /* Prevent overflow if inside container */
  height: auto;       /* Maintain aspect ratio */
  display: block;     /* Remove bottom gap */
}

body, html {
  margin: 0;
  padding: 0;
}
.hero-image, .moodboard {
  padding: 0;
  margin: 0;
}
