html, body {
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(180deg, #2B2A2F 0%, #1a1a1f 50%, #2B2A2F 100%);
    color: #F2E8C9;
    min-height: 100vh;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Garamond', serif;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

a:hover, .btn-link:hover {
    filter: brightness(1.2);
}

.btn-primary {
    color: #2B2A2F;
    background: linear-gradient(135deg, #C8A24A 0%, #E2C872 100%);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(200, 162, 74, 0.2);
    border-radius: 12px;
    padding: 0.65rem 1.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    color: #2B2A2F;
    box-shadow: 0 8px 25px rgba(226, 200, 114, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.2);
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #6F8F7A;
}

.invalid {
    outline: 1px solid #E2C872;
}

.validation-message {
    color: #E2C872;
}

#blazor-error-ui {
    background: linear-gradient(135deg, #C8A24A 0%, #E2C872 100%);
    bottom: 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #2B2A2F;
    border-radius: 0;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: linear-gradient(135deg, rgba(200, 162, 74, 0.15) 0%, rgba(111, 143, 122, 0.08) 100%);
    padding: 1.5rem;
    color: #F2E8C9;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(200, 162, 74, 0.1), inset 0 1px 2px rgba(242, 232, 201, 0.1);
    backdrop-filter: blur(10px);
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
    filter: drop-shadow(0 0 10px rgba(226, 200, 114, 0.2));
}

    .loading-progress circle {
        fill: none;
        stroke: rgba(111, 143, 122, 0.3);
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: url(#gradient);
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
            background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #E2C872;
    background: rgba(79, 107, 90, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

/* Smooth scrolling for sections */
section {
    scroll-margin-top: 3.5rem;
}

/* Container utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Champa Thai Massage Custom Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(200, 162, 74, 0.2) 0%, rgba(111, 143, 122, 0.1) 50%, rgba(79, 107, 90, 0.15) 100%);
    color: #F2E8C9;
    padding: 3rem 2rem;
    /*border-radius: 20px;*/
    margin-bottom: 2rem;
    text-align: center;
    border: none;
    box-shadow: 0 8px 32px rgba(200, 162, 74, 0.1), inset 0 1px 2px rgba(242, 232, 201, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(226, 200, 114, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: subtle-glow 6s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: #F2E8C9;
    position: relative;
    z-index: 1;
}

.card {
    border: none;
    background: linear-gradient(135deg, rgba(43, 42, 47, 0.6) 0%, rgba(79, 107, 90, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(200, 162, 74, 0.08), inset 0 1px 1px rgba(242, 232, 201, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #F2E8C9;
    border-radius: 16px;
}

.card:hover {
    box-shadow: 0 12px 48px rgba(200, 162, 74, 0.15), inset 0 1px 2px rgba(242, 232, 201, 0.12);
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(43, 42, 47, 0.7) 0%, rgba(79, 107, 90, 0.12) 100%);
}

.card-title {
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.card-body {
    color: #F2E8C9;
}

.cta-section {
    background: linear-gradient(135deg, rgba(79, 107, 90, 0.2) 0%, rgba(43, 42, 47, 0.6) 50%, rgba(79, 107, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: none;
    box-shadow: 0 8px 32px rgba(200, 162, 74, 0.08), inset 0 1px 1px rgba(242, 232, 201, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section:hover {
    box-shadow: 0 12px 48px rgba(200, 162, 74, 0.15), inset 0 1px 2px rgba(242, 232, 201, 0.12);
    transform: translateY(-4px);
}

.cta-section h2 {
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: #F2E8C9;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    transition: all 0.3s ease;
    color: #F2E8C9;
}

.nav-link:hover {
    color: #E2C872 !important;
}

.top-row {
    background: linear-gradient(135deg, rgba(43, 42, 47, 0.7) 0%, rgba(79, 107, 90, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: none;
}

/* Location Section Styles */
.location-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(43, 42, 47, 0.6) 0%, rgba(79, 107, 90, 0.08) 100%);
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(242, 232, 201, 0.8);
    margin-bottom: 1.5rem;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location-map {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(200, 162, 74, 0.15);
    border: 2px solid rgba(226, 200, 114, 0.1);
}

.location-info {
    background: linear-gradient(135deg, rgba(43, 42, 47, 0.6) 0%, rgba(79, 107, 90, 0.08) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(200, 162, 74, 0.1), inset 0 1px 2px rgba(242, 232, 201, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #E2C872 0%, #C8A24A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.location-details {
    color: #F2E8C9;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226, 200, 114, 0.15) 0%, rgba(200, 162, 74, 0.1) 100%);
    border-radius: 10px;
    color: #E2C872;
    font-size: 1.25rem;
}

.detail-text {
    flex: 1;
}

.detail-label {
    font-weight: 600;
    color: #E2C872;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: #F2E8C9;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-map {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-heading {
        font-size: 1.5rem;
    }
}
