:root {
  
  /* --bs-primary-main: #383F51;
  --bs-primary-main:rgb(113,10,13);
  --bs-primary-main:rgb(228,115,65); */
--bs-primary-main:rgb(209, 135, 48);
  --bs-secondary: #fcf3da;
  --bs-primary-dark: rgb(248,214,124);
  --bs-primary-light:rgb(232,207,141); 
  --bs-teritiary: #f8f9fa;
} 

/* :root {
  --bs-primary-main: #af2c4b;
  --bs-secondary: #fcf3da;
  --bs-primary-dark: #8d233c;
  --bs-primary-light:#E46666; 
  --bs-teritiary: #f8f9fa;
} */

.full-height {
    height: 100vh;
    width: 100%;
    /* 100% of the viewport height */
}

svg {
    width: 100%;
    height: 100%;
}

.div_city:hover {
    fill: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    pointer-events: all; 
}

.svg-label-heading text{
  text-align: center;
}

.svg-label-heading text:hover {
    fill: white;  
    font-size: 15px; 
    cursor: pointer;
    pointer-events: all;
}

.svg-label text:hover {
    fill: white;  
    font-size: 15px; 
    cursor: pointer;
    pointer-events: all;
}

.svg-label-right{
  fill:white;
}

.svg-label-right text:hover {
    fill: black;  
    font-size: 15px; 
    cursor: pointer;
    pointer-events: all;
}

.pill_bg{
  background-color: var(--bs-primary-main);
  color: white;
  padding: 5px 5px;
  margin-top: 5px;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
}


/* contactus styles */

/* Modal Content Styling */
.modal-content {
    /* background-color: #F9AD4D; */
    /* background-color: rgb(187, 120, 42); */
    /* background-color:rgb(209, 135, 48); */
    /* background-color:#fcf3da; */
    background-image: url('/Thai_Dancer_Project/images/Sky_night_bg.svg');
    background-size: cover;
    background-position: center;
    color: white;
    border: 2px solid #84442C;
    border-radius: 12px;
    font-family: Arial, sans-serif;
  }
  
  /* Modal Header */
  /* Modal Header with Centered Title and Right-Aligned Close */
.modal-header {
    position: relative;
    border-bottom: 1px solid #84442C;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Centered title */
  .modal-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--bs-primary-main);
    margin: 0 auto;
    text-align: center;
  }
  
  /* Custom Close Button */
  .modal-header .close {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: var(--bs-primary-dark);
    color: white;
    font-size: 24px;
    line-height: 1;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  
  .modal-header .close:hover {
    background-color: #a8543d;
  }
  
  
  /* Close Button */
  .close {
    color: white;
    opacity: 1;
  }
  .close:hover {
    color: var(--bs-primary-dark);
  }
  
  /* Modal Body */
  .modal-body {
    padding: 20px;
  }
  
  /* Form Styles */
  .contact-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
  }
  
  .contact-container input,
  .contact-container textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #84442C;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: white;
    color: #333;
    font-size: 14px;
    font-family: Arial, sans-serif;
  }
  
  .contact-container input:focus,
  .contact-container textarea:focus {
    border-color: #84442C;
    outline: none;
  }
  
  /* Modal Footer */
  .modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #84442C;
    text-align: right;
  }
  
  /* Submit Button */
  .submitbutton {
    background-color: #84442C;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submitbutton:hover {
    background-color: #a8543d;
  }
  
  /*ribbon */
  .ribbon-list {
  list-style: none;
  padding: 0;
  overflow-y: none;
  max-height:400px;
  padding-left: 10px;
}

.ribbon-item {
  position: relative;
  background: var(--bs-primary-main);
  color: white;
  padding: 0.75rem 1.25rem;
  margin: 1rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  width:95%
}

.ribbon-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  background: var(--bs-primary-dark);
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  
}

.ribbon-item::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid var(--bs-primary-main);
  transition: border-left-color 0.3s ease-in-out;
}

.ribbon-item:hover {
  background-color: var(--bs-teritiary);
  color: var(--bs-primary-main);
  transform: scale(1.03);
}

.ribbon-item:hover::after {
  border-left-color: var(--bs-primary-main);
}

.ribbon-item:hover::before {
  background: var(--bs-primary-main);
}


.ribbon-block {
  position: relative;
  background: var(--bs-primary-main);
  color: white;
  padding: 1.25rem 2rem 1.25rem 1.5rem;
  /* right padding increased */
  margin: 1.5rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  transition: all 0.3s ease-in-out;
}

.ribbon-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  background: var(--bs-primary-dark);
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.ribbon-block::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  /* narrower than before */
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1.25rem solid transparent;
  border-bottom: 1.25rem solid transparent;
  border-left: 0.75rem solid var(--bs-primary-main);
  /* narrower ribbon tail */
  transition: border-left-color 0.3s ease-in-out;
}

.ribbon-block:hover {
  background-color: var(--bs-teritiary);
  color:var(--bs-primary-dark);
  transform: scale(1.02);
}

.ribbon-block:hover::after {
  border-left-color: var(--bs-teritiary);
}  
 /*end of ribbon */

 /*alert message box */

 /* Ribbon-styled Bootstrap-like Alert */
.alert-ribbon {
  position: relative;
  background: var(--bs-primary-main);
  color: white;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}

/* Left colored strip */
.alert-ribbon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  background: var(--bs-primary-dark);
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

/* Hover effect */
.alert-ribbon:hover {
  background: var(--bs-teritiary);
  color: #212529;
  transform: scale(1.02);
}

.alert-ribbon:hover::before {
  background: #212529;
}
/*end of alert message box */

/* highlight */

