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

html, body {
  height: 100%;
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

.container-fluid {
  height: 100vh;
  padding: 0;
}

.row {
  margin: 0;
  height: 100%;
}

.sidebar {
  background: linear-gradient(135deg, #8C472E 0%, rgb(101.6129032258, 51.5322580645, 33.3870967742) 100%);
  color: #ffffff;
  padding: 0;
  position: fixed;
  height: 100vh;
  z-index: 1000;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.sidebar .sidebar-content {
  padding: 2rem 1.5rem;
  height: 50vh;
  display: flex;
  flex-direction: column;
}
.sidebar .brand-title {
  color: #F2BE5C;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #F2BE5C;
  padding-bottom: 1rem;
}
.sidebar .brand-title img {
  width: 100%;
  max-height: 47px;
}
.sidebar .nav .nav-link {
  color: #F2BE5C;
  background-color: rgba(242, 190, 92, 0.1);
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  border-left: 3px solid transparent;
  text-align: center;
  width: 100%;
}
.sidebar .nav .nav-link.active {
  color: #F2BE5C;
  background-color: rgba(242, 190, 92, 0.15);
  border-left-color: #F2BE5C;
  font-weight: bold;
}

.painting-info {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.19);
  color: #fff;
  padding: 0.5rem;
  border-top-left-radius: 5px;
}
.painting-info a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.main-content {
  margin-left: 25%;
  padding: 0;
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

.content-section {
  display: block;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.content-section#home {
  padding: 0;
}
.content-section#home .image-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #343a40;
}
.content-section#home .image-container picture {
  width: 100%;
  height: 100%;
  display: block;
}
.content-section#home .image-container .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.content-section#home .image-container .main-image:hover {
  transform: scale(1.05);
}
.content-section#contact-us {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.content-section#contact-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("301-2018-80x100-1.jpg");
  background-image: -webkit-image-set(url("301-2018-80x100-1.webp") 1x, url("301-2018-80x100-1.jpg") 1x);
  background-image: image-set(url("301-2018-80x100-1.webp") type("image/webp"), url("301-2018-80x100-1.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: 0;
}
.content-section#contact-us .section-content {
  position: relative;
  z-index: 1;
}
.content-section .section-content {
  padding: 4rem;
  max-width: 100%;
  text-align: left;
}
.content-section .section-content h1 {
  color: #8C472E;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.content-section .section-content h2 {
  text-align: center;
}
.content-section .section-content p {
  color: rgb(29.1379310345, 32.5, 35.8620689655);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.content-section .section-content .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.content-section .section-content .feature-grid .feature-item {
  background: linear-gradient(135deg, #F29863 0%, #F2BE5C 100%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-section .section-content .feature-grid .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.content-section .section-content .feature-grid .feature-item h3 {
  color: #8C472E;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.content-section .section-content .feature-grid .feature-item p {
  color: rgb(120.8064516129, 61.2661290323, 39.6935483871);
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  .sidebar.hide {
    transform: translateX(-100%);
  }
  .sidebar .brand-title img {
    padding-left: 60px;
  }
  #sidebar-bottom {
    display: flex !important;
  }
  .main-content {
    margin-left: 0;
    width: 100%;
  }
  .content-section .section-content {
    padding: 2rem;
  }
  .content-section .section-content h1 {
    font-size: 2rem;
  }
  .content-section .section-content .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.main-content::-webkit-scrollbar {
  width: 8px;
}

.main-content::-webkit-scrollbar-track {
  background: #f8f9fa;
}

.main-content::-webkit-scrollbar-thumb {
  background: #F2BE5C;
  border-radius: 4px;
}
.main-content::-webkit-scrollbar-thumb:hover {
  background: #F28705;
}

.btn-primary {
  background: linear-gradient(135deg, #8C472E 0%, rgb(101.6129032258, 51.5322580645, 33.3870967742) 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 2rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, rgb(120.8064516129, 61.2661290323, 39.6935483871) 0%, rgb(82.4193548387, 41.7983870968, 27.0806451613) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(140, 71, 46, 0.3);
}
.btn-primary:focus, .btn-primary:active {
  background: linear-gradient(135deg, #8C472E 0%, rgb(101.6129032258, 51.5322580645, 33.3870967742) 100%);
  box-shadow: 0 0 0 0.25rem rgba(140, 71, 46, 0.5);
}

.form-control, .form-select {
  border: 2px solid rgba(140, 71, 46, 0.2);
}
.form-control:focus, .form-select:focus {
  border-color: #8C472E;
  box-shadow: 0 0 0 0.25rem rgba(140, 71, 46, 0.15);
}

.form-check-input, .form-check-label {
  cursor: pointer;
}

#sponsors a {
  color: #ffffff;
}

#sidebar-bottom {
  display: none;
  background-image: url("301-2018-80x100-1.jpg");
  background-image: -webkit-image-set(url("301-2018-80x100-1.webp") 1x, url("301-2018-80x100-1.jpg") 1x);
  background-image: image-set(url("301-2018-80x100-1.webp") type("image/webp"), url("301-2018-80x100-1.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  flex-direction: column;
  width: 100%;
}

/*# sourceMappingURL=styles.css.map */
