@charset "UTF-8";
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*

*/
/* ====== Winter Mode (Snow & Icicles) ====== */
/* line 2, app/assets/stylesheets/seasonal_mode.css */
#mainHeader.winter-mode {
  background-image: url(main_images/VillaPaintingHeader_Snow-955d92d371769affc8561419d87d12d0d48d2339dbfd7ae550bb11d8e44af405.png);
}

/* Snowflake Base */
/* line 7, app/assets/stylesheets/seasonal_mode.css */
.snowflake {
  position: absolute;
  top: -15px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  width: 6px;
  height: 6px;
  opacity: 0.8;
}

/* line 20, app/assets/stylesheets/seasonal_mode.css */
.snowflake:nth-child(3n) {
  width: 3px;
  height: 3px;
}

/* line 25, app/assets/stylesheets/seasonal_mode.css */
.snowflake:nth-child(3n+1) {
  width: 5px;
  height: 5px;
}

/* line 30, app/assets/stylesheets/seasonal_mode.css */
.snowflake:nth-child(3n+2) {
  width: 7px;
  height: 7px;
}

/* line 35, app/assets/stylesheets/seasonal_mode.css */
.snowflake.large {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  animation-duration: 20s;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

@keyframes snowfall {
  0% {
    transform: translateX(0) translateY(-15px) rotate(0deg);
  }
  25% {
    transform: translateX(var(--drift)) translateY(80px) rotate(90deg);
  }
  50% {
    transform: translateX(calc(var(--drift) * -0.5)) translateY(160px) rotate(180deg);
  }
  75% {
    transform: translateX(calc(var(--drift) * 0.8)) translateY(240px) rotate(270deg);
  }
  100% {
    transform: translateX(var(--drift)) translateY(330px) rotate(360deg);
  }
}

@keyframes icicle-sparkle {
  0%,
100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ====== Spring Mode (Flowers & Floating Petals) ====== */
/* line 78, app/assets/stylesheets/seasonal_mode.css */
.petal {
  position: absolute;
  top: -10px;
  pointer-events: none;
  z-index: 10;
  width: 8px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
}

@keyframes petalFloat {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(300px) rotate(360deg) translateX(calc(var(--sway) * 1px));
    opacity: 0;
  }
}

/* ====== Summer Mode (Fireflies, Sunbeams, Butterflies) ====== */
/* line 107, app/assets/stylesheets/seasonal_mode.css */
.firefly {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 110;
  /* Higher z-index to pop over other elements */
  background: radial-gradient(circle, #fffacd 20%, #ffd700 60%, rgba(255, 215, 0, 0) 100%);
  box-shadow: 0 0 6px 2px rgba(255, 215, 0, 0.6);
  /* Glow effect */
  opacity: 0;
  mix-blend-mode: screen;
  /* Helps pop against dark backgrounds */
}

@keyframes fireflyFloat {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: translate(var(--moveX), var(--moveY)) scale(1.2);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 10px 4px rgba(255, 215, 0, 0.8);
  }
  /* Pulse */
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(calc(var(--moveX) * 2), calc(var(--moveY) * 2)) scale(0.5);
    opacity: 0;
  }
}

/* Sunbeams */
/* line 149, app/assets/stylesheets/seasonal_mode.css */
.sunbeam-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* line 160, app/assets/stylesheets/seasonal_mode.css */
.sunbeam {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 240, 200, 0.05) 10%, rgba(255, 255, 255, 0) 20%);
  animation: sunRotate 60s infinite linear;
  opacity: 0.6;
}

@keyframes sunRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Butterflies */
/* line 182, app/assets/stylesheets/seasonal_mode.css */
.butterfly {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  will-change: transform;
}

@keyframes butterflyFlap {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.2);
  }
}

@keyframes butterflyPath {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--endX), var(--endY)) rotate(var(--rot));
    opacity: 0;
  }
}

/* ====== Fall Mode (Falling Leaves) ====== */
/* line 220, app/assets/stylesheets/seasonal_mode.css */
.leaf {
  position: absolute;
  top: -20px;
  pointer-events: none;
  z-index: 10;
  width: 20px;
  height: 20px;
  opacity: 0.9;
}

