/* ==========================================================================
 * File: style.css
 * Author: SEHS4517 - Group 102 - Group No.1 Team
 * Description: Main styles for the entire website
 * ========================================================================== */


/* ==========================================================================
 * 1. Font Imports
 * ========================================================================== */

@font-face {
  font-family: 'Carattere';
  src: url('/assets/fonts/Carattere-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Oranienbaum';
  src: url('/assets/fonts/Oranienbaum-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Google Sans Flex';
  src: url('/assets/fonts/GoogleSansFlex-VariableFont_GRAD,ROND,opsz,slnt,wdth,wght.ttf') format('truetype');
  font-weight: 300 400 500 600 700;
}


/* ==========================================================================
 * 2. Root Variables
 * ========================================================================== */

:root {
  --primary-color: #21130d;
  --accent-color: #DAA651;
  --accent-color-rgb: 218, 166, 81;
  --brand-color: #203129;
  --brand-color-rgb: 32, 49, 41;
  --brand-color-light: #324939;
  --brand-color-super-light: #52816b;
  --brand-color-super-light-rgb: 82, 129, 107;
  --background-color: #121212;
  --border-color: #ebebeb;
  --text-color: #666;
  --font-family: 'Google Sans Flex', sans-serif;
  --font-size-base: 16px;
  --container-width: 1200px;
  --brand-box-shadow: 0 10px 20px 0 rgb(32, 49, 41, 0.05);
}


/* ==========================================================================
 * 3. Base Styles & Element Normalization
 * ========================================================================== */

* {
  box-sizing: border-box;
  font-family: var(--font-family);
}

html,
body {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: var(--font-size-base);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
  background-color: var(--brand-color);
}

form {
  margin: 0;
}

a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  outline: none;
}

ul {
  margin-bottom: 20px;
  margin-top: 10px;
  margin-left: 0;
  padding-left: 30px;
}

ul li {
  margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Oranienbaum', sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

img {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-block;
}

p {
  line-height: 1.5;
  font-size: 1rem;
  margin: 0;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
  display: block;
  width: 100%;
  height: 40px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid var(--brand-color-light);
}

hr {
  border: none;
  margin: 20px 0;
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0.2);
}


/* ==========================================================================
 * 4. Layout Components
 * ========================================================================== */

/* Container
 * -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}


/* ==========================================================================
 * 5. Header
 * ========================================================================== */

header {
  position: fixed !important;
}

header {
  position: relative;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  transition: all 0.3s ease-out;
}

header .logo {
  display: flex;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

header .logo a {
  height: 40px;
}

header .logo a img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease-in-out;
}

header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

header .menu a {
  line-height: 1;
  font-family: 'Oranienbaum', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 15px;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

header .menu a:hover {
  color: var(--accent-color);
}

header .menu a:hover:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-color), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  animation: underline 0.5s ease-in-out forwards;
}

header .menu .menu-item svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

header .menu .menu-item:hover svg {
  fill: var(--accent-color);
}

header.sticky {
  position: fixed;
  backdrop-filter: blur(8px);
  background: rgb(32, 49, 41, 0.6);
  padding: 17px 20px;
}

header.sticky .logo a,
header.sticky .logo a img {
  height: 50px;
}

header .mobile-menu-toggle {
  display: none;
}


/* ==========================================================================
 * 6. Mobile Menu
 * ========================================================================== */

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
  opacity: 1;
  z-index: 9997;
}

.mobile-menu-wrapper {
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
  display: flex;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(to bottom, var(--brand-color) 0%, var(--brand-color-super-light) 100%);
  z-index: 9998;
  flex-direction: column;
}

.mobile-menu-wrapper .mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.mobile-menu-wrapper .mobile-menu-close svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

.mobile-menu-wrapper .mobile-menu-logo {
  padding: 20px;
  text-align: center;
}

.mobile-menu-wrapper .mobile-menu-logo a img {
  height: 100px;
}

.mobile-menu-wrapper .mobile-menu {
  width: 100%;
  margin-top: 0px;
}

.mobile-menu-wrapper .mobile-menu .mobile-menu-item {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-wrapper .mobile-menu .mobile-menu-item a {
  font-size: 24px;
  font-family: 'Oranienbaum', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
}

.mobile-menu-wrapper .mobile-menu .mobile-menu-item a:hover {
  background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.2));
}

