
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: sand;
color: green;
    padding: 20px;
    text-align: center;
    font-weight: bold;       /* bold text */
    font-size: 20px;             /* increase text size */
	margin-top: 10px;
    margin-bottom: 30px;
}

header img {
      height: 100px; /* adjust logo size */ 
      width: 150px;
      margin-right: 15px; /* space between logo */
      display: flex;
      align-items: center;      /* vertically center */
      justify-content: flex-start;  /* align items to left */
}


.logo-qr-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px; /* space between logo and QR code */
	justify-content: space-between; /* center horizontally */
	padding: 0 20px;
}

.logo {
height: 90px; /* adjust as needed */
width: 90px;
}

.qr {
height: 100px; /* match logo height */
width: 80px;
}


.nav a {
    color: green; /* warm blue tone  #4A6FA5 */
    margin: 18px;
    text-decoration: none;
    font-family: 'Great Vibes', cursive;
    font-weight: bold;       /* normal not bold text */
    text-transform: uppercase; /* all uppercase */
    font-size: 20px;             /* increase text size */
    padding: 15px;
    align-items: right;
    text-align: right;
}

section {
    padding: 40px;
}


h1 {
      		font-family: 'Great Vibes', cursive;
      		font-size: 40px;
      		color: #9A7B4F; /* warm brown color */
      		font-weight: normal;
}
h2 {
      		font-family: 'Great Vibes', cursive;
      		font-size: 40px;
      		color: #9A7B4F; /* warm brown color */
      		font-weight: normal;
}
r {font-family: 'Great Vibes', cursive; text-align: center;}

.gallery {
    display: flex;
    flex-wrap: wrap;          /* allow items to wrap to next line */
    gap: 10px;                /* space between images */
    max-width: 900px;         /* optional max container width */
    margin: auto;

}

.gallery img {
    flex: 1 1 calc(25% - 10px); /* 4 images per row, minus gap */
    max-width: calc(25% - 10px);
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}



/* Lightbox overlay */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
  cursor: zoom-out;
}



#reviews {
    background-color: #f9f9f9;
    padding: 10px;
	width: 100%; 
	border: none; 
	outline: none; 
	border: 1px solid #ccc; padding: 8px;
}

.review {
    margin-bottom: 10px;
    font-style: italic;
    border-left: 4px solid #ccc;
    padding-left: 15px;
}

form#reviewForm {
    margin-top: 10px;
}

form#reviewForm input,
form#reviewForm textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    box-sizing: border-box;
}

  .star-rating {    
	display: flex;
    flex-direction: row-reverse;
    direction: rtl;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .star-rating input[type="radio"] {
    display: none;
  }

  .star-rating label {
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;    
	padding: 0 5px;  
	font-weight: bold; /* This makes the stars bold */
  }

  .star-rating input[type="radio"]:checked ~ label {
    color: gold;
  }

  .star-rating label:hover,
  .star-rating label:hover ~ label {
    color: orange;
  }

form#reviewForm button {
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #444;
    color: white;
    border: none;
    cursor: pointer;
}

form#reviewForm button:hover {
    background-color: #333;
}

footer {
    background-color: #485;
    color: white;
    text-align: center;
    padding: 10px;
}
