:root {
  --beige: #f5f0e1;
  --light-beige: #faf6ef;
  --accent: #c3b299;
  --text: #333;
  --serif: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--serif);
  color: var(--text);
  background: var(--light-beige);
  line-height: 1.6;
}

header.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero .image-wrapper::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid white;
  pointer-events: none;
  z-index: 1;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Tone down background: lower brightness, reduce saturation, slight contrast */
  filter: brightness(0.6) saturate(0.7) contrast(0.9);
}

.hero .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  width:85%;
}

.hero .overlay h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero .overlay p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.hero .overlay a {
  text-decoration: none;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--light-beige);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.hero .overlay a:hover {
  background: var(--beige);
  color: var(--text);
}

section.info {
  padding: 4rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

section.info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

section.info p {
  margin-bottom: 1rem;
}

.info .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.info .grid div {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.info .grid div a[href^="tel:"] {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background-color: var(--light-beige);
}

.info .grid div a[href^="tel:"]:hover {
  color: var(--text);
  background-color: var(--beige);
}

/* Make iframe responsive */
.info .grid iframe {
  width: 100% !important;
  height: 300px !important;
  margin: 0 !important;
  border-radius: 8px;
}
.doggo-container {
  height: 400px;
  width: 400px;

}

/* Media query for larger screens */
@media screen and (min-width: 768px) {
  section.info {
    padding: 4rem 2rem;
  }
  
  .info .grid iframe {
    height: 450px !important;
  }
}

footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  max-width: 100%;
  padding: 0 1rem;
}

.footer-image {
  max-width: 200px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: rotate(-2deg);
  border: 3px solid var(--light-beige);
  padding: 8px;
  background: white;
}

.footer-image:last-child {
  transform: rotate(2deg);  /* Opposite tilt for second image */
}

.footer-image:hover {
  transform: rotate(0) scale(1.05);  /* Straighten and slightly enlarge on hover */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);  /* Enhanced shadow on hover */
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .footer-images {
    gap: 1rem;
  }
  
  .footer-image {
    max-width: 120px;
    width: 120px;
    height: 120px;
    transform: rotate(-1deg);
  }
  
  .footer-image:last-child {
    transform: rotate(1deg);
  }
}

.jumbo-text {
  font-size: 4.5rem;
  text-align: center;
  background: linear-gradient(45deg, var(--accent), #d4c4b0, var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: gradient 3s ease infinite;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 1rem;
}

.jumbo-text::before,
.jumbo-text::after {
  content: '✨';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  opacity: 0.7;
}

.jumbo-text::before {
  left: 0;
}

.jumbo-text::after {
  right: 0;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .footer-images {
    gap: 1rem;
  }
  
  .footer-image {
    max-width: 120px;
    width: 120px;
    height: 120px;
    transform: rotate(-1deg);
  }
  
  .footer-image:last-child {
    transform: rotate(1deg);
  }
} 