@media screen and (min-width: 1540px){
/* ==============================
   PRELOADER
   ============================== */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff; /* preloader background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* PRELOADER CONTENT */
.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO IMAGE */
.preloader-logo {
  width: 150px; /* adjust as needed */
  height: auto;
  display: block;
  margin-bottom: 20px;
  object-fit: contain;
  opacity: 1;
  animation: fadeInLogo 1s ease-in-out forwards;
}

@keyframes fadeInLogo {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SPINNER */
.loader {
  width: 45px;
  height: 45px;
  margin: 10px auto;
  border: 5px solid #e0e0e0;
  border-top: 5px solid #003366; /* accent color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* PRELOADER TEXT */
.preloader-text {
  font-size: 1.1rem;
  color: #003366;
  margin-top: 18px;
  letter-spacing: 0.5px;
  font-weight: 500;
  animation: fadeInText 1.2s ease-in-out forwards;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* BODY HIDDEN INITIALLY */
body {
  opacity: 0; /* hide everything until modal appears */
}

/* HIDE PRELOADER */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}






.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 24, 39, 0.92); /* deeper than #2c3e50 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px) saturate(120%); /* luxury glass effect */
}

/* Show modal */
.modal-overlay.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.modal-overlay.active {
  display: flex; /* show modal when active */
}

/* Modal box */
.modal-content {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  padding: 3rem 2.5rem;
  border-radius: 1.25rem;
  max-width: 90%;
  width: 540px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(-30px) scale(0.94);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
              opacity 0.55s ease;
  border: 1px solid rgba(212, 175, 55, 0.35); /* subtle gold frame */
  position: relative;
  overflow: hidden;
}

/* Elegant glowing border animation */
.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.8), rgba(255, 255, 255, 0), rgba(212, 175, 55, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderGlow 6s linear infinite;
  pointer-events: none;
}

@keyframes borderGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animate in */
.modal-overlay.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal header */
.modal-header {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
  font-family: "Georgia", "Times New Roman", serif; /* refined serif */
}

/* Elegant gold underline accent */
.modal-header::after {
  content: "";
  display: block;
  width: 70%;
  margin: 0.6rem auto 0;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #b8902e, #D4AF37);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Body text */
.modal-body {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
}

.modal-body .bold {
  font-weight: 600;
  margin-top: 1.5rem;
  color: #2c3e50;
  font-style: italic;
}

/* Footer button */
.modal-footer button {
  background: linear-gradient(135deg, #2c3e50, #1a252f); /* deep blue gradient */
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.45);
}

/* Shimmer gold sweep */
.modal-footer button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  transition: all 0.3s ease;
}

.modal-footer button:hover::before {
  left: 100%;
}

/* Hover transforms button into luxury gold */
.modal-footer button:hover {
  background: linear-gradient(135deg, #D4AF37, #b8902e);
  color: #2c3e50;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
  transform: translateY(-3px) scale(1.02);
}

h1 {
    font-size: 2.5em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 10px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 90%; /* adjust this to control line length */
}

h2 {
    font-size: 2em;
    font-family: "Bruno Ace SC", sans-serif;
    color: white;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 40%;
    transform: translateY(-50px);
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }



#homelogo {
    width: 30px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 40px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
    transform: translateY(-50px);
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 150px;
    max-height: 250px;
}

.syrenka{
    position: relative;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding-right: 200px; /* optional horizontal spacing from the right edge */
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 50;
}



input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }



.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
   
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}



a{
    text-decoration: none;
}



header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;    
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;
}}

@media screen and (min-width: 1025px) and (max-width: 1539px){
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  opacity: 1; visibility: visible;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 150px;
  height: auto;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  margin-bottom: 20px;
}