@keyframes leafFall {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(320px) rotate(720deg) translateX(calc(var(--sway) * 1px));
    opacity: 0;
  }
}

/* Shared Container for Piles (Snow, Pumpkins, Flowers) */
/* line 247, app/assets/stylesheets/seasonal_mode.css */
.seasonal-piles-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 362px;
  height: 80px;
  pointer-events: none;
  z-index: 100;
  overflow: visible;
}

/* Individual Pile Item Wrappers */
/* line 259, app/assets/stylesheets/seasonal_mode.css */
.seasonal-item {
  position: absolute;
  bottom: 0;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

/* line 266, app/assets/stylesheets/seasonal_mode.css */
.seasonal-item:hover {
  transform: scale(1.05) translateY(-2px);
}

/* Styles for Attractions Page */
/* line 3, app/assets/stylesheets/attractions.css */
.attractions-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* line 10, app/assets/stylesheets/attractions.css */
.section-block {
  flex: 1 1 100%;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* line 18, app/assets/stylesheets/attractions.css */
.attraction-section {
  background-color: #fdf5e6;
  /* Old Lace */
  border-left: 5px solid #8b4513;
  /* SaddleBrown */
}

/* line 25, app/assets/stylesheets/attractions.css */
.dining-section {
  background-color: #fffff0;
  /* Ivory */
  border-left: 5px solid #6b8e23;
  /* OliveDrab */
}

/* line 32, app/assets/stylesheets/attractions.css */
.section-block h3 {
  margin-top: 0;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

/* line 38, app/assets/stylesheets/attractions.css */
.section-block ul {
  list-style-type: none;
  padding-left: 0;
}

/* line 43, app/assets/stylesheets/attractions.css */
.section-block li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

/* line 49, app/assets/stylesheets/attractions.css */
.section-block li::before {
  content: "•";
  color: #660000;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* line 57, app/assets/stylesheets/attractions.css */
.attraction-section li::before {
  color: #8b4513;
}

/* line 61, app/assets/stylesheets/attractions.css */
.dining-section li::before {
  color: #6b8e23;
}

/* Tabs Styling */
/* line 66, app/assets/stylesheets/attractions.css */
.AttractionsTabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f9dfc0;
  /* Match page background */
  padding: 15px 0;
  border-bottom: 1px solid rgba(153, 0, 0, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* line 81, app/assets/stylesheets/attractions.css */
.AttractionsTab {
  background-color: transparent;
  border: 2px solid #990000;
  color: #990000;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* line 94, app/assets/stylesheets/attractions.css */
.AttractionsTab:hover {
  background-color: #ffe6e6;
}

/* line 98, app/assets/stylesheets/attractions.css */
.AttractionsTab.active {
  background-color: #990000;
  color: white;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  /* line 105, app/assets/stylesheets/attractions.css */
  .AttractionsTab {
    flex: 1 1 100%;
    margin: 5px 0;
  }
  /* line 110, app/assets/stylesheets/attractions.css */
  .AttractionsTabs {
    padding: 5px 0;
    position: static;
  }
}

/* ----- Dark Mode Color Schema -----*/
/* line 20, app/assets/stylesheets/application.css.scss */
body {
  background: #c7b299;
}

/* line 24, app/assets/stylesheets/application.css.scss */
#mainContent {
  background: #f9dfc0;
  border-radius: 10px;
  border: solid 1px grey;
}

/* line 30, app/assets/stylesheets/application.css.scss */
.RoomSectionDiv {
  border-top: solid 3px #000;
  border-radius: 3px;
}

/* line 35, app/assets/stylesheets/application.css.scss */
#footer {
  border-top: solid 1px #000;
  border-bottom: solid 2px #000;
}

@font-face {
  font-family: Harrington;
  src: url(../fonts/HARNGTON.TTF) format("truetype");
}

/* ----- Basic Content -----*/
/* line 47, app/assets/stylesheets/application.css.scss */
body {
  font-family: Harrington, Papyrus, Helvetica, sans-serif;
  font-size: 12px;
  margin: 0 auto;
  padding: 0;
  border: 0;
}

/* line 55, app/assets/stylesheets/application.css.scss */
.center {
  text-align: center;
}

/* line 59, app/assets/stylesheets/application.css.scss */
.right {
  float: right;
}

/* line 63, app/assets/stylesheets/application.css.scss */
.left {
  float: left;
}

/* line 67, app/assets/stylesheets/application.css.scss */
.image_hover_div {
  position: relative;
}

/* line 71, app/assets/stylesheets/application.css.scss */
.image_hover_div img.hover_img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s;
}

/* line 82, app/assets/stylesheets/application.css.scss */
.image_hover_div img.main_hover_img {
  transition: opacity .2s;
}

/* line 86, app/assets/stylesheets/application.css.scss */
.image_hover_div:hover img.hover_img {
  opacity: 1;
}

/* line 90, app/assets/stylesheets/application.css.scss */
.image_hover_div:hover img.main_hover_img {
  opacity: 0;
}

/* ----- Header Content -----*/
/* line 96, app/assets/stylesheets/application.css.scss */
#mainHeader {
  background: url(main_images/VillaPaintingHeader-3a3ec2abffa5715a1c1de824985e24c1f7e98c20c0c244ed9fc721c0f613c835.png);
  background-repeat: no-repeat;
  background-position: left center;
  margin: 0px auto;
  height: 300px;
  width: 920px;
  margin: 0px auto;
  position: relative;
  /* Added for snowfall containment */
  overflow: hidden;
  /* Ensure snow doesn't spill out */
}

/* line 110, app/assets/stylesheets/application.css.scss */
.mainHeaderRight {
  margin-right: 0px;
  margin-bottom: 0px;
  margin-top: 10px;
}

/* line 116, app/assets/stylesheets/application.css.scss */
.header-seperator {
  height: 60px;
  width: 750px;
  position: relative;
  margin: auto;
  margin-bottom: 45px;
  top: 0px;
}

/* line 125, app/assets/stylesheets/application.css.scss */
.header-seperator:before {
  content: '';
  background-image: url(main_images/MainDivider-8c414929643f1688fc4aff73744bee70b8622bf050509dc7c75223eb6071f3c0.png);
  height: 100px;
  width: 950px;
  position: absolute;
  margin: auto;
  float: right;
  margin-top: -15px;
  margin-left: -100px;
}

/* ----- Nav Content -----*/
/* line 139, app/assets/stylesheets/application.css.scss */
.nav-outline {
  width: auto;
  float: right;
}

/* line 144, app/assets/stylesheets/application.css.scss */
.nav_ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

/* line 150, app/assets/stylesheets/application.css.scss */
.nav-c {
  margin: 0 auto;
  height: 36px;
  margin-left: -10px;
}

/* line 156, app/assets/stylesheets/application.css.scss */
.nav-c li {
  float: left;
  height: 36px;
  width: 136px;
  margin-top: 2px;
}

/* ----- Main Content -----*/
/* line 165, app/assets/stylesheets/application.css.scss */
#mainContent {
  width: 915px;
  margin: 0px auto;
  margin-bottom: 22px;
  padding: 20px;
  float: center;
  position: relative;
  box-shadow: 10px 10px 5px #888888;
}

/* line 175, app/assets/stylesheets/application.css.scss */
#footer {
  width: 915px;
  font-size: 10px;
  clear: both;
  margin: 20px auto 20px;
  padding: 20px 0px 20px 20px;
  color: #22356f;
  text-align: center;
  position: relative;
}

