/* Pink Panther - Luxury Massage Booking System */
/* Inspired by Japanese luxury aesthetic */

:root {
    /* Colors - 100% matching reference site https://the-aroma.site/ */
    --white-color: #ffffff;
    --black-color: #000000;
    --blue-color: #64b4e3;
    --pink-color: #ffc4c4;
    --gold-color: #ffc300;
    --yellow-color: #fcfa44;
    --orange-color: #ff9e8c;
    --gray-color: rgba(98, 98, 98, 1);
    --dark-gray-color: rgba(98, 98, 98, 1);
    --green-color: #04bb02;
    --main-color: var(--black-color);
    --sub-color: var(--white-color);
    --mark-bg-color: #ccbe99;
    --mark-text-color: #544522;
    --dark-gray: #757575;
    --charcoal: #5f5f5f;
    --rich-lavender: #826464;
    --sub-black-color: #6a6a6a;
    --sub-white-color: #a6a6a6;
    --sub-gold-color: #c99c16;

    /* Legacy colors for compatibility */
    --primary-gold: #d4af37;
    --secondary-gold: #f4e5c3;
    --dark-bg: #0a0a0a;
    --dark-bg-2: #1a1a1a;
    --dark-bg-3: #2a2a2a;
    --text-gold: #d4af37;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --border-gold: #d4af37;

    /* Fonts - Optimized for multilingual support */
    --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", sans-serif;
    --header-title-family: "Abhaya Libre", "Microsoft YaHei", "微软雅黑", serif;
    --age-warning-font-family: "Neucha", "Microsoft YaHei", cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--default-font-family);
    color: var(--main-color);
    background: var(--sub-color);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Basic Layout Utilities (replacing Tailwind) */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-16 {
    margin-top: 4rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mr-4 {
    margin-right: 1rem;
}

.text-white {
    color: #ffffff;
}

.my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.block {
    display: block;
}

.hidden {
    display: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.z-50 {
    z-index: 50;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:mt-0 {
        margin-top: 0;
    }

    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }
}

/* Main Container */
main.priority {
    display: block;
    width: 100%;
    margin: 0 auto;
}

/* Header Styles - 100% matching reference site */
header.priority {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 88px;
    background: var(--main-color);
}

header.priority.isOpen {
    position: fixed;
    z-index: 1000;
    background: var(--main-color);
}

header .headerCont {
    max-width: 100%;
    margin: 0 auto;
}

header .headerLeft {
    float: left;
    height: 88px;
    display: table;
    padding: 0 0 0 30px;
}

header .headerRight {
    float: right;
    overflow: visible;
    display: table;
    height: 88px;
    padding: 10px 30px 0 0;
}

header .headerRight .info {
    display: table-cell;
    vertical-align: middle;
    font-size: 20px;
    width: auto;
    padding-left: 15px;
    padding-right: 0;
    text-align: right;
}

header .headerRight .info p {
    padding-top: 5px;
    color: var(--white-color);
    line-height: 17px;
    font-family: var(--default-font-family);
    font-size: 16px;
}

header .headerLogo {
    width: 430px;
    display: table-cell;
    vertical-align: middle;
}

header .headerLogo img {
    height: 80px;
    width: auto;
    display: block;
}

header .logoLink {
    display: block;
}

/* Mobile Menu Button */
.navBar {
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    z-index: 1001;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navBar > div {
    padding: 8px;
}

.navBarItem {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white-color);
    margin: 6px auto;
    transition: all 0.3s;
    pointer-events: none;
}

/* Navigation Styles - 100% matching reference site */
.navPc {
    position: relative;
    top: 0;
    left: 0;
    height: 76px;
    overflow: hidden;
    width: 100%;
    color: var(--sub-white-color);
    z-index: 2;
}

.navPc ul {
    text-align: center;
    background-color: var(--sub-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin: 0;
    padding: 0;
}

.navPc li {
    list-style: none;
}

.navPc .navItem {
    text-align: center;
    display: inline-block;
    width: auto;
    margin: 0 13px;
    font-size: 16px;
}

.navPc .navItem a {
    display: block;
    color: var(--dark-gray-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    padding: 15px 8px;
}

.navPc .navItem a:hover {
    color: var(--sub-black-color);
    font-weight: bold;
}

.navPc .navItem small {
    font-size: 12px;
}

/* Mobile Navigation */
.navSpTb {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--main-color);
    z-index: 9999;
    transition: left 0.3s;
    overflow-y: auto;
}

.navSpTb.isOpen {
    left: 0;
}

.navSpTb ul {
    margin: 0;
    padding: 20px 0;
}

.navSpTb .navItem {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navSpTb .navItem a {
    color: var(--white-color);
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.navSpTb .navItem a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navSpTb .navItem small {
    font-size: 12px;
    opacity: 0.7;
}

/* Utility Classes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.displayNoneLess1023 {
    display: block;
}

.displayNoneMore1023 {
    display: none;
}

@media screen and (max-width: 1023px) {
    .displayNoneLess1023 {
        display: none;
    }

    .displayNoneMore1023 {
        display: block;
    }

    header .headerLogo {
        width: auto;
    }

    header .headerLeft {
        padding: 0 0 0 10px;
    }
}

/* Hero Section - Main View */
.mainView {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    min-height: 660px;
    color: var(--white-color);
    overflow: hidden;
}

.mainViewCont {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
}

.mainViewCont::after {
    content: "";
    background-image: url('/frontpage.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-color: #1a1a1a;
    z-index: -2;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Inner Page Hero (smaller height) */
.innerHero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48vh;
    min-height: 360px;
    color: var(--white-color);
    overflow: hidden;
}

.innerHero::after {
    content: "";
    background-image: url('/frontpage.jpg');
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-color: #1a1a1a;
    z-index: -2;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.innerHero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.35));
    z-index: -1;
    pointer-events: none;
}

.innerHeroContent {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.innerHeroTitle {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin: 0 0 1rem 0;
}

.innerHeroSubtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-top: 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .innerHero {
        height: 32vh;
        min-height: 200px;
    }
    
    .innerHeroTitle {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    .innerHeroSubtitle {
        font-size: 1rem;
    }
    
    /* Flow section mobile layout */
    .stepContent {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        align-items: center !important;
    }
    
    .stepLeft {
        width: 40% !important;
        flex-shrink: 0 !important;
    }
    
    .stepRight {
        width: 60% !important;
        flex: 1 !important;
    }
    
    .stepRight p {
        font-size: 14px !important;
        padding-left: 0 !important;
    }
}

.mainViewInner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* Section Titles */
.sectionTitle {
    padding-top: 0;
    text-align: center;
}

.sectionTitle p {
    font-size: 12px;
    font-family: var(--default-font-family);
    color: var(--gray-color);
}

.sectionTitleTop {
    display: block;
    font-family: var(--header-title-family);
    color: var(--gray-color);
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    line-height: 40px;
    letter-spacing: 5px;
}

.sectionTitleLine {
    position: relative;
    margin-top: 20px;
    padding-bottom: 16px;
}

.sectionTitleLine::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    width: 645px;
    max-width: 90%;
    background-image: linear-gradient(
        90deg,
        rgba(98, 98, 98, 0),
        rgba(98, 98, 98, 1) 50%,
        rgba(98, 98, 98, 0) 100%
    );
}

/* Concept Section */
.conceptSection {
    background: var(--sub-color);
    padding: 50px 0;
}

.concept-items {
    padding: 0 40px;
    margin-top: 50px;
}

.concept-item {
    padding-top: 40px;
}

.concept-item h3 {
    margin: 0 0 24px 0;
    color: var(--gray-color);
    font-size: 20px;
    font-weight: 400;
    position: relative;
    padding-bottom: 8px;
}

.concept-item h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-image: linear-gradient(
        90deg,
        rgba(98, 98, 98, 1),
        rgba(98, 98, 98, 0) 80%,
        rgba(98, 98, 98, 0) 100%
    );
    position: absolute;
    bottom: 0;
    left: 0;
}

.concept-item h3 span:first-child {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    margin-left: 2px;
}

.concept-item h3 span:nth-child(2) {
    font-size: 32px;
    margin: 0 10px 0 5px;
}

.concept-item p {
    font-size: 20px;
    font-family: var(--default-font-family);
    font-weight: 400;
    line-height: 2;
    word-break: auto-phrase;
    color: var(--main-color);
}

/* Flow Section - 100% matching reference site */
.flowView {
    background: var(--sub-color);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.flowViewCont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.flowContent {
    max-width: 960px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0 15px;
    font-size: 12px;
    overflow: hidden;
    padding: 20px 15px 0;
}

.flowContent h3 {
    text-align: center;
    margin-bottom: 16px;
}

.flowContent h3 > span {
    color: rgba(98, 98, 98, 1);
    font-family: 'Yu Mincho', 'Times New Roman', 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 400;
}

.flowContent h3 .main {
    color: rgba(98, 98, 98, 1);
    font-size: 40px;
    font-weight: 400;
}

.divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.divider::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(98, 98, 98, 1);
    margin-bottom: 0;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgba(98, 98, 98, 1);
    margin: 0 auto;
}

.stepContent {
    display: flex;
    padding: 0 10px;
    align-items: center;
    gap: 30px;
}

.stepLeft {
    flex-shrink: 0;
    width: 45%;
}

.stepLeft img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.stepRight {
    flex: 1;
    width: 55%;
}

.stepRight p {
    font-size: 18px !important;
    color: var(--black-color);
    font-family: "Yu Mincho", "Times New Roman", "Noto Serif JP", serif;
    padding-left: 0;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.8px;
}

.sectionDesc {
    text-align: center;
    margin-top: 10px;
}

.sectionDesc p {
    font-size: 12px;
    color: var(--main-color);
    font-family: var(--default-font-family);
}

.pdTop50 {
    padding-top: 50px;
}

.pdBottom50 {
    padding-bottom: 50px;
}

.pdBottom20 {
    padding-bottom: 20px;
}

.textCenter {
    text-align: center;
}

/* Greeting Section */
.greetingSection {
    background: var(--sub-color);
    padding: 50px 0;
}

.greeting-content {
    max-width: 768px;
    margin: 50px auto 0;
    padding: 0 40px;
}

.greeting-content p {
    font-size: 16px;
    font-family: var(--default-font-family);
    line-height: 2;
    color: var(--main-color);
    margin-bottom: 24px;
}

.greeting-signature {
    text-align: right;
    color: #d4af37 !important;
    font-size: 19.2px !important;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 32px !important;
}

/* Therapists Section */
.therapistsSection {
    background: var(--sub-color);
    padding: 50px 0;
}

/* Therapist Cards */
.therapist-card {
    background: var(--dark-bg-2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.therapist-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.therapist-image {
    position: relative;
    overflow: hidden;
    padding-top: 133%;
}

.therapist-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.therapist-card:hover .therapist-image img {
    transform: scale(1.1);
}

.therapist-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 10;
}

.therapist-info {
    padding: 1.5rem;
}

.therapist-name {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.therapist-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.therapist-stats span {
    color: var(--text-gray);
}

.therapist-stats i {
    color: var(--primary-gold);
    margin-right: 5px;
}

.therapist-price {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-gold {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: 2px solid var(--primary-gold);
    padding: 12px 40px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-gold:hover {
    background: transparent;
    color: var(--primary-gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 40px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Flow Steps */
.flow-step {
    background: var(--dark-bg-2);
    border: 2px solid var(--primary-gold);
    padding: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.flow-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.flow-step h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.flow-step p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Services Section */
.service-box {
    background: var(--dark-bg-2);
    border: 1px solid var(--primary-gold);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-box:hover {
    background: var(--dark-bg-3);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.service-title {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.service-duration {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--primary-gold);
    color: var(--text-gray);
}

footer a {
    color: var(--text-gray);
    transition: color 0.3s;
}

footer a:hover {
    color: var(--primary-gold);
}

footer h3 {
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Background Patterns */
.dark-section {
    background: var(--dark-bg);
}

.darker-section {
    background: var(--dark-bg-2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    gap: 3px;
}

.star-rating i {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* Luxury Divider */
.luxury-divider {
    text-align: center;
    margin: 3rem 0;
}

.luxury-divider::before,
.luxury-divider::after {
    content: '';
    display: inline-block;
    width: 100px;
    height: 1px;
    background: var(--primary-gold);
    vertical-align: middle;
}

.luxury-divider i {
    color: var(--primary-gold);
    margin: 0 20px;
    font-size: 1.2rem;
}

/* Mobile Menu */
#mobile-menu {
    background: rgba(0, 0, 0, 0.98);
}

/* Responsive */
@media (max-width: 1023px) {
    .mainView {
        height: 100vh;
        min-height: auto;
    }
}

@media (max-width: 740px) {
    .mainView {
        height: calc(100vh - 55px);
        min-height: auto;
    }

    .mainViewCont::after {
        background-image: url('/background/mobilebg.jpeg');
        background-position: center center;
        background-size: cover;
        background-attachment: scroll;
    }

    .innerHero::after {
        background-image: url('/background/mobilebg.jpeg');
        background-position: center center;
        background-size: cover;
    }
}

@media (max-width: 740px) {
    .sectionTitleLine {
        padding-bottom: 10px;
    }

    .sectionTitleLine::after {
        width: 250px;
    }

    .sectionTitleTop {
        font-size: 27px;
        line-height: 27px;
        letter-spacing: 1px;
        margin-bottom: 0;
    }

    .sectionTitle p {
        font-size: 12px;
        line-height: 12px;
    }

    .concept-items {
        padding: 0 16px;
    }

    .concept-item h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .concept-item h3 span:first-child {
        font-size: 14px;
    }

    .concept-item h3 span:nth-child(2) {
        font-size: 20px;
    }

    .concept-item p {
        font-size: 12px;
    }

    .flowContent h3 > span {
        font-size: 20px;
    }

    .flowContent h3 .main {
        font-size: 30px;
    }

    .stepRight p {
        font-size: 12px !important;
        padding-left: 0 !important;
    }

    .stepContent {
        display: flex !important;
        flex-direction: row !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .stepLeft {
        width: 40% !important;
        flex-shrink: 0 !important;
    }

    .stepRight {
        width: 60% !important;
        flex: 1 !important;
    }
    
    .divider::before {
        display: block !important;
    }

    .greeting-content {
        padding: 0 16px;
    }

    .greeting-content p {
        font-size: 12px;
    }

    .greeting-signature {
        font-size: 14.4px !important;
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* Alert Messages */
.alert-luxury {
    background: var(--dark-bg-2);
    border: 1px solid var(--primary-gold);
    color: var(--text-light);
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Form Styles */
input, textarea, select {
    background: var(--dark-bg-2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-gold);
    background: var(--dark-bg-3);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Override gold borders for booking form date/time inputs */
#booking_date, #booking_time {
    border: 1px solid #d1d5db !important;
}

#booking_date:focus, #booking_time:focus {
    border-color: #ec4899 !important;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2) !important;
}

/* Loading Spinner */
.spinner-gold {
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer Styles */
footer.priority {
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 300px;
    background-color: rgba(78, 78, 78, 0.75);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: lighten;
    position: relative;
    padding-bottom: 20px;
}

footer.priority::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: -1;
}

.scrollUp {
    width: 100%;
    height: 60px;
    background: var(--top-gradient-color);
}

.scrollUp a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.scrollUp a .scrollUpIcon {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
}

.scrollUp a .scrollUpIcon svg {
    width: 100%;
    height: 100%;
}

footer .footerCont {
    padding: 30px 0;
}

footer .footerCont.cont {
    max-width: 1380px;
}

.footerNav {
    overflow: auto;
    width: 100%;
    margin: 0 auto;
}

.footerNav ul {
    overflow: auto;
    font-size: 0;
    text-align: center;
    margin: 0 auto;
    max-width: 760px;
}

.footerNav ul li {
    text-align: center;
    width: auto;
    padding: 0 0px;
    margin: 10px 14px;
    list-style-type: none;
    display: inline-block;
    font-size: 12px;
}

.footerTop .footerNav ul li a {
    font-size: 28px;
    text-decoration: none;
    font-weight: 800;
    line-height: 28px;
    font-family: var(--header-title-family);
    color: var(--white-color);
    transition: color 0.3s;
}

.footerTop .footerNav ul li a:hover {
    color: var(--primary-gold);
}

.footerBottom {
    width: 100%;
    text-align: center;
}

.footerLogo {
    width: 390px;
    padding: 30px 0 15px;
    margin: 0 auto;
    text-align: center;
}

.footerLogo img {
    width: 100%;
    max-width: 176px;
}

.footerLogo .logoLink {
    display: inline-block;
}

@media screen and (max-width: 1023px) {
    footer .footerCont {
        padding: 10px 10px;
    }

    .footerNav ul {
        max-width: 360px;
    }
}

@media screen and (max-width: 740px) {
    footer.priority {
        min-height: 250px;
        height: auto;
        padding-bottom: 20px;
    }

    .scrollUp {
        height: 50px;
    }

    .scrollUp a {
        height: 50px;
    }

    .scrollUp a .scrollUpIcon {
        width: 15px;
        height: 15px;
    }

    .footerNav ul li {
        margin: 5px 5px;
    }

    .footerTop .footerNav ul li a {
        font-size: 14px;
        line-height: 14px;
    }

    .footerLogo {
        width: 290px;
        padding: 15px 0;
    }

    .footerLogo img {
        max-width: 176px;
    }
}

/* Background Image Fallback */
body.bg-fallback .mainViewCont::after,
body.bg-fallback .innerHero::after {
    background-image: none !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%) !important;
}

/* Ensure background images are visible */
.mainViewCont::after,
.innerHero::after {
    will-change: opacity;
}

/* Preload critical background image */
body::before {
    content: '';
    display: none;
    background-image: url('/frontpage.jpg');
}
