@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans Mono", monospace;
  background-color: #f9e6d2;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.container {
  width: 992px;
  background-color: #f9e6d2;
  text-align: center;
  padding: 10 0 20;
}

/* Header */
.logo {
  font-size: 28px;
  margin: 10px 0;
  color: #2d3b25;
}
.hero-img {
  max-width: 100%;
  height: auto;
  width: auto;
  padding-bottom: 20px;
  align-items: center;
}

/* Welcome Section */
.welcome h2 {
  font-size: 26px;
  color: #5F7450;
  padding-top: 10px;
}
.welcome p {
  color: #5F7450;
  font-size: 12px;
  line-height: 1.6;
  padding-bottom: 10px;
  margin-left: 1.3rem;
  margin-right: 1.3rem;
}

.menu-btn {
  display: inline-flex;     
  align-items: center;               
  justify-content: center;               
  margin-top: 10px;
  background-color: #4b673d;
  color: #fff;
  padding: 14px 40px;               
  font-size: 30px;
  font-weight: bold;
  border-radius: 70px;
  text-decoration: none;
  transition: 0.3s;
  width: 250px;
  height: 20px;
}


.menu-btn:hover {
  background-color: #280B00;
}

.menu-btn img {
	width: 40px;
	height: 40px;
	margin-right: 20px;
}

/* Photo */
.photo img {
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 6px;
  padding-top: 20px;
}

/* RSVP */
.border-divider img {
  width: 100%;        
  height: auto;           
  display: block;
  margin: 10px 0;
}

.rsvp h2 {
  font-size: 30px;
  color: #703518;
}

.rsvp p {
  font-size: 12px;
  color: #703518;
  margin: 10px 0;
  margin-left: 1.3rem;
  margin-right: 1.3rem;
}

.contact {
  margin-top: 20px;
}
.contact a {
  display: inline-block;
  margin: 10px 15px;
  color: #703518;
  text-decoration: none;
  font-weight: bold;
}
.contact a img {
  vertical-align: middle;
  width: 20px;
  margin-right: 8px;
}

/* Footer */
footer {
  margin-top: 30px;
  margin-left: 1.3rem;
  margin-right: 1.3rem;
  font-size: 14px;
  color: #703518;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d6c0a8;
}

/* menu page */
:root{
  --bg: #f6e6d8;          /* soft peach */
  --brown: #6b3a24;       /* headline color */
  --brown-deep: #7b4a32;  /* outer frame */
}

html { scroll-behavior: smooth; }

body{
  margin:0;
  background-color: #f9e6d2 ;
  font-family: "Noto Sans Mono", monospace;
  display:flex;
  justify-content:center;
  color:#3a2d25;
}

.page{
  width: 992px;           /* same canvas width */
  padding: 40px 28px 80px;
  box-sizing: border-box;
}

/* Headings */
.hero-head{
  text-align:center;
}
.eyebrow{
  margin:0;
  font-size: 20px;
  color: var(--brown);
}

.hero-head img {
  width: 300px;
  height: auto;
  padding-top: 5px;
}

.brand{
  margin: 8px 0 6px;
  font-size: 72px;
  line-height: 1;
  letter-spacing: .30em;   /* spaced look like the sample */
  color: var(--brown);
  font-weight: 800;
}

.framed img{
  display:block;
  width:100%;
  height:auto;
  padding-top: 15px;
}

.fab{
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: calc(16px + env(safe-area-inset-bottom)); /* safe for iOS */
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #5F7450;  
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
  z-index: 1000;
  transition: transform .2s ease, box-shadow .2s ease;
}

.fab:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0,0,0,.25);
}

/* Make the page fill the viewport and allow a bottom area */
.page{                 /* or .container — whichever wraps your page */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Push this area to the bottom and center the button */
.footer-actions{
  margin-top: auto;               /* pushes to bottom */
  display: flex;
  justify-content: center;        /* center horizontally */
  padding: 24px 0 36px;           /* bottom breathing room */
}

/* Ensure the button is NOT sticky/fixed */
.btn-back{
  position: static;               /* override any previous fixed/sticky */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:12px 28px;
  background:#5F7450;
  color:#fff;
  font-family:"Noto Sans Mono", monospace;
  font-weight:250;
  font-size:14px;
  text-decoration:none;
  border-radius:999px;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn-back:hover{
  background:#280B00;
  transform:translateY(-1px);
}

.menu-prana img {
  display:block;
  width:100%;
  height:auto;
  align-items: center;
}
