/* ========== General Styles ========== */
body {
  font-family: 'Verdana', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  background: lightgoldenrodyellow url('/!g/bg/h096-2.gif');
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
  word-wrap: break-word;
}

/* Container */
.container {
  width: 85%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* ========== Header ========== */
header {
  background: #add8e6;
  padding: 30px 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative; /* so we can position gifs near it */
}

header h1 {
  font-size: 60px;
  margin: 0 0 15px;
  color: #fffac4;
  font-weight: normal;
  letter-spacing: 3px;
  font-family: garden-cursive, "Courier New", monospace, sans-serif;
}

header p {
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}

/* ========== Floating Header Gifs ========== */
#p1, #p2, #p3 {
  position: absolute;
  top: 20px;
  width: 80px;
}

#p1 {
  left: -100px; /* left side */
}

#p2 {
  right: -100px; /* right side */
}

#p3 {
  right: -160px; /* stacked next to p2 */
  top: 130px;
}

#p1 img, #p2 img, #p3 img {
  width: 150px;
  height: auto;
}

/* ========== Gallery Grid ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery figure {
  background: white;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.gallery figure:hover {
  transform: scale(1.03);
}

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

.phone {
    border: 7px solid transparent;          /* fallback border width */
    padding: 4px;                           /* space between image and border */
    border-image: url("images/blueborder.png") 8 round;  /* fancy border image */
    
    /* Vendor prefixes for older browsers */
    -webkit-border-image: url("images/blueborder.png") 8 round;
    -o-border-image: url("images/blueborder.png") 8 round;
    -moz-border-image: url("images/blueborder.png") 8 round;
}