.loader {
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.preloader-text {
  font-family: sans-serif;
  font-size: 1.1rem;
  color: #333;
}

/* --- MODAL --- */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-header {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
  font-family: "Georgia", "Times New Roman", serif; /* refined serif */
}

/* Elegant gold underline accent */
.modal-header::after {
  content: "";
  display: block;
  width: 70%;
  margin: 0.6rem auto 0;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #b8902e, #D4AF37);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.modal.show { display: flex; }

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  font-family: sans-serif;
}

.modal-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.modal-footer button {
  background: linear-gradient(135deg, #2c3e50, #1a252f); /* deep blue gradient */
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.45);
}

/* Shimmer gold sweep */
.modal-footer button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  transition: all 0.3s ease;
}

.modal-footer button:hover::before {
  left: 100%;
}

/* Hover transforms button into luxury gold */
.modal-footer button:hover {
  background: linear-gradient(135deg, #D4AF37, #b8902e);
  color: #2c3e50;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
  transform: translateY(-3px) scale(1.02);
}

/* --- PAGE CONTENT (after preload) --- */
main {
  opacity: 0;
  transition: opacity 0.8s ease;
}
main.visible {
  opacity: 1;
}

h1 {
    font-size: 2.5em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 10px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 90%; /* adjust this to control line length */
}

h2 {
    font-size: 2em;
    font-family: "Bruno Ace SC", sans-serif;
    color: white;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    width: 40%;
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }


#homelogo {
    width: 30px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 40px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 150px;
    max-height: 250px;
}

.syrenka{
    position: relative;
    top: 30%;
    right: 0;
    transform: translateY(-20%);
    padding-right: 300px; /* optional horizontal spacing from the right edge */
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 50;
}


input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }


.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}

.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}
  
 



a{
    text-decoration: none;
}



header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    background: none;
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;

}}

@media screen and (min-width: 901px) and (max-width: 1024px){
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 24, 39, 0.92); /* deeper than #2c3e50 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px) saturate(120%); /* luxury glass effect */
}

/* Show modal */
.modal-overlay.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.modal-content {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  padding: 3rem 2.5rem;
  border-radius: 1.25rem;
  max-width: 90%;
  width: 540px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(-30px) scale(0.94);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
              opacity 0.55s ease;
  border: 1px solid rgba(212, 175, 55, 0.35); /* subtle gold frame */
  position: relative;
  overflow: hidden;
}

/* Elegant glowing border animation */
.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.8), rgba(255, 255, 255, 0), rgba(212, 175, 55, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderGlow 6s linear infinite;
  pointer-events: none;
}

@keyframes borderGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animate in */
.modal-overlay.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal header */
.modal-header {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
  font-family: "Georgia", "Times New Roman", serif; /* refined serif */
}

/* Elegant gold underline accent */
.modal-header::after {
  content: "";
  display: block;
  width: 70%;
  margin: 0.6rem auto 0;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #b8902e, #D4AF37);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Body text */
.modal-body {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
}

.modal-body .bold {
  font-weight: 600;
  margin-top: 1.5rem;
  color: #2c3e50;
}

/* Footer button */
.modal-footer button {
  background: linear-gradient(135deg, #2c3e50, #1a252f); /* deep blue gradient */
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.45);
}

/* Shimmer gold sweep */
.modal-footer button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  transition: all 0.3s ease;
}

.modal-footer button:hover::before {
  left: 100%;
}

/* Hover transforms button into luxury gold */
.modal-footer button:hover {
  background: linear-gradient(135deg, #D4AF37, #b8902e);
  color: #2c3e50;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
  transform: translateY(-3px) scale(1.02);
}

h1 {
    font-size: 2.5em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 10px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 90%; /* adjust this to control line length */
}

h2 {
    font-size: 3em;
    font-family: "Bruno Ace SC", sans-serif;
    color: white;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 70%;
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }



#homelogo {
    width: 50px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 150px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 250px;
    max-height: 350px;
}

.syrenka{
    position: relative;
    top: 60%;
    margin: 0 auto;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50;
}

input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }



.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
   
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}



a{
    text-decoration: none;
}



header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;
}}
@media screen and (min-width: 769px) and (max-width: 900px){
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 24, 39, 0.92); /* deeper than #2c3e50 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px) saturate(120%); /* luxury glass effect */
}

