@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.luxury-serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.luxury-serif-bold {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.luxury-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.luxury-button {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b378 100%);
    color: white;
    border: 1px solid #c9a96e;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.luxury-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.luxury-button:hover::before {
    left: 100%;
}

.luxury-button:hover {
    background: linear-gradient(135deg, #b8925a 0%, #c9a96e 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.luxury-button-outline {
    background: transparent;
    color: #8b7355;
    border: 2px solid #c9a96e;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.luxury-button-outline:hover {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b378 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.luxury-property-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.luxury-property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
}

.luxury-search {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.luxury-search:focus {
    outline: none;
    border-color: #c9a96e;
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.luxury-hero {
    background: linear-gradient(135deg, rgba(249, 247, 243, 0.95) 0%, rgba(245, 240, 235, 0.9) 100%),
        linear-gradient(45deg, #f9f7f3 0%, #f5f0eb 50%, #f9f7f3 100%);
    background-size: cover;
    background-position: center;
    position: relative;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="80" cy="40" r="0.3" fill="rgba(255,255,255,0.01)"/><circle cx="40" cy="80" r="0.4" fill="rgba(255,255,255,0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.luxury-gold {
    color: #c9a96e;
}

.bg-luxury-gold {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b378 100%);
}

.border-luxury-gold {
    border-color: #c9a96e;
}

.text-luxury-gray {
    color: #6b7280;
}

.bg-luxury-light {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.luxury-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c9a96e 50%, transparent 100%);
    margin: 0 auto;
    position: relative;
}

.luxury-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #c9a96e;
    border-radius: 50%;
}

.off-plan-sothebys {
    background: linear-gradient(135deg, #f9f7f3 0%, #f5f0eb 100%);
}

.glass-sothebys {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.luxury-nav-link {
    position: relative;
    color: #8b7355;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-nav-link:hover {
    color: #c9a96e;
}

.luxury-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e, #d4b378);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-nav-link:hover::after {
    width: 100%;
}

.luxury-price {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.luxury-feature-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #c9a96e, #d4b378);
    border-radius: 50%;
    margin-right: 16px;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(201, 169, 110, 0.3);
}

.luxury-tab-active {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b378 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.luxury-tab-inactive {
    background: rgba(255, 255, 255, 0.9);
    color: #8b7355;
    border: 1px solid rgba(201, 169, 110, 0.2);
    backdrop-filter: blur(10px);
}

.luxury-tab-inactive:hover {
    background: rgba(255, 255, 255, 1);
    color: #8b7355;
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.4);
}

.journal-tab-active {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b378 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.journal-tab-inactive {
    background: rgba(255, 255, 255, 0.7);
    color: #8b7355;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.journal-tab-inactive:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #8b7355;
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.4);
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

@keyframes luxury-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes luxury-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 169, 110, 0.6);
    }
}

@keyframes luxury-shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.luxury-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: luxury-shimmer 3s infinite;
}

.luxury-parallax {
    transform: translateZ(0);
    will-change: transform;
}

.luxury-text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.luxury-backdrop-blur {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.luxury-gradient-text {
    background: linear-gradient(135deg, #c9a96e 0%, #d4b378 50%, #e6c589 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.luxury-hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-hover-lift:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.luxury-text-reveal {
    overflow: hidden;
    position: relative;
}

.luxury-text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #f9f7f3 50%, transparent 100%);
    transform: translateX(-100%);
    animation: luxury-text-reveal 2s ease-out;
}

@keyframes luxury-text-reveal {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.luxury-micro-interaction {
    position: relative;
    overflow: hidden;
}

.luxury-micro-interaction::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease-out;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.luxury-micro-interaction:hover::before {
    width: 300px;
    height: 300px;
}

.luxury-stagger-animation {
    animation-delay: calc(var(--stagger-delay, 0) * 0.1s);
}

.luxury-magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-premium-shadow {
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24),
        0 4px 8px rgba(201, 169, 110, 0.1),
        0 8px 16px rgba(201, 169, 110, 0.05);
}

.luxury-premium-shadow:hover {
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.24),
        0 8px 16px rgba(201, 169, 110, 0.15),
        0 16px 32px rgba(201, 169, 110, 0.1);
}

nav ul,
nav li {
    list-style-type: none;
    padding: 0px;
    margin: 0px;

}

.from-luxury-gold {
    color: #3e2723 !important;
}

.from-luxury-gold button {
    background: #d4b37861 !important;
    color: #3e2723 !important;
}

.opportunity-section h2,
.opportunity-section p,
.opportunity-section h3,
.opportunity-section h4,
.opportunity-section .text-gray-900 {
    color: #3e2723 !important;
}

.opportunity-section .to-white .space-y-8 .border-gray-100 {
    background: #d4b37861 !important;
}

#properties h2,
#properties p,
#off-plan h2,
#off-plan p,
#journal h2,
#journal .text-luxury-gray,
#journal h3 {
    color: #3e2723 !important;
}

.luxury-property-card ,  .new-sing  {
background: #e8ddcb !important;
}
.luxury-property-card .bg-white {
background: #e8ddcb !important;
}
.luxury-premium-shadow .justify-center {
flex-wrap: wrap;
    gap: 10px;
}


.luxury-property-card .luxury-serif {
    height: 54px;
      overflow: hidden;
}
.screen-reader-shortcut {
    display:none !important;
}
#off-plan  .text-gray-600 {
      height: 47px;
}

#off-plan h3 {
      height: 54px;
      overflow: hidden;
}

.hot_deal{
    position: fixed;
    bottom: 140px;
    right: 46px;
    z-index: 999;
}

.hot_deal img{
    width: 60px;
    height: auto;
    cursor: pointer;
    animation: zoomInOut 1.5s infinite ease-in-out;
}

@keyframes zoomInOut{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}


/* update css*/

.luxury-divider {
    margin-bottom:0px !important;
}
.post-type-luxury_property #edit-slug-box {
display:none !important;
}
/*#wpadminbar {*/
/*    display:none ;*/
/*}*/

html, body {
    overflow: inherit !important;
}