.mobile-menu-wrapper .mobile-menu .mobile-menu-item a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.mobile-menu-wrapper.active {
  transform: translateX(0);
}

.mobile-menu-toggle {
  height: 36px;
  width: 36px;
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}


/* ==========================================================================
 * 7. Footer
 * ========================================================================== */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  text-align: center;
  padding: 40px 20px 20px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.footer-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
}

.footer-area .footer-area-item {
  width: 15%;
}

.footer-area .footer-area-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-area .footer-area-item ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.footer-area .footer-area-item ul li {
  margin-bottom: 10px;
  font-weight: 400;
}

.footer-area .footer-area-item .logo {
  margin-bottom: 20px;
}

.footer-area .footer-area-item .logo a img {
  height: 80px;
}

.footer-area .footer-area-item:first-child {
  width: 30%;
}

.footer-area .footer-area-item:last-child {
  width: 25%;
}

.footer-mobile-area-logo {
  margin-bottom: 20px;
}

.footer-mobile-area-logo a img {
  height: 80px;
}

.footer-accordion ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-accordion .accordion-item-title {
  font-size: 18px;
}

.footer-accordion ul li {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
}

.footer-accordion ul li:last-child {
  margin-bottom: 0;
}

.footer-accordion ul li a {
  color: #000;
}

.footer-accordion ul li a:hover {
  color: var(--accent-color);
}

.footer-mobile-area {
  display: none;
}


/* ==========================================================================
 * 8. Sections
 * ========================================================================== */

/* Section Header
 * -------------------------------------------------------------------------- */

.section-header {
  height: 350px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px 20px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.section-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-color) 0%, transparent 100%);
}

.section-header h2 {
  position: relative;
  text-shadow: 0px 10px 20px rgba(0, 0, 0, 1);
}

/* Section Title
 * -------------------------------------------------------------------------- */

.section-title {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Oranienbaum', sans-serif;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent-color) 0%, transparent 20%);
  position: absolute;
  bottom: 0;
  left: 0;
  animation: underline 0.5s ease-in-out forwards;
}

/* Section Hero
 * -------------------------------------------------------------------------- */

.section-hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Section Members
 * -------------------------------------------------------------------------- */

.section-members {
  padding: 0px;
}

.section-members {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 90px 20px;
}

/* Section Rooms
 * -------------------------------------------------------------------------- */

.section-rooms {
  padding: 90px 20px;
}

/* Section Reservation
 * -------------------------------------------------------------------------- */

.section-reservation {
  position: relative;
  z-index: 4;
  margin-top: -250px;
  padding: 60px 20px;
}

/* Section FAQ
 * -------------------------------------------------------------------------- */

.section-faq {
  background-image: url('/assets/images/faq-right.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 40px;
  position: relative;
}

.section-faq:before {
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-faq > * {
  position: relative;
  z-index: 1;
}

/* Section Login
 * -------------------------------------------------------------------------- */

.section-login {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section 404
 * -------------------------------------------------------------------------- */

.section-404 {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.section-404:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/bg-pattern.jpg');
  opacity: 0.03;
}

.section-404 .logo {
  margin-bottom: 20px;
}

.section-404 .logo a img {
  height: 100px;
}

.section-404 h1 {
  font-size: 120px;
  font-weight: 700;
  font-family: 'Oranienbaum', sans-serif;
  color: var(--accent-color);
}

/* Section Thank You
 * -------------------------------------------------------------------------- */

.section-thankyou {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
}


/* ==========================================================================
 * 9. Buttons
 * ========================================================================== */

.button {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50px;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.button:hover {
  background-color: var(--accent-color);
  color: var(--brand-color);
  border: 1px solid var(--accent-color);
}

.button.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.button-outline:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--brand-color);
}


/* ==========================================================================
 * 10. Hero Slider
 * ========================================================================== */

.slogan {
  position: absolute;
  height: 100vh;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 72px;
  line-height: 1.2;
  font-weight: 500;
  padding: 20px;
  top: -80px;
  left: 0;
  font-family: 'Oranienbaum', sans-serif;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

#hero-slider-1::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-color) 0%, transparent 30%, var(--brand-color) 100%);
}


/* ==========================================================================
 * 11. Page Loading
 * ========================================================================== */

.page-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brand-color);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/bg-pattern.jpg');
  filter: grayscale(100%);
  opacity: 0.03;
}

