﻿
/* GOOGLE FONTS */

@font-face 
{
     src:url(../fonts/Quicksand.ttf);   
     font-family:Quicksand;     
}

:root {
    --bs-body-bg: #121317;
    --bs-body-color: #e3e2e7;
    --primary-gold: #d7b865;
    --primary-container: #d4af37;
    --surface-container: #1e1f23;
    --on-surface-variant: #d0c5af;
}

html 
{
    margin:0;
    padding:0;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #000 0%, #121317 50%, #0c0c0c 100%);
    color: var(--bs-body-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Playfair Display', serif;
}
.nav-bottom
{
    display: none;    
}
.navbar {
    background-color: transparent !important;
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: background-color 0.3s ease;
}
.header-box
{
    padding-bottom:10px;
    border-bottom: 1px solid rgba(242, 202, 80, 0.3);
}
.navbar.scrolled {
    background-color: rgba(18, 19, 23, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 202, 80, 0.2);
}
.navbar-brand img
{
    width:100%;
    max-width:200px;
}
.navbar-nav li
{
    margin:0 8px;
}
.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff !important;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}
.book-top
{
    display: flex;
    
}
.book-top a:hover
{
    color:#000;   
}
.bg-home1
{
    background: url(../images/bg01.webp) center center no-repeat;
    background-size: cover;
}
.btn-primary-gold {
    background: url(../images/bg-gold.webp) center center no-repeat;
    background-size: cover;
    color: #241a00;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    background-color: #d7b865;
    transform: translateY(-2px);
    color:#000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #de7211;
    color: #fff;
}

.border-orange {
    border: 1px solid #de7211;
}
.border-gold {
    border: 1px solid #d7b865;
}

#scrollToTop
{
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: url(../images/bg-gold.webp) center center no-repeat;
    background-size: cover;
    color: #000;
    border: none;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
        
#scrollToTop:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6) !important;
        background-color: #f2ca50 !important;
    }
/* Carousel Styles */
.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.5);
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
    padding-top: 80px; /* Offset for the overlaid header on mobile */
}
.carousel-caption h2
{
    font-size:40pt;
}

