@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .70s ease;
}

html { scroll-behavior: smooth;}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    overflow-x: hidden;
    background: #1E1E1E;
    cursor: default;
}

/* .cursor {
    width: 20px;
    height: 20px;
    border: 1rem solid white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%); 
    z-index: 100;
    pointer-events: none;
    mix-blend-mode:difference;
    transition: all 0.1s ease-out;
} */
/* 
.cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.cursor:hover::after {
    opacity: 1;
} 

.cursor.reveal-grow {
    transform: scale(2); 
}*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #1E1E1E;
}

::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(186,95,75,1) 0%, rgba(247,166,36,1) 100%);
}

/* .reveal:not(.page-title, .page-content){
    position: relative;
    opacity: 0;
    top: 3rem;
    transition: all 0.5s ease-in;
}

.reveal.active {
    top: 0;
    opacity: 1;
} */


header {
    padding: 0 2rem;
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: #1e1e1eaf;
    z-index: 2;
}

/* =============== HEADER =============== */

header nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

header ul li {
    position: relative;
    display: inline-block;
    margin: 1rem;
    cursor: pointer;
}

header ul li a {
    font-size: 1.5rem;
    list-style-type: none;
    text-decoration: none;
    color: #FFE8C2; 
}

header ul li img {
    list-style-type: none;
    text-decoration: none;
    width: 1.5rem;
    height: 1.5rem;
}

header ul li:nth-child(4) a {
    color: #F4B22F;
} 

header ul li:hover {
    transform: translateY(-3px);
    transition: all .70s ease;
}

header ul li a:hover,
header ul li a:focus {
    cursor: pointer;
    opacity: 70%;
} 

header ul li a .popup-text {
    display: none;
    position: absolute;
    left: -1rem;
    bottom: -2.5rem;
    background-color: #1E1E1E;
    color: #FFE8C2;
    white-space: nowrap;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;    
}

header ul li a:hover .popup-text {
    display: block;
}


/* =============== CHATBOX POP UP =============== */

.open-button {
    background-color: #F4B22F;
    box-shadow: 0 0 20px #1e1e1e67;
    color: #1E1E1E;
    border-radius: 50%;
    font-size: 2rem;
    margin: 3rem 3rem;
    padding: 0.40em 0.5em;
    border: none;
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: none;
    z-index: 2;
    transition: transform 0.3s ease-out;
}

.open-button:hover {
    transform: scale(1.1);
}

  /* The popup chat - hidden by default */
.chat-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 3;
    transition: bottom 0.3s ease-out;
}
  
  /* Add styles to the form container */
.form-container {
    min-width: 300px;
    background-color: #F4B22F;
    box-shadow: 0 0 20px #1e1e1e67;
    color: #FFE8C2;
    border-radius: 10px 10px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
  
  /* Full-width textarea */
.form-container textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background: #FFE8C2;
    resize: none;
    min-height: 200px;
}

  
  /* When the textarea gets focus, do something */
.form-container textarea:focus {
    background-color: #ddd;
    outline: none;
}
  
  /* Set a style for the submit/send button */
.form-container .btn {
    color: #1E1E1E;
    background-color: #FFE8C2;
    border-radius: 10px;
    font-size: 0.8rem;
    padding: 0.8em;
    margin: 1em;
    border: none;
    cursor: pointer;
}
  
  /* Add a red background color to the cancel button */
.form-container .cancel {
    align-self: flex-end;
}

.form-container .send {
    padding: 0.8em 5em;
    align-self: center;
}
  
  /* Add some hover effects to buttons */
.form-container .btn:hover {
    box-shadow: 0 5px 5px #1e1e1e67;

}

/* =============== FOOTER =============== */

footer {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #1E1E1E;
    color: #FFE8C2;
    box-sizing: border-box;
    width: 100%;
    min-height: 40vh;
    padding: 2rem 3rem;
    bottom: 0;
}

.footer-content {
    display: flex;
    width: 100%;
}

.footer-left, 
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
}

.footer-left {
    display: flex;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    align-items: flex-end;
}