.page-loading .page-loading-icon img {
  height: 120px;
  animation: fade-in 1s ease-in-out;
  animation-fill-mode: forwards;
}


/* ==========================================================================
 * 12. Rooms
 * ========================================================================== */

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-item {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  opacity: 0;
}

.room-item:nth-child(1) {
  animation-delay: 1.5s;
}

.room-item:nth-child(2) {
  animation-delay: 1.7s;
}

.room-item:nth-child(3) {
  animation-delay: 1.9s;
}

.room-item:nth-child(4) {
  animation-delay: 2.1s;
}

.room-item:nth-child(5) {
  animation-delay: 2.3s;
}

.room-item:nth-child(6) {
  animation-delay: 2.5s;
}

.room-item .room-img {
  overflow: hidden;
  height: 250px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.room-item .room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.3s ease-in-out;
  filter: grayscale(60%);
}

.room-item:hover .room-img img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.room-item .room-content {
  padding: 20px;
}

.room-item .room-content .room-title {
  font-size: 30px;
  letter-spacing: 0px;
  font-weight: 600;
  font-family: 'Oranienbaum', sans-serif;
  color: var(--brand-color);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.room-item:hover .room-content .room-title {
  color: var(--accent-color);
}

.room-item .room-content .room-description {
  font-size: 14px;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
}

.room-item .room-content .room-bottom-information {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
}

.room-item .room-size {
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: var(--brand-color-super-light);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.room-item .room-content .room-price {
  font-size: 30px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: 'Oranienbaum', sans-serif;
  text-transform: uppercase;
  margin-top: 10px;
  text-align: right;
}

.room-item .room-content .room-price .room-price-unit {
  font-size: 14px;
  color: var(--brand-color-light);
  font-family: 'Oranienbaum', sans-serif;
  text-transform: uppercase;
}


/* ==========================================================================
 * 13. Member Information
 * ========================================================================== */

.member-information {
  display: flex;
  flex-direction: row;
  background-image: url('/assets/images/member-information-left.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 800px;
  position: relative;
}

.member-information:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, var(--brand-color) 60%, var(--brand-color) 100%);
}

.member-information .member-information-left {
  width: 50%;
}

.member-information .member-information-right {
  position: relative;
  width: 50%;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.member-information .member-information-right h3 {
  color: #fff;
  font-size: 42px;
  text-transform: uppercase;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
}

.member-benefits-accordion {
  margin-top: 10px;
  margin-bottom: 20px;
}


/* ==========================================================================
 * 14. Forms
 * ========================================================================== */

.form-group {
  width: 100%;
}

.form-group label {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.form-group label .form-hint {
  font-weight: 400;
  color: #999;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-error {
  display: block;
  padding: 15px 20px;
  color: red;
  border-left: 4px solid red;
  margin-bottom: 20px;
  background-color: #fafafa;
  font-size: 14px;
}

.form-error p {
  margin: 0 0 15px 0;
}

.form-error .button-back-home {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--brand-color);
  border: 1px solid var(--brand-color);
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.form-error .button-back-home:hover {
  background-color: var(--brand-color-light);
}

.no-account-reminder {
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 4px solid var(--accent-color);
  background-color: #fafafa;
  padding: 15px 20px;
}

.no-account-reminder a {
  color: var(--accent-color);
  font-weight: 700;
}


/* ==========================================================================
 * 15. Login / Register
 * ========================================================================== */

.login-left {
  width: 60%;
  display: flex;
  background-image: url('/assets/images/member-information-left.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
}

.login-right {
  width: 40%;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow-y: auto;
}

.login-right:before {
  background: url('/assets/images/bg-pattern.jpg');
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
}

.login-right .logo {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.login-right .logo a {
  margin-bottom: 20px;
}

.login-right .logo a img {
  height: 80px;
}

.login-right .logo h2 {
  text-transform: uppercase;
}

.login-form {
  width: 100%;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  color: var(--brand-color);
  position: relative;
}

.login-form#register-form-success {
  display: none;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form .form-row {
  display: flex;
  gap: 15px;
}

.login-form .form-group-half {
  flex: 1;
}

.login-form .form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.login-form .form-buttons .button {
  flex: 1;
}

.login-form label .required {
  color: #e74c3c;
  font-weight: 700;
}

.login-form-submit {
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  background-color: var(--accent-color);
  color: #fff;
  border: 1px solid var(--accent-color);
  cursor: pointer;
}

.login-form-submit:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.login-form-reset {
  border: 1px solid var(--border-color);
  color: #000;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
}

.login-form-reset:hover {
  background-color: #ebebeb;
  border: 1px solid #ebebeb;
}

.login-back-to-home {
  text-align: center;
  margin-top: 20px;
  position: relative;
}


/* ==========================================================================
 * 16. Icon Cards
 * ========================================================================== */

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #000;
}

.icon-card .icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-card .icon svg {
  width: auto;
  height: 50px;
  fill: var(--brand-color);
}

.icon-card .title {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}


/* ==========================================================================
 * 17. Thank You Page
 * ========================================================================== */

.thankyou-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.thankyou-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thankyou-background::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--brand-color) 0%, transparent 30%, var(--brand-color) 100%);
}

.thankyou-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  color: var(--brand-color);
  animation: fade-up-appear 0.8s ease-out forwards;
}

