/* site.css */

:root {
  --burnt-orange: #c5562c;
  --cream: #fcebd2;
  --dark: #1e1e1e;
  --neutral: #fffaf5;
  --border: #e0c6af;
}

/* Base reset & typography */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: var(--neutral);
  color: var(--dark);
  scroll-behavior: smooth;
}

.indexpagebody {
  height: 100%;
  margin: 0;
  padding: 0;
  background: url("../../assets/img/{backgroundImg.jpg}") no-repeat center
    center fixed;
  background-size: cover;
  color: white;
}

.logo {
  width: 20%;
  /*height: 10%;*/
  margin: 0 auto;
  border-radius: 50%;
}

/* Sidebar */

.sidebar {
  background-color: var(--burnt-orange);
  color: var(--cream);
  padding: 1.25rem;
  border-right: 3px solid var(--border);
}

.sidebar .logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: url("../../assets/img/Your%20logo.png") center/cover no-repeat;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.sidebar li {
  margin: 0.75rem 0;
  font-weight: bold;
}

.sidebar a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
}

.sidebar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Main content area */

.main-content {
  padding: 2rem;
}

.main-content h1 {
  font-family: "DM Serif Display", serif;
  color: var(--burnt-orange);
  margin-bottom: 1.25rem;
}

.main-content p {
  line-height: 1.6;
  max-width: 50rem;
}

/* About page image */

.about-img {
  width: 100%;
  max-width: 600px;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}

/* Contact form */

form {
  max-width: 600px;
}

input,
textarea {
  width: 100%;
  padding: 0.625rem;
  margin-top: 0.3125rem;
  margin-bottom: 0.9375rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-family: inherit;
}

button[type="submit"] {
  padding: 0.625rem 1.25rem;
  background-color: var(--burnt-orange);
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: bold;
}

/* Embedded map */

.map {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  width: 100%;
  height: 300px;
}

/* Prices cards */

.card-custom {
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 2px 2px 6px rgba(30, 30, 30, 0.15);
}

.card-custom img {
  width: 100%;
  max-width: 150px;
  border-radius: 0.5rem;
}

.card-custom .text {
  line-height: 1.6;
}

/* Full-page hero (index.html) */

.main-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backdrop-filter: brightness(0.95);
  -webkit-backdrop-filter: brightness(0.95);
}

.nav-buttons .btn {
  margin: 0.625rem;
  min-width: 120px;
  background-color: var(--burnt-orange);
  color: #fff;
  border-color: #fff;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}
section {
  padding: 80px 20px;
}
.divider {
  border-top: 2px solid #ccc;
  margin: 60px 0;
}

@media (max-width: 576px) {
  .nav-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .nav-buttons .btn {
    margin: 0.625rem 0;
  }
}