.footer-left div {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-left i {
    padding-right: 1rem;
}

.footer-right {
    align-items: center;
    justify-content: center;
}

.footer-right img {
    max-width: 50%;
    max-height: 100%;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
}


/* =============== MAIN =============== */

 main {
    position: relative;
    background: linear-gradient(0deg, rgba(247,166,36,1)  0%, rgba(186,95,75,1) 46%,rgba(80,88,152,1) 100%);
    min-height: 91vh;
    margin: 0 0 50vh 0;
    padding: 0 2rem;
    border-radius: 0 0 40px 40px;
}

.page-title {
    text-align: center;
    letter-spacing: 5px;
    font-size: 2rem;
    padding-top: 4rem;
    color: #FFE8C2;
}

.page-content {
    text-align: center;
    font-size: 20px;
    padding-top: 1rem;
    color: #FFE8C2;
}


.ri-calendar-2-line{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color: #d4a6003e;
    box-shadow: 0 0 30px rgba(189, 173, 48, 0.728);
    color:#fff5e3;
    font-size: 20px;
    border: 1.5px solid #FFE8C2;
    border-radius: 50%;
    margin-right: 30px;
    margin-left: 30px;
    transition: all .70s ease;
    text-decoration: none;
}

.ri-gift-line{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color:transparent;
    color:#FFE8C2;
    font-size: 20px;
    border: 1px solid #FFE8C2;
    border-radius: 50%;
    margin-right: 30px;
    margin-left: 30px;
    transition: all .70s ease;
    text-decoration: none;
}
.ri-gift-line:hover{
    background-color:#FFE8C2;
    color:#35332f;
    font-size: 20px;
    border: 1px solid #f3ce92;
    transform: translateY(-2px);
    transition: all .70s ease;
}

.ri-bank-card-line{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color:transparent;
    color:#FFE8C2;
    font-size: 20px;
    border: 1px solid #FFE8C2;
    border-radius: 50%;
    margin-right: 30px;
    margin-left: 30px;
    transition: transform 0.6s;
    text-decoration: none;
}
.ri-bank-card-line:hover{
    background-color:#FFE8C2;
    color:#35332f;
    font-size: 20px;
    border: 1px solid #f3ce92;
    transform: translateY(-2px);
    transition: all .70s ease;
}

.ri-git-repository-line{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    background-color:transparent;
    color:#FFE8C2;
    font-size: 20px;
    border: 1px solid #FFE8C2;
    border-radius: 50%;
    margin-right: 32px;
    margin-left: 30px;
    transition: transform 0.6s;
    text-decoration: none;
}
.ri-git-repository-line:hover{
    background-color:#FFE8C2;
    color:#35332f;
    font-size: 20px;
    border: 1px solid #f3ce92;
    transform: translateY(-2px);
    transition: all .70s ease;
}

 .stepsbook{
    align-items: center;
    display: flex;
    justify-content: center;
}

.buttoncontainer {
    margin-right: 10%;
    margin-left: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnbook {
    display: inline-block;
    padding: 13px 35px;
    background:#FFE8C2;
    color: #000000fe;
    font-size: 15px;
    font-weight: 600;
    border: 30px;
    border-radius: 30px;
    transition: all .50s ease;
    cursor: pointer;
    text-decoration: none;
    padding: 18px;
}

.btnbook:hover{
    font-weight: 700;
    letter-spacing: 2%;
    border: 1px solid #FFE8C2;
    background: transparent;
    color: #FFE8C2;    
    box-shadow: 0 0 20px rgba(228, 217, 131, 0.728);

}


@media (max-width: 768px) {
    .services-container {
        padding: 3rem 0;
    }
    
    .box {
        width: calc(50% - 1em); /* Adjust width for 2 columns on smaller screens */
    }
}
.calendar-container {
    color: #FFE8C2;
    height: 100px;
    width: auto;
    padding: 20px;
    border-radius: 8px;
    gap: 20px; 
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.calendar-selector {
    display: flex;
    flex-direction: column;
}
label {
    margin-bottom: 5px;
}
select {
    font-family: 'Space Grotesk', sans-serif;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #FFE8C2;
    background-color: #FFE8C2;
}