.thankyou-header {
  text-align: center;
  margin-bottom: 30px;
}

.thankyou-header h1 {
  font-size: 48px;
  font-family: 'Oranienbaum', sans-serif;
  color: var(--brand-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.thankyou-header h1:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--accent-color) 0%, transparent 100%);
  position: absolute;
  bottom: -10px;
  left: 0;
}

.thankyou-message {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.reservation-details {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.reservation-details h2 {
  font-size: 24px;
  font-family: 'Oranienbaum', sans-serif;
  color: var(--brand-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-color);
}

.thankyou-actions {
  text-align: center;
}

.btn-ok {
  background: var(--brand-color-super-light);
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-ok:hover {
  background: var(--accent-color);
  color: var(--brand-color);
}


/* ==========================================================================
 * 18. FAQ
 * ========================================================================== */

.faq-right {
  display: flex;
  background-image: url('/assets/images/faq-right.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
}


/* ==========================================================================
 * 19. Number Input
 * ========================================================================== */

.number-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 50px;
}

.number-input-wrapper input {
  border: none;
  background: none;
  width: calc(100% - 70px);
  height: 35px;
  text-align: center;
  -moz-appearance: textfield;
}

.number-input-wrapper input::-webkit-outer-spin-button,
.number-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.number-input-wrapper button {
  border: none;
  background: #666;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
}

.number-input-wrapper button:hover {
  background: var(--accent-color);
}

.number-input-wrapper button svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}


/* ==========================================================================
 * 20. No Appointments Found
 * ========================================================================== */

.no-appointments-found {
  padding: 120px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.no-appointments-found .button {
  margin-top: 20px;
}


/* ==========================================================================
 * 21. Modal Table Styles
 * ========================================================================== */

.modal-confirm-table {
  width: 100%;
  color: #000;
}

.modal-confirm-table tr td:first-child {
  font-weight: bold;
  width: 50%;
  text-align: right;
  padding: 5px 10px;
}

.modal-confirm-table tr td:last-child {
  text-align: left;
  width: 50%;
  padding: 5px 10px;
}


/* ==========================================================================
 * 22. Animations
 * ========================================================================== */

.animate-fade-up-blur {
  animation: fade-up-blur 0.5s ease-in-out forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-up-blur {
  from {
    opacity: 0;
    transform: translateY(80px);
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px);
    filter: blur(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fade-up-appear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underline {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

@keyframes breathing-shadow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(var(--brand-color-super-light-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(var(--brand-color-super-light-rgb), 0.8), 0 0 30px rgba(var(--brand-color-super-light-rgb), 0.4);
  }
}

@keyframes subtle-move {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-20px, -20px) scale(1.1);
  }
}


/* ==========================================================================
 * 23. About Page Styles
 * ========================================================================== */

/* About Intro
 * -------------------------------------------------------------------------- */

.about-intro {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-color-light) 100%);
  position: relative;
}

.about-intro:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/bg-pattern.jpg');
  opacity: 0.05;
}

.about-intro-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.about-intro-content .lead-text {
  font-size: 22px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 500;
}

.about-intro-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

/* About Features
 * -------------------------------------------------------------------------- */

.about-features {
  padding: 90px 20px;
  background-color: rgba(0, 0, 0, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
}

.feature-item:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
  animation-delay: 0.8s;
}

.feature-item:nth-child(5) {
  animation-delay: 1s;
}

.feature-item:nth-child(6) {
  animation-delay: 1.2s;
}

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--brand-color-super-light));
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 45px;
  height: 45px;
  fill: #fff;
}

