@font-face {
  font-family: 'paws';
  src: url('paws.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.paws-font {
    font-family: "paws", sans-serif;
}

.centered-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top :50px;
}

.woof {
    font-size: 150px;
    color: #2f1313;
    margin: 0;
}

.woof-chan {
  font-size: 30px;
  font-style: bold, italic;
  color: #2f1313;
  margin: 0;
  font-family: "Chewy", system-ui;
  font-weight: 400;
}

.woof-chan:hover {
  cursor: pointer;
  color: #87803b;
}

.woof-logo {
    height: 150px;
    width: auto;
}

.rsvp-link {
    display: inline-block;
}

.rsvp-image {
    height: 300px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.rsvp-image:hover {
    transform: scale(1.1);
}

.chewy-regular {
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  font-size: 20px;
}

body {
    background-color : #e5cd6c;
}


button {
  background-color: #2f1313;
  color: #e5cd6c;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}


.contact-section {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.faq-section {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.faq-item {
  margin-bottom: 15px;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
}

.faq-item summary {
  padding: 10px;
  background-color: #f9f3b9;
  user-select: none;
}

.faq-item summary:hover {
  background-color: #dbd6a2;
}

.faq-item p {
  margin: 0;
  padding: 15px;
  background-color: #f9f3b9;
  font-family: sans-serif;
  font-size: 15px;
  cursor: text
}

a {
    color: #87803b;
}

a:hover {
    color: #cfcba9;
}

.credits {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 12px;
    color: #87803b;
    font-family: sans-serif;
}

.credits button:hover {
    background-color: #cfcba9;
    color: #2f1313;
}

.dog img {
    width: 200px;
    height: auto;
}

.dogs-section {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: block;
}

/* Paw Mode Button */
.paw-mode-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #2f1313;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 1000;
}

.paw-mode-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.paw-mode-btn.active {
    background-color: #87803b;
}

.paw-mode-btn img {
    width: 35px;
    height: 35px;
}

/* Paw animation elements */
.paw-element {
    position: fixed;
    width: 200px;
    height: 1000px;
    pointer-events: none;
    z-index: 999;
}

.paw-print {
    position: fixed;
    width: 70px;
    height: 70px;
    pointer-events: none;
    z-index: 998;
    transform: translate(-50%, -50%);
}