/* line 186, app/assets/stylesheets/application.css.scss */
#footer p {
  margin: 0px;
  color: #660000;
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  font-family: Harrington, Papyrus, Helvetica, sans-serif;
}

/* line 195, app/assets/stylesheets/application.css.scss */
#footer img {
  margin-left: 20px;
  margin-right: 0px;
}

/* line 200, app/assets/stylesheets/application.css.scss */
.footerImgDiv {
  margin: auto;
}

/* line 205, app/assets/stylesheets/application.css.scss */
.signature {
  margin-left: 100px;
}

/* ----- Image Styles -----*/
/* line 211, app/assets/stylesheets/application.css.scss */
.BorderedImg {
  border: 2px solid #999;
  border-bottom-color: #EEE;
  border-right-color: #EEE;
  box-shadow: 10px 10px 5px #888888;
  margin: 5px 30px 15px 10px;
  border-radius: 10px;
}

/* line 220, app/assets/stylesheets/application.css.scss */
.ImgRowDiv {
  margin: auto 40px 40px auto;
  text-align: center;
}

/* line 225, app/assets/stylesheets/application.css.scss */
.ImgRowDiv img {
  margin-left: 20px;
  margin-right: 20px;
  vertical-align: middle;
  border: 2px solid #999;
  border-bottom-color: #EEE;
  border-right-color: #EEE;
  box-shadow: 10px 10px 5px #888888;
}

