@font-face {
  font-family: 'Versailles';
  src: url('assets/fonts/mainFont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Versailles", cursive;
  background-color: #d2f1b6;
  color: #442e10;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
.container {
  width: 60%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  align-items: center;
  padding: 1em;
}
.site-header {
  background-color: #d2f1b6;
  padding: 1em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #ffc1db;
}
.site-header .branding {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3em;
  text-align: center;
}
.site-header .logo {
  height: 75px;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.site-header .logo:hover {
  transform: scale(1.05);
}
.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1em;
}
.main-nav a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #73c8cf;
}
.hero {
  background: #fff7e8;
  padding: 2em 0;
  text-align: center;
  border-bottom: 2px solid #ffc1db;
}
.btn-primary {
  display: inline-block;
  padding: 0.5em 1.5em;
  background: #ffc1db;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1em;
  transition: background-color 0.3s, transform 0.3s;
}
.btn-primary:hover {
  background-color: #a0657d;
  transform: scale(1.05);
}
.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
}
.service-card {
  background: #e8b1b6;
  padding: 1em;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.service-card:hover {
  background: #f7d8dc;
  transform: translateY(-4px);
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.gallery-grid img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}
.contact-links li {
  list-style: none;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.contact-links a {
  color: black;
  text-decoration: none;
}
.contact-links a:hover {
  text-decoration: underline;
}
footer {
  background: #d2f1b6;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  border-top: 2px solid #ffc1db;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffc1db;
  color: white;
  padding: 0.5em 1em;
  border-radius: 50px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 999;
}
.site-footer::after {
  content: " © " attr(data-year) " By Traci. All rights reserved.";
  display: block;
  margin-top: 1em;
}
/* QoL Responsive + Hover + Transition Additions */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    gap: 1em;
  }
  .gallery-grid {
    flex-direction: column;
  }
  .container {
    width: 90%;
  }
  .site-header .logo {
    height: 60px;
  }
  .btn-primary {
    width: 80%;
  }
  .service-card {
    font-size: 0.95em;
  }
}
/* Extra Additions */
html {
  scroll-behavior: smooth;
}
a:focus {
  outline: 2px dashed #ffc1db;
}
section {
  padding: 2em 0;
}
input, textarea, button {
  font-family: inherit;
}
iframe {
  border-radius: 8px;
}
.booking iframe {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