.feature-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--accent-color);
  font-family: 'Oranienbaum', sans-serif;
}

.feature-item p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* About Story
 * -------------------------------------------------------------------------- */

.about-story {
  padding: 90px 20px;
  background-color: var(--brand-color);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-left h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.story-left p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.story-right .story-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.story-right .story-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--accent-color-rgb), 0.3), transparent);
  z-index: 1;
}

.story-right .story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease-in-out;
}

.story-right .story-image:hover img {
  transform: scale(1.05);
}

/* About Stats
 * -------------------------------------------------------------------------- */

.about-stats {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--brand-color-super-light), var(--brand-color-light));
  position: relative;
}

.about-stats:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/bg-pattern.jpg');
  opacity: 0.05;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 2px solid rgba(var(--accent-color-rgb), 0.3);
  transition: all 0.3s ease-in-out;
}

.stat-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  font-family: 'Oranienbaum', sans-serif;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Values
 * -------------------------------------------------------------------------- */

.about-values {
  padding: 90px 20px;
  background-color: rgba(0, 0, 0, 0.15);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.value-item {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 10px 10px 0;
  transition: all 0.3s ease-in-out;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--accent-color);
  font-family: 'Oranienbaum', sans-serif;
}

.value-item p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

/* About CTA
 * -------------------------------------------------------------------------- */

.about-cta {
  padding: 90px 20px;
  background: linear-gradient(135deg, var(--brand-color), var(--brand-color-super-light));
  position: relative;
  overflow: hidden;
}

.about-cta:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/bg-pattern.jpg');
  opacity: 0.08;
  animation: subtle-move 30s ease-in-out infinite alternate;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
}

.cta-content p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==========================================================================
 * 24. Appointments Page Styles
 * ========================================================================== */

/* Appointments Intro
 * -------------------------------------------------------------------------- */

.appointments-intro {
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.appointments-intro p {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
}

/* Appointments Container
 * -------------------------------------------------------------------------- */

.appointments-container {
  padding: 60px 20px;
  min-height: 400px;
}

.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Appointment Card
 * -------------------------------------------------------------------------- */

.appointment-card {
  display: flex;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.appointment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.appointment-image {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}

.appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.appointment-status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.status-pending {
  background: rgba(255, 193, 7, 0.9);
  color: #000;
}

.status-confirmed {
  background: rgba(76, 175, 80, 0.9);
  color: #fff;
}

.status-cancelled {
  background: rgba(244, 67, 54, 0.9);
  color: #fff;
}

.status-completed {
  background: rgba(158, 158, 158, 0.9);
  color: #fff;
}

.appointment-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.appointment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.appointment-title-section {
  flex: 1;
}

.appointment-room-name {
  font-size: 28px;
  color: var(--brand-color);
  font-family: 'Oranienbaum', sans-serif;
  margin-bottom: 8px;
}

.appointment-booking-id {
  font-size: 14px;
  color: var(--text-color);
  font-family: 'Courier New', monospace;
  margin: 0;
}

.appointment-price-section {
  text-align: right;
}

.appointment-total-price {
  font-size: 32px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: 'Oranienbaum', sans-serif;
  line-height: 1;
  margin-bottom: 5px;
}

.appointment-price-detail {
  font-size: 14px;
  color: var(--text-color);
}

.appointment-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.appointment-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--brand-color-super-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.detail-content {
  flex: 1;
}

.appointment-features {
  padding: 15px 20px;
  background: rgba(var(--brand-color-super-light-rgb), 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: var(--brand-color);
}

.features-label {
  font-weight: 700;
  margin-right: 8px;
}

.features-text {
  font-weight: 400;
}

.appointment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.appointment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-color);
}

.meta-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text-color);
}