.page-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 40vh;
    background: url(../images/bg-page.webp) center center no-repeat;
    background-size: cover;
    overflow:hidden;
}
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.page-header > * {
    position: relative;
    z-index: 2;
}
.page-header h1
{
    font-size:40pt;
    text-transform:uppercase;
    margin-top:30px;
}
/* Card Styles */
.luxury-card {
    background: var(--surface-container);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.luxury-card:hover {
    border-color: var(--primary-gold);
}

/* Section Spacing */
section {
    padding: 100px 0;
    overflow:hidden;
}

/* Material Symbols Integration */
.material-symbols-outlined {
    vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Gallery Grid */

#gallery
{
    padding-top:0px;
}
.gallery-box {
    height: auto;
    min-height: 200px;
}
.gallery-box img {
    filter: brightness(1.0);
}
.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.swiper {
    overflow: hidden;
}
.gallerySwiper{
    overflow:hidden;
}

.gallerySwiper .swiper-slide{
    height:auto;
}

.gallery-prev,
.gallery-next{
    width:48px;
    height:48px;
    background:#121317;
    z-index:20;
}

.gallery-prev{
    left:-20px;
}

.gallery-next{
    right:-20px;
}

.slogan-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 150px 0;
    background: url(../images/bg-slogan.webp) center bottom no-repeat fixed;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.slogan-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.slogan-box > * {
    position: relative;
    z-index: 2;
}
.slogan {
    width: 65%;
    float: right;
    overflow: hidden;
}
.slogan-title{
    font-size: 30pt;
    color: #fff;
    font-family: PlayfairDisplay;
    font-style:italic;
}
.slogan-txt{
    font-size: 13pt;
    color: #fff;
    margin-bottom:20px;
}
.slogan a
{
    height: 60px;
    line-height: 56px;
    float: left;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
    position: relative;
    text-decoration:none;
    border: 1px solid #fff;
    padding: 0 30px;
}
.slogan a:hover{
    color: #d7b865;
}

/* Footer */

footer {
    background-color: #000;
}
#footer a {
    color: #fff;
    text-decoration:none;
}
#footer a:hover
{
    color: var(--primary-gold);
}
.footer-link {
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
}

.text-orange
{
    color:#de7211 !important;
}
.text-gold {
    color: var(--primary-gold) !important;
}

.navbar-brand .text-gold {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.logo-bottom img
{
    width:100%;
    max-width:250px;
}
.social-bottom a{
    width:40px;
    height:40px;
    border:1px solid #d7b865;
    color:#d7b865;
    text-decoration:none;
    transition:.3s;
}
.social-bottom a:hover{
    border:1px solid #fff;
    background:#000;
    color:#fff;
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(18, 19, 23, 0.98);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(242, 202, 80, 0.2);
        border-radius: 4px;
    }
}


.social-fix {
  position: fixed;
  gap: 1.5rem;
  bottom: 35%;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.social-fix a {
  justify-content: center;
  border: 1px solid #d7b865;
  gap: 5px;
  display: flex;
  align-items: center;
  color: #d7b865;
  border-radius: 100%;
  animation: pulse 1.5s infinite,
    vibrate 1s infinite,
    expandWidth .8s ease-in-out infinite;
  background: #000;
}

.social-fix a p {
  margin-bottom: 0;
}

.social-fix a:hover {
  color: #d7b865 !important;
  background:#000;
}

#subbar
{
    color:#d7b865;
    cursor:pointer;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #d7b865;
  }

  70% {
    box-shadow: 0 0 0 13px rgb(187 139 195 / 0%);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(187 139 195 / 0%);
  }
}

/* Hieu ung rung */
@keyframes vibrate {

  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(8deg);
  }

  40% {
    transform: rotate(-8deg);
  }

  60% {
    transform: rotate(6deg);
  }

  80% {
    transform: rotate(-6deg);
  }
}


@keyframes expandWidth {

  0%,
  100% {
    height: 40px;
    width: 40px;

  }

  50% {
    width: 44px;
    height: 44px;

    /* adjust as needed */
  }
}

.bottle {
  position: absolute;
  top: -7rem;
  right: 0;
}


.flower-line {
  z-index: 1;
  position: relative;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}



.group-party
{
    padding-top:20px;
    padding-bottom:20px;    
}
.img_hostparty img
{
    margin-top:6px;
    border-radius:30px;
}
.contact_r
{
    background:#fff;
    padding:30px;
    box-shadow: 0px 1px 15px 0px rgb(62 65 159 / 10%);  
}
#form
{
    
    margin:0px auto;
    margin-top: 20px;
    margin-bottom:30px;
}
.txtbox
{
    border: 1px solid #ccc;
    height: 30px;
    width: 90%;
}
.textarea
{
    min-height: 100px;
}
.formrowtop
{
    font-weight: bold;
}
.formrow
{
    margin-bottom: 10px;
}
.buttonrow
{
    text-align: center;
}

.contact-info i
{
    font-size: 15pt;
    text-align:center;
}
#formnotify, #formnotifyS
{
	width: 90%;
	max-width: 400px;
	min-height: 160px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 10px;
	-moz-border-radius: 10px;
	position: fixed;
	top: 20%;
	left: 50%;
	margin-left: -200px;
	padding: 10px;
	text-align: center;
	box-shadow: 2px 2px 5px #666;
	z-index: 99999;
	display: none;
}
#formnotifycontent, #formnotifycontentS
{
	font-size: 12pt;
	color: #666;
	margin-top: 30px;
}
#formnotifyok, #formnotifyokS
{
	margin: 0px auto;
	margin-top: 20px;
	width: 100px;
	height: 35px;
	line-height: 35px;
	color: #fff;
	background: #df811e;
	cursor: pointer;
}
#formsign
{
    margin-top:30px;    
}
#formnotifyok:hover
{
	background: #be3024;
}
#formpwait, #formpwaitS
{
	float: left;
	margin-left: 20px;
	display: none;
}
#formwait
{
    display: none;
}
#maps
{
    padding:50px 0;
}
/*Contact form*/
.services-box
{
    background: url(../images/bg01.webp) center center no-repeat;
    background-size: cover;
    padding:30px 20px 50px 20px;
    border-radius:30px;
    border:3px solid rgba(215, 184, 101, 0.1);
    overflow:hidden;
}