/* Show modal */
.modal-overlay.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.modal-content {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  padding: 3rem 2.5rem;
  border-radius: 1.25rem;
  max-width: 90%;
  width: 540px;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transform: translateY(-30px) scale(0.94);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
              opacity 0.55s ease;
  border: 1px solid rgba(212, 175, 55, 0.35); /* subtle gold frame */
  position: relative;
  overflow: hidden;
}

/* Elegant glowing border animation */
.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.8), rgba(255, 255, 255, 0), rgba(212, 175, 55, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderGlow 6s linear infinite;
  pointer-events: none;
}

@keyframes borderGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Animate in */
.modal-overlay.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal header */
.modal-header {
  font-size: 2.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  position: relative;
  display: inline-block;
  padding-bottom: 0.6rem;
  font-family: "Georgia", "Times New Roman", serif; /* refined serif */
}

/* Elegant gold underline accent */
.modal-header::after {
  content: "";
  display: block;
  width: 70%;
  margin: 0.6rem auto 0;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #b8902e, #D4AF37);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Body text */
.modal-body {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
}

.modal-body .bold {
  font-weight: 600;
  margin-top: 1.5rem;
  color: #2c3e50;
  font-style: italic;
}

/* Footer button */
.modal-footer button {
  background: linear-gradient(135deg, #2c3e50, #1a252f); /* deep blue gradient */
  color: #fff;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.45);
}

/* Shimmer gold sweep */
.modal-footer button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  transition: all 0.3s ease;
}

.modal-footer button:hover::before {
  left: 100%;
}

/* Hover transforms button into luxury gold */
.modal-footer button:hover {
  background: linear-gradient(135deg, #D4AF37, #b8902e);
  color: #2c3e50;
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.55);
  transform: translateY(-3px) scale(1.02);
}

  h1 {
    font-size: 2.5em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 10px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 90%; /* adjust this to control line length */
}

h2 {
    font-size: 2em;
    font-family: "Bruno Ace SC", sans-serif;
    padding-top: 25px;
    color: white;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 40%;
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }



#homelogo {
    width: 100px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 80px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 150px;
    max-height: 250px;
}

.syrenka{
    position: relative;
    top: 80%;
    margin: 0 auto;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50;
}



input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }



.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
   
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}



a{
    text-decoration: none;
}



header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;
}}

@media screen and (min-width: 769px) and (max-width: 900px){
h1 {
    font-size: 2.5em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 10px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 90%; /* adjust this to control line length */
}

h2 {
    font-size: 2em;
    font-family: "Bruno Ace SC", sans-serif;
    padding-top: 25px;
    color: white;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 40%;
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }



#homelogo {
    width: 100px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 80px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 150px;
    max-height: 250px;
}

.syrenka{
    position: relative;
    top: 80%;
    right: 0;
    transform: translateY(100%);
    padding-right: 320px; /* optional horizontal spacing from the right edge */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 50;
}



input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }



.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
   
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}



a{
    text-decoration: none;
}



header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;
}}


@media screen and (orientation: portrait) and (min-width: 481px) and (max-width: 768px){

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Show modal */
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
  display: flex;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 90%;
  width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animate in */
.modal-overlay.show .modal-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Text styles */
.modal-header {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.modal-body {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-body .bold {
  font-weight: 600;
  margin-top: 1rem;
}

/* Button */
.modal-footer button {
  background-color: #6366f1;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: background-color 0.2s, transform 0.2s;
}

.modal-footer button:hover {
  background-color: #4f46e5;
  transform: translateY(-2px);
}
h1 {
    font-size: 2.5em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 10px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 90%; /* adjust this to control line length */
}

h2 {
    font-size: 2em;
    font-family: "Bruno Ace SC", sans-serif;
    padding-top: 25px;
    color: white;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 40%;
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }



#homelogo {
    width: 100px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 80px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 150px;
    max-height: 250px;
}

.syrenka{
    position: relative;
    top: 80%;
    margin: 0 auto;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50;
}



input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }



.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
   
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}



