/* GLOBAL RESET + PAGE BACKGROUND + SCROLLING */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-y: auto !important;  /* allow scrolling */
  height: auto !important;
  background-color: #f8f4ef;    /* soft boho beige */
  color: #333;
  font-family: 'Georgia', serif;
  line-height: 1.6;
}
/* FORCE beige background on all pages */
body, .page-body, .studio-body {
    background-color: #f8f4ef !important;
}

}/* homepage body so content clears the fixed nav */
.home-body {
  padding-top: 120px;
}

/* INTRO TITLE ABOVE HERO */
.home-intro {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.home-intro h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #444a4a;
  margin-bottom: 8px;
}

.home-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #6a6a6a;
}

/* PAGE TITLES (Studio, About, Pricing, Gallery, Contact) */
.page-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #444;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}


/* ============================
   NAVIGATION
   ============================ */

.site-nav {
    width: 100%;
    padding: 16px 24px;   /* reduced so menu isn’t too far right */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;   /* tighter spacing */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
}
    
.nav-left img {
  height: 48px;
  width: auto;
}

.nav-left .nav-title {
    margin-left: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    letter-spacing: 1px;
    color: #444;
}

.nav-left a,
.nav-left a:hover,
.nav-left a:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

.nav-links {
    display: flex;
    margin-right: 32px;   /* small nudge left */
}
.nav-links a {
    margin-left: 14px;
    font-size: 17px;
    text-decoration: none;
    color: #444;
}.nav-links a:hover {
  color: #b4a860;            /* your gold accent */
}

.nav-links .active {
  border-bottom: 1px solid #b4a860;
}

/* ============================
   HOMEPAGE HERO VIDEO
   ============================ */

.hero {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 0;
}

.hero video {
  width: 100%;
  height: auto;             /* important so it doesn't stretch */
  object-fit: contain;      /* keeps full frame visible */
  display: block;
  background: #000;         /* soft black frame behind the video */
}

/* Dim layer on top of video (if you ever add text on top) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
/* SOUND BUTTON ON HERO VIDEO */
.sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    z-index: 500;
    backdrop-filter: blur(4px);
}

.sound-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* ============================
   HOMEPAGE GALLERY
   ============================ */

.section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #444;
}

/* Pinterest-style Masonry Gallery */
.pinterest-gallery {
  column-count: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.pinterest-gallery img {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  border-radius: 6px;
}

/* simple footer */
footer {
  text-align: center;
  padding: 20px 0 40px;
  font-size: 14px;
  color: #555;
}







/* ================================
   Pinterest-style Masonry Gallery
================================== */

.pinterest-gallery {
    column-count: 3;
    column-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pinterest-gallery img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
}

/* Tablet */
@media (max-width: 900px) {
    .pinterest-gallery {
        column-count: 2;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pinterest-gallery {
        column-count: 1;
    }
}
/* Fix Studio Image Scaling */
.studio-image-block {
    display: block;
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 12px;
}
/* Ensure page scrolls properly */
html, body {
    overflow-y: auto !important;
    height: auto !important;
}

/* Ensure content isn’t hidden behind nav */
.home-body {
    padding-top: 120px;
}

/* Fix giant image on Studio page */
.studio-image-block img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
}

/* =======================
   MOBILE NAVIGATION FIXES
   ======================= */
@media (max-width: 768px) {

  /* Make the nav bar a bit taller and centered */
  .site-nav {
    padding: 12px 20px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  /* Logo adjustments for mobile */
  .nav-left img {
    height: 38px;
  }

  /* Hide the text “STUDIO BOHÈME” in top-left to save space */
  .nav-left .nav-title {
    display: none;
  }

  /* Navigation links stack neatly */
  .nav-links a {
    margin-left: 10px;
    font-size: 15px;
  }

  /* Keep links from wrapping weirdly */
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* --- FIX STUDIO PAGE SCROLLING --- */
.studio-wrapper {
    overflow-y: auto !important;
    display: block;
    height: auto;
    min-height: 100vh;
    padding-top: 140px;
}

/* SOUND BUTTON POSITION */
#sound-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

/* Mobile: raise button higher on phones */
@media (max-width: 600px) {
    #sound-btn {
        bottom: 160px; /* adjust if you want it higher/lower */
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Fix Studio page image size */
.studio-image {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
}

/* Mobile: shorter studio image on small screens */
@media (max-width: 600px) {
    .studio-image {
        max-height: 240px;
    }
}

/* iPad / Tablet Studio Image Fix — WORKS for all iPads */
/* iPad / Tablet Studio Image – show full image */
@media (min-width: 600px) and (max-width: 1366px) {
    .studio-image {
        width: 100%;
        max-height: 420px;   /* keeps it elegant */
        object-fit: contain; /* shows full image */
        object-position: top; 
    }

    .studio-text {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
  body, main, section, .section, .page-section, .wrapper, .container, .content {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}