.services-box h4 {
    padding-top: .5rem;
    padding-bottom: .5rem !important;
    margin-bottom: 4rem;
    vertical-align: baseline;
    font-size: 32px;
    color: #fff;
    background-image: linear-gradient(to left, transparent, #de7211, transparent);
}
.services-box img {
    /* box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.2); */
    height: 280px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-top: 5px solid #d7b865;
    border-left: 5px solid #d7b865;
    border-radius: 0 10rem;
    padding: .2rem;
    /* border: 1px solid var(--color7); */
}
.row_svpage
{
    display: flex;
    margin-top: 25px;
    width: 100%;
    cursor: pointer;
}

.row_name
{
    padding-right: 5px;
    font-size:14pt;
    text-transform:capitalize;
    color: #d7b865;
}
.row_dots {
    height: 15px;
    flex: 1;
    border-bottom: 1px dotted #666;
}
.price
{
    color:#d7b865;
    text-transform: none;   
    padding-left: 5px; 
     font-size:14pt;
}
.row_note
{
    color:#999;
    font-size:11pt;     
    margin-top:10px;
    text-transform: none;
    line-height: 25px;
    width: 100%;
    overflow: hidden;
}
.row_note ul
{
    margin-left:10px;
}
.row_note ul li
{
    /*list-style-type:disc;
    margin-left:10px;*/
}

.counter {
    
    width: 100%;
    max-width: 280px;
    margin:0px auto;
    margin-top: 30px;
}
#divCounter
{
    width: 100%; 
    background: #121213; 
    border-radius: 5px;
    border:1px solid rgba(221, 111, 16, 0.5);
    -moz-border-radius: 5px; 
    margin: 0px auto; 
    padding: 15px; 
    color: #fff;
}
.groupfbye 
{
    /*background: url(../images/bg-btn.webp) center center no-repeat;
    background-size: cover;
    height: 145px;
    width: 55px;*/
    top: 38%;
    left: 0;
    position: fixed;
    z-index: 99999999;
    padding: 10px;
    gap: 5px;
    display: flex;
    flex-direction: column;
    /*box-shadow: 0 0 20px rgba(241, 241, 241, 0.4);
    border: 1px solid #d7b865;
    border-radius:0 10px 10px 0;*/
}

.groupfbye a {
    justify-content: center;
    border: 1px solid #d7b865;
    gap: 5px;
    display: flex;
    align-items: center;
    color: #d7b865;
    border-radius: 100%;
    
    background: #000;
    text-decoration:none;
}
.groupfbye a i 
{
    padding: 8px;
    font-size: 14pt;
    color: #d7b865;
}
.line 
{
    /*border-bottom: 1px solid rgba(255,255,255,0.4);
    height: 4px;
    width: 33px;
    text-align: center;
    margin-bottom: 4px;
    margin-top: 4px;*/
}
#book_online
{
    top: 45%;
}
/* icon */
.signup-icon{
    width:35px;
    height:30px;
}

/* shine animation */
.signup-fixed::before{
    content:"";
    position:absolute;
    top:0;
    left:-80%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.8),
        transparent
    );
    transform:skewX(-25deg);
    animation:shine 3s infinite;
}