a{
    text-decoration: none;
}



header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;
}}

@media screen and (orientation: portrait) and (min-width: 481px) and (max-width: 768px){
h1 {
    font-size: 2.5em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 40px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 90%; /* adjust this to control line length */
}

h2 {
    font-size: 2em;
    font-family: "Bruno Ace SC", sans-serif;
    padding-top: 25px;
    color: white;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 40%;
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }



#homelogo {
    width: 100px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 80px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 150px;
    max-height: 250px;
}

.syrenka{
    position: relative;
    top: 80%;
    margin: 0 auto;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50;
}

input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }

.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}

.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}

a{
    text-decoration: none;
}

header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;
}}


@media screen and (orientation: portrait) and (max-width: 480px){
#testingAlertModal {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

h1 {
    font-size: 1.8em;
    font-family: "Asul", serif;
    padding-top: 65px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    position: absolute;
    padding-left: 10px;
    top: 0;
    left: 0; /* ensure it's aligned to the left */
    white-space: normal; /* allows line breaks */
    max-width: 95%; /* adjust this to control line length */
}

h2 {
    font-size: 1.6em;
    font-family: "Bruno Ace SC", sans-serif;
    color: white;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: row;
    width: 80%;
}

.text{
  margin-top: -100px;
}

  /* Page scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: rgba(18, 18, 18, 0.95);
    border-radius: 50px;
  }
  ::-webkit-scrollbar-thumb {
    background: #BFA14A;
    border-radius: 50px;
  }

  *{
    margin: 0;
    padding: 0;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }



#homelogo {
    width: 100px;
    height: 50px;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0px;
    margin-left: 0px;
    padding-right: 10px;
    margin: 0;
    top: 0px;
    left: 10px;
    position: absolute;
    vertical-align: top;
    justify-content: top;
    float: left;
}

.custom-dropdown {
    position: absolute;
    margin-top: 20px; /* same as your margin-top */
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: left; /* optional, keeps text aligned left inside the box */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    color: #333;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .selected {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 15px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
      
  }
  
  .options {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 2s ease;
    position: absolute;
    width: 100%;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
  }
  
  .options div {
    padding: 10px;
  }
  
  .options div:hover {
    background-color: #eee;
  }
  
  .custom-dropdown:hover .options {
    max-height: 500px; /* Adjust to fit number of items */
  }
  
  .options.open {
    max-height: 500px; /* adjust as needed */
  }

.syrenka img{
    max-width: 150px;
    max-height: 250px;
}

.syrenka{
    position: relative;
    margin: 0 auto;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50;
}



input{
    width: 60%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

.cormorant-upright-bold {
    font-family: "Cormorant Upright", serif;
    font-weight: 700;
    font-style: normal;
  }



.images{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20;
    padding-top: 90px;
}


.image{
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    right: 0;
   
    margin-top: 0;
    border: none;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    border: none;
    box-shadow: 0 0 0 2px #ccc;
}



a{
    text-decoration: none;
}



header{
    margin-top: 0;
    padding-top: 0;
}

html {
    margin: 0;
    padding: 0;
    padding-top: 200px;
    text-decoration: none;
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;      /* Makes the image cover the whole area */
    background-position: center; /* Keeps it centered */
    background-repeat: no-repeat;/* Prevents it from repeating */
    height: 100vh;
    
}

body{
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    margin: 0;
}

div{
    margin-left: 0;
}


div>p{
    margin-left: 0;
    padding-left: 0;
}

figure{
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}


img{
    margin-top: 0;
}

.checked, .fa-star-half-full{
    color: gold;
}

br{
    padding: 0;
    margin: 0;
}

.bruno-ace-sc-regular {
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

.mode{
    font-family: "Bruno Ace SC", sans-serif;
    font-weight: bold;
}

.asul-bold {
    font-family: "Asul", serif;
    font-weight: 700;
    font-style: normal;
  }
  

#link{
    display: inline;
    text-decoration: none;
    color: white;
}

.search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

#searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);;
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
}

#searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
}

::placeholder {
    color: white;
}}

@media screen and (orientation: landscape) and (min-width: 345px) and (max-width: 812px) and (hover: none){
  /*iPhone11 Pro*/

  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Asul', 'Franklin Gothic Medium', serif;
    font-weight: 700;
  }

  html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  body {
    background-image: url('other_photos/flux_dev4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }

  /* Container Top */
  .containerTop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
    padding-top: 30px;
    width: 100%;
    gap: 30px;
    box-sizing: border-box;
  }

  .containerTop h1,
  .containerTop h2 {
    position: static !important;
    margin: 0;
    white-space: normal;
  }

  .containerTop h1 {
    font-size: 2em;
    font-family: "Asul", serif;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    width: 20%;
    align-self: flex-start;
    margin-top: -70px;
    position: relative;
    top: -70px;
  }

  .containerTop h2 {
    font-size: 1.5em;
    font-family: "Bruno Ace SC", sans-serif;
    color: white;
    width: 90%;
  }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: rgba(18,18,18,0.95); border-radius: 50px; }
  ::-webkit-scrollbar-thumb { background: #BFA14A; border-radius: 50px; }

  /* Logo */
  #homelogo {
    width: 100px;
    height: 50px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 10px;
  }

  /* Syrenka + Dropdown container */
  .all {
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    padding: 10px;
    box-sizing: border-box;
    flex-wrap: nowrap !important; /* no wrapping */
    white-space: nowrap !important;          /* prevent text wrap inside */
    position: relative;
    z-index: 50;
    transform: translateY(-120px);
  }

  /* Syrenka logo */
  .syrenka {
    flex: 0 1 auto;  /* allow shrinking if needed */
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .syrenka img {
    max-width: 100px;
    height: auto;
    display: block;
  }

  /* Custom Dropdown */
  .custom-dropdown {
    flex: 0 1 auto;       /* allow shrinking */
    margin-right: auto;     /* push to the right */
    position: relative;    /* for dropdown positioning */
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-size: 16px;
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    background: white;
    transition: all 0.3s ease;
    z-index: 100;
    width: 90%;
  }

  .custom-dropdown .selected {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    font-weight: 500;
  }

  .custom-dropdown .options {
    position: absolute;
    top: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    transition: max-height 0.3s ease;
    z-index: 200;
  }

  .custom-dropdown .options div {
    padding: 10px;
  }

  .custom-dropdown .options div:hover { background-color: #eee; }

  .custom-dropdown:hover .options,
  .custom-dropdown .options.open { max-height: 500px; }

  /* Input styling */
  input {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  /* Typography helpers */
  .cormorant-upright-bold { font-family: "Cormorant Upright", serif; font-weight: 700; }
  .bruno-ace-sc-regular { font-family: "Bruno Ace SC", sans-serif; font-weight: 400; }
  .mode { font-family: "Bruno Ace SC", sans-serif; font-weight: bold; }
  .asul-bold { font-family: "Asul", serif; font-weight: 700; }

  /* Images */
  .images {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 90px;
  }

  .image {
    z-index: 50;
    flex-shrink: 0;
    width: 80%;
    height: 350px;
    margin-top: 0;
    border-radius: 20px;
    object-fit: cover;
    flex-basis: 150px;
    display: block;
    box-shadow: 0 0 0 2px #ccc;
  }

  a { text-decoration: none; }

  header { margin-top: 0; padding-top: 0; }

  /* Links */
  #link { display: inline; text-decoration: none; color: white; }

  /* Search bar */
  .search {
    width: 100%;
    padding-top: 0px;
    position: relative;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    flex-direction: row;
  }

  #searchForm {
    outline: 4px solid rgba(18, 18, 18, 0.95);
    border: none;
    border-radius: 60px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    height: 35px;
    display: flex;
  }

  #searchForm input {
    background: transparent;
    flex: 1;
    outline: none;
    border: none;
    font-size: 20px;
    color: whitesmoke;
  }

  ::placeholder { color: white; }
}