.highlight-quote {
  position: relative;
  font-style: italic;
  background: var(--bs-secondary);
  color: var(--bs-primary-main);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border: 5px solid var(--bs-primary-dark); 
  border-radius: 0.5rem;
  /* border-color: var(--bs-primary-dark); */
}

/* Opening quote */
.highlight-quote::before {
  content: "“";
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  left: 15px;
  top: -15px;
  color: var(--bs-primary-dark);   /* using your primary color */
  font-weight: bold;
  opacity: 0.2;     /* watermark style */
}

/* Closing quote */
.highlight-quote::after {
  content: "”";
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  right: 15px;
  bottom: -25px;
  color: #383F51;   /* same color for consistency */
  font-weight: bold;
  opacity: 0.2;     /* watermark style */
}

.highlight-noquote {
  position: relative;
  font-style: italic;
  background: var(--bs-secondary);
  color: var(--bs-primary-main);
  padding: .5rem .5rem;
  /* margin: 1.5rem 0; */
  border: 5px solid var(--bs-primary-dark); 
  border-radius: 1rem;
  /* border-color: var(--bs-primary-dark); */
}


/* end highlight sign */

.highlight-card {
  background: var(--bs-teritiary);
  border: 1px solid var(--bs-primary-light);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  color: #212529;
  font-weight: 500;
}

.highlight-banner {
  background: linear-gradient(90deg, var(--bs-primary-dark), var(--bs-primary-main));
  color: white;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 22px;
  font-weight: 600;
  border-radius: 0.5rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.highlight-underline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-primary-main);
  padding-bottom: 0.5rem;
  margin: 1.5rem 0;
  border-bottom: 3px solid var(--bs-primary-dark);
}


.hero-image-banner {
  width: 100%;
  height: 60vh;
  background-size: 100% 100%;  /* stretch both directions */
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image {
  width: 100%;
  height: 60vh;
  background-image: url('/Thai_Dancer_Project/images/lordbuddha_banner.jpg');
  background-size: 100% 100%;  /* stretch both directions */
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-nature {
  width: 100%;
  height: 60vh;
  background-image: url('/Thai_Dancer_Project/images/nature_thailand.jpg');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image-wildlife {
  width: 100%;
  height: 60vh;
  background-image: url('/Thai_Dancer_Project/images/elephant_thailand1.jpg');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.naga-left {
  position: absolute;
  top: 10%;                /* vertically center */
  left: 5%;               /* 25% from the left */
  transform: translate(-50%, -50%); /* true center adjustment */
  height:15%;             /* scale image (adjust as needed) */
}

/* Right SVG */
.naga-right {
  position: absolute;
  top: 10%;                
  right: 5%;              /* 25% from the right */
  transform: translate(50%, -50%); 
  height: 15%;             
}


/* Left SVG */
/* for screens with 3 sections*/
.woman-left {
  position: absolute;
  top: 20%;                /* vertically center */
  left: 5%;               /* 25% from the left */
  transform: translate(-50%, -50%); /* true center adjustment */
  height:30%;             /* scale image (adjust as needed) */
}

/* Right SVG */
.woman-right {
  position: absolute;
  top: 20%;                
  right: 5%;              /* 25% from the right */
  transform: translate(50%, -50%); 
  height: 30%;             
}
/* end */

/* for screens with 2 sections*/
.woman-left-20{
  position: absolute;
  top: 25%;                /* vertically center */
  left: 5%;               /* 25% from the left */
  transform: translate(-50%, -50%); /* true center adjustment */
  height:450px;             /* scale image (adjust as needed) */
}

/* Right SVG */
.woman-right-20 {
  position: absolute;
  top: 25%;                
  right: 5%;              /* 25% from the right */
  transform: translate(50%, -50%); 
  height: 450px;             
}
/* end */

/* for screens with 1 sections*/
.woman-left-30{
  position: absolute;
  top: 33%;                /* vertically center */
  left: 5%;               /* 25% from the left */
  transform: translate(-50%, -50%); /* true center adjustment */
  height:450px;             /* scale image (adjust as needed) */
}

/* Right SVG */
.woman-right-30 {
  position: absolute;
  top: 33%;                
  right: 5%;              /* 25% from the right */
  transform: translate(50%, -50%); 
  height: 450px;             
}
/* end */

/* for screens with 12 sections*/
.woman-left-10{
  position: absolute;
  top: 8%;                /* vertically center */
  left: 5%;               /* 25% from the left */
  transform: translate(-50%, -50%); /* true center adjustment */
  height:450px;             /* scale image (adjust as needed) */
}

/* Right SVG */
.woman-right-10 {
  position: absolute;
  top: 8%;                
  right: 5%;              /* 25% from the right */
  transform: translate(50%, -50%); 
  height: 450px;             
}
/* end */
.elephant-left {
  position: absolute;
  top: 10%;                /* vertically center */
  left: 5%;               /* 25% from the left */
  transform: translate(-50%, -50%); /* true center adjustment */
  height:15%;             /* scale image (adjust as needed) */
}

/* Right SVG */
.elephant-right {
  position: absolute;
  top: 10%;                
  right: 5%;              /* 25% from the right */
  transform: translate(50%, -50%); 
  height: 15%;             
}


.cbooking-form-wrapper {
  /* background-color: var(--bs-secondary); */
  /* semi-transparent white */
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  background-color:transparent;
  /* background-image: url('/images/Sky_night_bg.svg'); */
  color:var(--bs-primary-dark);
  border: 1px solid var(--bs-primary-main);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
  margin: 15px;
}

.submitbutton{
  background-color:var(--bs-primary-main);
  color:white;
}

.submitbutton:hover{
  background-color:white;
  color:var(--bs-primary-main);
  border-color:var(--bs-primary-main);
  border-width: 2px;
} 