/* No Appointments Found (Override)
 * -------------------------------------------------------------------------- */

.no-appointments-found {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
}

.no-appointments-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  opacity: 0.3;
}

.no-appointments-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.no-appointments-found h3 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  font-family: 'Oranienbaum', sans-serif;
}

.no-appointments-found p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
 * 25. Responsive Styles
 * ========================================================================== */

/* Tablet & Mobile (max-width: 768px)
 * -------------------------------------------------------------------------- */

@media (max-width: 768px) {

  /* Header */
  header .logo {
    position: relative;
    left: auto;
    transform: none;
    top: auto;
  }

  header .logo a img {
    height: 70px;
  }

  header .menu {
    display: none;
  }

  header .mobile-menu-toggle {
    display: flex;
  }

  /* Reservation Form */
  .reservation-form-bottom-buttons {
    flex-direction: column;
    position: relative;
    bottom: auto;
    padding: 0;
    left: auto;
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .reservation-form-bottom-buttons .button {
    width: 100%;
  }

  /* Rooms */
  .rooms {
    grid-template-columns: repeat(1, 1fr);
  }

  /* Hero */
  .slogan {
    font-size: 40px;
  }

  /* Member Information */
  .member-information {
    flex-direction: column;
    height: auto;
  }

  .member-information:before {
    background: linear-gradient(to top, var(--brand-color) 20%, transparent 100%);
  }

  .member-information .member-information-left {
    width: 100%;
    padding-top: 200px;
  }

  .member-information .member-information-right {
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-bottom: 60px;
  }

  /* Login */
  .section-login {
    flex-direction: column;
  }

  .login-left {
    display: none;
  }

  .login-right {
    width: 100%;
    height: 100dvh;
    padding: 20px;
    justify-content: flex-start;
  }

  /* Sections */
  .section-rooms {
    padding: 40px 20px;
  }

  .section-members {
    padding: 0px;
  }

  .section-reservation {
    padding: 40px 20px;
  }

  /* Thank You */
  .section-thankyou {
    padding: 80px 15px 40px;
  }

  .thankyou-content {
    padding: 25px;
  }

  .thankyou-header h1 {
    font-size: 36px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .section-faq {
    padding: 60px 20px;
  }

  /* Footer */
  .footer-area {
    display: none;
  }

  .footer-mobile-area {
    display: block;
  }

  /* About Page */
  .about-intro {
    padding: 60px 20px;
  }

  .about-intro-content h2 {
    font-size: 32px;
  }

  .about-intro-content .lead-text {
    font-size: 18px;
  }

  .about-intro-content p {
    font-size: 16px;
  }

  .about-features {
    padding: 60px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-story {
    padding: 60px 20px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-left h2 {
    font-size: 32px;
  }

  .story-right .story-image img {
    height: 300px;
  }

  .about-stats {
    padding: 60px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-label {
    font-size: 14px;
  }

  .about-values {
    padding: 60px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-item {
    padding: 30px 20px;
  }

  .value-item h3 {
    font-size: 24px;
  }

  .about-cta {
    padding: 60px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons .button {
    width: 100%;
  }

  /* Appointments Page */
  .appointments-intro {
    padding: 30px 20px;
  }

  .appointments-intro p {
    font-size: 16px;
  }

  .appointments-container {
    padding: 40px 20px;
  }

  .appointment-card {
    flex-direction: column;
  }

  .appointment-image {
    width: 100%;
    height: 220px;
  }

  .appointment-content {
    padding: 20px;
  }

  .appointment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .appointment-room-name {
    font-size: 24px;
  }

  .appointment-price-section {
    text-align: left;
  }

  .appointment-total-price {
    font-size: 28px;
  }

  .appointment-details-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .no-appointments-icon {
    width: 80px;
    height: 80px;
  }

  .no-appointments-found h3 {
    font-size: 24px;
  }

  .no-appointments-found p {
    font-size: 16px;
  }
}

/* Small Mobile (max-width: 480px)
 * -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  /* Add small mobile specific styles here if needed */
}