@keyframes shine{
    0%{left:-80%;}
    100%{left:130%;}
}

/* hover */
.signup-fixed:hover{
    transform:translateY(-50%) scale(1.07);
    box-shadow:0 10px 30px rgba(0,0,0,0.6);
    text-decoration: none;
}



.groupmenu_m
{
    display: none;    
}
#groupnoti
{
     width:100%;
    height:100%;
    position:absolute;
    top:0px;
    z-index:999999999999;
    display:block;
}
#noti
{
    width:100%;
    overflow: hidden;
    max-width:500px;
    margin:0px auto;
    padding:10px;   
    margin-top:130px;
    background: #fff;
    overflow: hidden;
    text-align: center;
}
#noti img
{
    width: 100%;
    border: 1px solid #ccc;
}
#closenoti
{
    width: 100%;
    cursor:pointer;
    margin-bottom:5px;
    color: #404040;
    font-weight: bold;
    text-align:right;
}

#notification
{
    width:100%;
    background-color: #d7b865;
    position: fixed;
    top: 0;
    z-index:9999999;    
    text-align:center;
    color:#000;
    font-weight: bold;
    line-height: 1.5em;
    font-size: 15pt;
    display:none;
    padding: 5px;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif;
    border-bottom: 1px solid #fff;
}
.notificationtop a
{
    color:#d7b865;
    text-decoration:none;    
    background:#fff;
    padding:4px 5px 4px 5px;
    font-size:11pt;
    border-radius:5px;
    -moz-border-radius:5px;
    margin-left:10px;
    cursor:pointer;
}
/* Notification */


@media only screen and (max-width: 768px)
{
    footer
    {
        padding-bottom:80px;
    }
    .carousel-item
    {
        height: 80vh;
        min-height: 500px;
    }
    .btn-primary-gold
    {
        letter-spacing:1px;
        padding:10px 12px;
    }
    .slogan
    {
        width:100%;
        float:none;
    }
    .nav-bottom
    {
        position: fixed;
        bottom: 5px;
        left: 0px;
        right: 0px;
         width: auto;
        z-index: 999;
        display: block;
    }
    .nav-bottom ul
    {
        overflow: hidden;
        width: 100%;
        margin: 0px auto;
        padding: 10px 0px;
        display: flex;
        background: rgba(0,0,0,0.8);
        border-radius: 50px;
        border:1px solid rgba(221, 111, 16, 0.5);
        box-sizing:border-box;
    }
    
    .nav-bottom ul li
    {
        text-align: center;
        list-style-type:none;
        width: 25%;
        padding: 0;
        margin: 0;
    }
    .nav-bottom ul li:hover
    {
        
    }
    .nav-bottom ul li a
    {
        color: #d7b865;
        font-size:11pt;
        text-decoration:none;
    }
    .nav-bottom ul li a span
    {
        display: block;
    }
    #direction_m a
    {
        color:#d7b865;
        cursor: pointer;
    }

    .icon-button i
    {
        background: url(../images/bg-gold.webp) center center no-repeat;
        background-size: cover;
        width: 40px;
        height: 40px;
        border-radius: 50px;    
        color: #000;
        padding-top: 12px;
    }
    .selected {
        color: #abe3a2!important;
        font-weight: 600!important;
        border-top: none!important;
    }
    .carousel-caption h2
    {
        font-size:25pt;
    }
}
@media only screen and (max-width: 500px)
{
    .carousel-caption h2
    {
        font-size:18pt;
    }
    .page-header h1 {
        font-size: 35pt;
    }
}
@media only screen and (max-width: 375px)
{
    .page-header h1 {
        font-size: 30pt;
    }
    .icon-button i
    {
        width: 32px;
        height: 32px;
        padding-top: 10px;
    }
    .nav-bottom ul
    {
        padding:5px 0;
    }
    .nav-bottom ul li a
    {
        font-size:10pt;
    }
}
   