/* NEW Color Palette:
   
  Cobalt: 3939FF
  Light Blue: 2BBEF0
  Black:191919
  Pink: #FF4AB3
  Purple: DBB8FF
  White : F5F6F4
  
*/


/* ==================================== Fonts ======================================== */
html, body {
    height: 100%;
    margin: 0;
    color: #212121;
    font-family: sans-serif; /* fallback for body text */
    font-size: 1.1rem;
    background-color: #F5F6F4;
}

/* Headings use Poppins first, then Segoe UI, then sans-serif */
h1 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    color: #212121;
    margin-top: 3rem; 
}

h2, h3, h4 {
    font-family: 'Poppins', 'Segoe UI', sans-serif; 
    color: #212121;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.1rem;
}


p,
b {
    font-family: 'Futura', monospace;
    color: #212121;
}


a {
  font-family: "Futura", sans-serif; 
  font-size: 20px;                   
  color: #212121;                        

}

a:hover {
  color: #F5F6F4   
}



/* ===================================== Header Logo ====================================== */
.logo {
  transform: translateY(16px); 
  max-width: 200px;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}





  /* ============================= Header Bar ============================ */
.site-header {
  background:
    radial-gradient(circle at 15% 30%, #2BBEF0 0%, transparent 40%),   /* blue */
    radial-gradient(circle at 85% 25%, #F06AAE 0%, transparent 45%),   /* pink */

    /* NEW: soft orange bridge between pink + blue */
    radial-gradient(circle at 65% 40%, rgba(255, 154, 60, 0.55) 0%, transparent 45%),

    radial-gradient(circle at 50% 50%, #32D74B 0%, transparent 42%),   /* lime */
    radial-gradient(circle at 30% 75%, #36CFEA 0%, transparent 45%),   /* cyan */
    radial-gradient(circle at 70% 70%, #FF7FBF 0%, transparent 40%),   /* light pink */

    #2BBEF0; /* base color fallback */

  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  width: 100%;
  box-sizing: border-box; 
  position: relative;
  z-index: 10;
  overflow-x: hidden;
}


/* ============================= Navigation Bar ============================ */
.navigation-bar {
  flex: 1;
  transform: translateY(20px);
  max-width: 100%;
  box-sizing: border-box;
}

.navigation-bar ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0; 
  gap: 1.8rem;
  flex-wrap: wrap;
}

.navigation-bar li {
  margin: 0;
}


.navigation-bar a {
  color: #F5F6F4;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem; 
  transition: color 0.3s ease;
}

.navigation-bar a:hover {
  color: #212121;
}






/* ===================================== Menu ========================================= */
.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;

  max-width: 1200px;   /* prevents ultra-wide screens from going wild */
  margin: 0 auto;     /* centers container on the page */
  padding: 2rem;
}

.menu img {
  flex: 1 1 0;         /* makes images share space evenly */
  max-width: 100%;
  height: auto;

  object-fit: contain;
   box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 6px 12px rgba(0, 0, 0, 0.18);
  
}

/*=================== Menu PDF Button ===================*/
.menu-pdf {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.menu-pdf a {
  color: #3939FF !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border: 2px solid #3939FF;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.menu-pdf a:hover,
.menu-pdf a:focus-visible {
  color: #FF4AB3 !important;
  border-color: #FF4AB3;
  background-color: transparent;
}







/* =============================== About ====================================== */

.about-photo {
  position: relative;
  max-width: 1200px;      
  margin: 2rem auto;     
  overflow: hidden;
  border-radius: 8px;
}

.about-photo-wrapper {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 1rem;
}


.about-photo-wrapper img {
  width: 100%;
  max-width: 300px;    
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #3939FF;   
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}



.about-content {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 
  width: 90%; 
  margin: 0 auto;
  padding-top: 1.6rem;
} 

/* ===============================Contact Form ====================================== */
.hours p {
  color: #fa58a7;
}


.contact {
  max-width: 800px;            
  margin: 2rem auto;            
  padding: 2rem;               
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  font-family: "Segoe UI", sans-serif; 

  display: flex;                
  flex-direction: column;       
  align-items: center;        
}

.contact h2 {
  text-align: center;
  width: 100%;                  
  margin-bottom: 1rem;
}

.contact label {
  display: block;
  width: 100%;                  
  margin-top: 2rem;
  font-weight: bold;
}

.contact input,
.contact textarea {
  width: 100%;                  
  padding: 0.8rem;            
  margin-top: 0.7rem;
  border-radius: 5px;
  border: 1.2px solid #ccc;
  box-sizing: border-box;
  font-size: 1.3rem;
}

.contact button {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #fa58a7;
  color: #F5F6F4;
  border: none;
  border-radius: 5px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #3f22ec;
}

/*=================== Contact Image ===================*/
.image-gallery {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.image-gallery img {
  max-width: 100%;
  width: 400px;        /* controls visual size */
  height: auto;
  border-radius: 10px;
  display: block;
}








/* =============================== Video ====================================== */

/* Video Wrapper */
.video-wrapper {
  position: relative;       
  margin: 2rem auto;        
  max-width: 800px;        
  width: 100%;            
  cursor: pointer;
}

/* Video Thumbnail */
.video-wrapper img {
  width: 100%;              
  max-width: 800px;        
  border-radius: 10px;     
  display: block;          
  height: auto;      
}

/* Play Button */
.video-wrapper .play-button {
  position: absolute;       
  top: 50%;                 
  left: 50%;                
  transform: translate(-50%, -50%);  
  font-size: 7rem;          
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  pointer-events: none;     
}





/* =============================== News ====================================== */

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.news-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;    
  gap: 20px;                   
  margin-bottom: 12rem;
}

.news-gallery a {
  flex: 1 1 250px;            
  max-width: 300px;            
  background: #F5F6F4;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-gallery a:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}


.news-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;         
  object-fit: cover;           
  border-radius: 8px;
  display: block;
}





/*=================== Hero Image ===================*/

.hero-content h1,
.hero-content p {
  color: white;
}

.hero-image {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Blurred background image */
.hero-image::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/hero-image/full-room.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2.5px);         
  transform: scale(1.05);     
  z-index: 0;
}

/* Overlay */
.hero-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.2); 
  z-index: 1;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2; 
  max-width: 600px;
  padding: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
}


/*=================== Catering Menu ===================*/
.catering {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;  
  margin: 0;
}

.catering-menu-pdf {
  margin: 2rem 0;
}

.catering .catering-menu-pdf a {
  color: #3939FF !important; 
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border: 2px solid #3939FF;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.catering .catering-menu-pdf a:hover {
  color: #FF4AB3 !important;
  border-color: #FF4AB3;
  background-color: transparent;
}

/* Image wrapper — controls overall size */
.catering-image {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;   /* 👈 roughly half the previous visual size */
  margin: 1.5rem auto;
}

/* Image itself */
.catering-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}


/*=================== Catering Button ===================*/
.button-wrapper {
  display: flex;                
  justify-content: center;       
  margin-top: 1rem;             
  margin-bottom: 2rem;
}

/* Button styling */
.btn {
  background-color: #fa58a7;
  color: #F5F6F4;
  padding: 1rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #3f22ec;
}



/*========================Interactive Map (Footer)=================================*/
/* Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}



.map-section {
    width: 100%;
    position: relative; 
    bottom: 0;
    margin: 2rem auto;   
    max-width: 1200px;
    padding: 0 1rem;
    border-radius: 6px;
    box-shadow:
       0 4px 8px rgba(0, 0, 0, 0.16),   
       0 10px 24px rgba(0, 0, 0, 0.14);
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 300px; 
    border: 0;
}




/*========================= Footer Navigation ======================================*/
.site-footer {
  background:
    conic-gradient(
      from 200deg at 55% 45%,
      rgba(255, 154, 60, 0.95),   
      rgba(250, 88, 167, 0.95),   
      rgba(186, 104, 200, 0.9),   
      rgba(255, 209, 102, 0.95),  
      rgba(88, 214, 141, 0.9),    
      rgba(255, 122, 89, 0.95),   
      rgba(255, 154, 60, 0.95)
    ),

    radial-gradient(ellipse at 25% 30%, rgba(88, 214, 141, 0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 25%, rgba(186, 104, 200, 0.65) 0%, transparent 60%),
    radial-gradient(ellipse at 35% 85%, rgba(255, 209, 102, 0.6) 0%, transparent 58%),
    radial-gradient(ellipse at 75% 80%, rgba(250, 88, 167, 0.6) 0%, transparent 55%),

    #2BBEF0;

  color: #F5F6F4;
  padding: 2rem 1rem;
  text-align: center;
}





.site-footer nav {
  display: flex;
  justify-content: center; 
  align-items: center;     
  flex-wrap: wrap;        
  gap: .5rem;               
  margin-bottom: 1rem;
}

.site-footer nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.site-footer nav ul li a {
  color: #F5F6F4;
  text-decoration: none;
  font-size: 1.2rem; 
}

.site-footer a:hover {
  color: #212121;
}

/* ==================================Footer Logo ====================================== */
.footer-logo {
  max-width: 100px; 
  margin: 0 1rem;  
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}


/*========================= Footer socials ======================================*/
.socials {
  display: flex;
  justify-content: center; 
  align-items: center;     
  flex-wrap: wrap;
  height: 100%;
  margin: 0;
  color: #F5F6F4;
  font-family: sans-serif; 
  font-size: 1rem;
  margin-right: 80px;
}

.socials img {
  width: 40px;          
  height: auto;         
  margin: 0 10px;        
  transition: transform 0.3s ease;
}

.socials img:hover {
  transform: scale(1.1); 
}


/*========================= Footer hours ======================================*/

.footer-hours {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
  transform: translateX(-2.7rem);
}



/* ======================= Back to Top Button ======================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background:#fa58a7;
  color: #F5F6F4;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;                 
  pointer-events: none;        
  z-index: 999;
  display: inline-block;
  white-space: nowrap;  
}


.back-to-top.show {
  opacity: 0.9;                /* visible when scrolled down */
  pointer-events: auto;        /* enable clicking */
}

.back-to-top:hover {
  transform: scale(1.05);
  opacity: 1;
  background: #3f22ec;
}






/* ======================= Story Booth ======================= */
.storybooth-images {
  display: flex;
  justify-content: center;
  gap: 1rem;

  max-width: 1500px;   
  margin: 1rem;     
}

.storybooth-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  flex-wrap: wrap; 
  margin: 0 0 3rem 0;
}

.storybooth {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
  margin: 1rem;
  text-align: center; 
  padding-bottom: 1rem;     
}

.storybooth-pdf a:hover,
.storybooth-pdf a:focus-visible {
  color: #FF4AB3;
}
  
@media (max-width: 768px) {
.storybooth-images {
    flex-direction: column;
    align-items: center;
    margin: 1rem;
  }

.storybooth-images img {
    width: 90%; 
    margin: 0 0 1rem 0;
  }
}