/* ===== FONT IMPROVEMENTS ===== */
body {
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-weight: 700;
    letter-spacing: 1px;
}

.section-heading {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn {
    font-weight: 600;
    letter-spacing: 1.2px;
}

/* Improve readability */
p {
    line-height: 1.8;
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ===== ADDITIONAL POLISH ===== */

/* Better focus states */
*:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
}

/* Improve button states */
.btn-gold:active {
    transform: scale(0.98);
}

/* Better image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Smooth all transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improve form aesthetics */
.form-control::placeholder,
.form-select::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Better spacing for sections */
.section-padding {
    padding: 7rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

/* Improve royal package */
.royal-package-box {
    padding: 6rem 3rem;
}

@media (max-width: 768px) {
    .royal-package-box {
        padding: 3rem 2rem;
    }
}

/* Better gallery hover */
.img-fluid {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Improve booking widget */
.booking-widget {
    backdrop-filter: blur(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Better navbar on scroll */
.navbar-custom {
    transition: all 0.3s ease;
}

/* Improve room cards */
.room-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Better price display */
.room-price {
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Improve section titles */
.section-title-sm {
    font-weight: 600;
    letter-spacing: 4px;
}

/* Better hero subtitle */
.hero-subtitle {
    font-weight: 500;
    letter-spacing: 5px;
}

/* Improve amenity cards */
.amenity-title {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Better nearby places */
.nearby-info h5 {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Improve footer */
.footer-dark h5 {
    font-weight: 600;
    letter-spacing: 1px;
}

/* Better loading states */
.spinner-border {
    border-width: 4px;
}

/* Improve contrast */
.text-muted {
    color: #6B7280 !important;
}

/* Better shadows on hover */
.amenity-card:hover,
.room-card:hover,
.nearby-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Smooth page transitions */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Accessibility - Skip to content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-gold);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
