body{
    background-color:#ffeaca;
}

pl{
    font-size:medium;  
}

pp{
    font-size:large;
}

.paralaxText{
  /*height:30vh;*/
    padding-top: 3%;
    padding-bottom: 3%;
    background-color:lightblue;
    color:rgb(0, 16, 56);
    font-size:36px;
    text-align:center;
}

.parallax1 {
 

  /* Set a specific height */
  height: 100vh; 

  /* Create the parallax scrolling effect */
  background-image:url("assets/MajLiving.avif");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
   background-size: contain;
}

.parallax2 {
 


  /* Set a specific height */
  height: 100vh;

  /* Create the parallax scrolling effect */
  background-image:url("assets/MajDoc.avif");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
   background-size: contain;
}

.parallax3 {
 


  /* Set a specific height */
   height: 100vh;

  /* Create the parallax scrolling effect */
  background-image:url("assets/MajYard.avif");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
   background-size: contain;
}



.parallax4 {
 

  /* Set a specific height */
  height: 100vh;

  /* Create the parallax scrolling effect */
  background-image:url("assets/MajLounge.avif");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}




.container {
  height: 100vh;
  background: #ffeaca;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;

}


 .container-2 {
  height: 100vh;
  width: 100%;
  background: none;
}

/* Keep logo centered */
.logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* center on screen */
width: clamp(250px, 20vw, 300px); 
  z-index: 1000;
  transform-origin: center center;

  pointer-events: auto;
}



@media (max-width: 768px) {
  .parallax1, .parallax2, .parallax3, .parallax4 {
      background-attachment: scroll; /* safer for mobile */
      background-size: cover;        /* fill container */
      background-position: center;
      height: 60vh; /* You already have this — good */
      width: 100vw;
      margin-top: 1%;
      margin-bottom: 1%;
  }
}

@media (max-width: 768px) {
  .logo {
      width: clamp(300px, 40vw, 400px); 
  }
}

@media (max-width: 768px) {
  .paralaxText {
    font-size: 24px;
    padding: 5% 3%;
  }
}



.logo-subtext {
  position: fixed;
  top: calc(50% + 80px); /* 80px below logo (adjust as needed) */
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #127286;
  text-align: center;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-size: 300%;
}


/* Dropdown styles */
.dropbtn {
 background-color:#ffeaca;
  padding: 18px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  text-align: center;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 1px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #c5bfbf;}

.dropdown-visible {
  opacity: 1;
  transform: translateY(0);
}

/*Fonts*/

.bodoni-moda-1 {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
}

.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}



.marcellus-regular {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}


/*booking*/

/* || Gallery (Pictures) */

/* The grid: Four equal columns that floats next to each other */
.row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* always 4 columns */
  gap: 10px;
  width: 100%;
}

.column {

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.column img {
opacity:0.5;
  width: 100%;       /* make image fill the column width */
  max-width: 200px;  /* max size for large screens */
  height: auto;      /* keep aspect ratio */
  object-fit: contain;
}


.column img:hover {
  opacity: 1;
}


/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
