/* ===== TOP NAVIGATION ===== */

body {
  font-family: 'Red Hat Display', sans-serif;
  margin: 0;
  background-color: #f6f1e8;  /* soft cream */
}


.home {
  max-width: 1100px;     /* controls page width */
  margin: 0 auto;        /* centres it */
  padding: 40px 24px;    /* nice spacing */
}


.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 40px;
}

.brand .name {
  font-size: 28px;
  font-weight: 500;
}

.brand .subtitle {
  font-size: 14px;
  margin-top: 6px;
  color: #666;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.6;
}


.home{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  gap: 28px;
}

/* BLUE row: 2 columns */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile: stack */
@media (max-width: 768px) {
  .about-row {
    grid-template-columns: 1fr;
  }
}
.about-text,
.about-image {
  width: 100%;
}


/* GREEN row: full width */
.insta-row{
    padding: 28px;
}

/* Make the instagram iframe actually show */
.insta-card{
  width: 100%;
  /* pick a height that suits your grid */
  min-height: 520px;
}

.insta-card iframe{
  width: 100%;
  height: 520px;   /* match min-height */
  border: 0;
  display: block;
}

/* RED row: full width */
.contact-row {
  display: flex;
  justify-content: center;   /* centres horizontally */
  text-align: center;        /* centres the text */
  padding: 60px 28px;
}

.contact-box {
  max-width: 600px;
}

.contact-box h3 {
  font-size: 32px;           /* makes title larger */
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-box p {
  font-size: 16px;
  line-height: 1.8;
}

.contact-box a {
  text-decoration: none;
  color: #111;
}

.contact-box a:hover {
  text-decoration: underline;
}


.lightwidget-widget{
  width: 100%;
  height: 520px;   /* change if you want taller/shorter */
  border: 0;
  overflow: hidden;
  display: block;
}

.insta-row {
  padding: 40px 28px;
}

.insta-row .section-title {
  margin-bottom: 20px;
}

.insta-card {
  width: 100%;
}




.about-text {
  flex: 1;
  padding-right: 40px;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-images img {
  width: 100%;
  display: block;
  margin: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  width: 100%;
}

/* Text sits top left */
.about-text {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding-right: 40px;
}

/* Top image sits top right */
.top-image {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

/* Bottom image spans full red width */
.bottom-image {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.about-grid img {
  width: 100%;
  display: block;
}

.overlay-section {
  position: relative;
  width: 100%;
  max-width: 900px;   /* optional */
  margin: 0 auto;
}

.bg-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.overlay-text { top: 50px; left: 50px; }
.image-with-text img,
.full-image img {
  width: 100%;
  height: auto;       /* IMPORTANT */
  object-fit: contain; /* optional but safe */
  display: block;
}

/* Stack 6.png above 7.png with NO GAP */
.stack {
  display: block;
}

/* Remove any default spacing from figure */
.full-image {
  margin: 0;
  padding: 0;
}

/* Images: full width, natural height (no crop) */
.image-with-text img,
.full-image img {
  display: block;
  width: 100%;
  height: auto;          /* SHOW FULL HEIGHT */
  object-fit: initial;   /* NO CROPPING */
}
.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

/* Screen-reader only text */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Hide hamburger on desktop */
.menu-toggle{
  display:none;
  background:none;
  border:1px solid #111;
  border-radius:12px;
  padding:8px 12px;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

/* Mobile: hamburger + dropdown menu */
@media (max-width: 768px){

  .topbar{
    position:relative;
    align-items:center; /* nicer on mobile */
  }

  .menu-toggle{
    display:inline-flex;
    align-items:center;
  }

  /* Hide nav links until menu opens */
  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:40px;   /* matches your topbar padding */
    right:40px;  /* matches your topbar padding */
    margin-top:12px;

    flex-direction:column;
    align-items:flex-start;
    gap:14px;

    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:14px;
    background:#f6f1e8;
    z-index:1000;
  }

  .nav.is-open{
    display:flex;
  }
}

/* Center section */
.form-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: #f5f5f5; /* optional light page background */
}

/* White box */
.form-box {
  background: #ffffff;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Group spacing */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

/* Labels */
label {
  margin-bottom: 6px;
  font-weight: 600;
  text-align: left;
}

/* Inputs */
input,
textarea {
  padding: 12px;
  border: none;
  background: #f3f3f3;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
}

/* Larger message box */
textarea {
  min-height: 75px;
  resize: vertical;
}



/* Page centering */
.contact-frame-wrap{
  display:flex;
  justify-content:center;
  padding: 40px 16px;
}

/* Frame container */
.contact-frame{
  background: url("images/gold-frame.png") center/contain no-repeat;

  /* Responsive size */
  width: min(760px, 100%);
  aspect-ratio: 1 / 1; /* adjust if your frame isn't square */

  display:flex;
}

/* White “inside” area (where your form sits) */
.contact-canvas{
  /* THESE NUMBERS ARE WHAT YOU TWEAK to match the inner opening */
  padding: 28% 26% 26% 26%;

  width:100%;
  height:100%;
  box-sizing:border-box;

  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 16px;
}

/* A white background behind the form content */
.contact-canvas::before{
  content:"";
  position:absolute;
  inset: 28% 26% 26% 26%;
 / background:#fff;
  border-radius: 10px; /* optional */
  z-index:0;
}

/* Make sure content sits above the white panel */
.contact-canvas{
  position:relative;
}
.contact-canvas > *{
  position:relative;
  z-index:1;
}

/* Form styling */
.contact-form{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
}

label{
  font-weight:600;
  text-align:left;
}

input, textarea{
  width:100%;
  padding:12px;
  border:0;
  border-radius:8px;
  background:#f3f3f3;
  font-size:16px;
  box-sizing:border-box;
}

textarea{
  min-height: 20px;   /* bigger message field */
  resize: vertical;
}

/* Button */
button {
  margin-top: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

/* Mobile tweaks */
@media (max-width: 480px){
  .contact-frame{
    width: 100%;
  }
  textarea{
    min-height: 140px;
  }
}

.contact-text {
  text-align: center;
}