/* line 238, app/assets/stylesheets/application.css.scss */
a,
a:link,
a:visited {
  color: #666633;
  font-size: 12pt;
  font-style: italic;
  font-weight: normal;
  line-height: 1.5;
}

/* line 248, app/assets/stylesheets/application.css.scss */
a:hover {
  color: #333300;
  font-size: 12pt;
  font-style: italic;
  font-weight: normal;
}

/* line 255, app/assets/stylesheets/application.css.scss */
p {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  text-indent: 30px;
  font-size: 14px;
  color: #660000;
  line-height: 1.5;
  margin-left: 15px;
}

/* line 264, app/assets/stylesheets/application.css.scss */
h1 {
  color: #660000;
  font-size: 2em;
  font-weight: bold;
  margin: 0.67em 0;
}

/* line 271, app/assets/stylesheets/application.css.scss */
h2 {
  color: #660000;
  font-size: 2.5em;
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

/* line 279, app/assets/stylesheets/application.css.scss */
h3 {
  color: #660000;
  font-size: 1.5em;
  font-style: oblique;
  font-weight: bold;
  background-color: transparent;
  margin: 1em 0;
}

/* line 288, app/assets/stylesheets/application.css.scss */
h4 {
  color: #660000;
  font-size: 1em;
  font-style: oblique;
  font-weight: bold;
  background-color: transparent;
  margin: 1em 0;
}

/* line 297, app/assets/stylesheets/application.css.scss */
ul {
  color: #660000;
  font-size: 12pt;
  font-style: oblique;
  font-weight: 600;
  line-height: normal;
  background-color: transparent;
  text-align: left;
  list-style-type: disc;
  margin: 1em 0 1em 1em;
}

/* line 309, app/assets/stylesheets/application.css.scss */
.body_list li {
  margin-bottom: 10px;
}

/* line 313, app/assets/stylesheets/application.css.scss */
ul u {
  color: #660000;
}

/* line 317, app/assets/stylesheets/application.css.scss */
address {
  color: #660000;
}

/* line 321, app/assets/stylesheets/application.css.scss */
#DarkSelector {
  display: none;
  height: 40px;
}

/* .slideThree */
/* line 327, app/assets/stylesheets/application.css.scss */
.slideThree {
  width: 86px;
  height: 26px;
  background: #333;
  margin: 10px auto;
  position: relative;
  border-radius: 50px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.2);
}

/* line 337, app/assets/stylesheets/application.css.scss */
.slideThree:after {
  content: "Light";
  color: #FFF;
  position: absolute;
  right: 10px;
  z-index: 0;
  font: 12px/26px Arial, sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.15);
}

/* line 348, app/assets/stylesheets/application.css.scss */
.slideThree:before {
  content: "Dark";
  color: #27ae60;
  position: absolute;
  left: 10px;
  z-index: 0;
  font: 12px/26px Arial, sans-serif;
  font-weight: bold;
}

/* line 358, app/assets/stylesheets/application.css.scss */
.slideThree label {
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  background: #fcfff4;
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}

/* line 374, app/assets/stylesheets/application.css.scss */
.slideThree input[type="checkbox"] {
  visibility: hidden;
}

/* line 378, app/assets/stylesheets/application.css.scss */
.slideThree input[type="checkbox"]:checked + label {
  left: 43px;
}

/* end .slideThree */
/* line 383, app/assets/stylesheets/application.css.scss */
.AmenitiesList {
  margin-bottom: 40px;
}

/* line 387, app/assets/stylesheets/application.css.scss */
.AmenitiesDiv {
  float: right;
  display: block;
  width: 320px;
}
