
/*Nav Bar*/

#navbar .container {
    min-height: 72px;
}

#navbar a {
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    #navbar .lg\:flex {
        display: none !important;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 21, 0.98);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-menu-close {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;

    padding: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;

    text-shadow: 0 0 6px rgba(255,255,255,0.15);

    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
    transform: scale(1.15);
    color: #c5a059;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem;
}

.mobile-menu-content a {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #c5a059;
}

.mobile-menu-content button {
    margin-top: 3rem;
    align-self: flex-start;
    padding: 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: rgba(255, 255, 255, 0.95);
    background: transparent;

    font-size: 0.7rem;
    letter-spacing: 0.32em;
    font-weight: 600;
    text-transform: uppercase;

    box-shadow: inset 0 0 0 0 rgba(197,160,89,0.3);

    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-content button:hover,
.mobile-menu-content button:active {
    background: #c5a059;
    border-color: #c5a059;
    color: #0f1115;

    box-shadow: inset 0 0 0 100px rgba(197,160,89,0.15);
}

.mobile-menu-content a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #c5a059;
    margin-top: 0.75rem;
    transition: width 0.4s ease;
}

.mobile-menu-content a:hover::after {
    width: 3rem;
}

.mobile-nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
}

.mobile-nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #c5a059;
    margin-top: 0.75rem;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-link.active::after {
    width: 3rem;
}

.mobile-nav-link.active {
    color: #c5a059;
}


@media (max-width: 768px) {
    .mobile-menu-content a {
        text-shadow: 0 0 1px rgba(255,255,255,0.15);
    }
}

/*line effect*/
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c5a059;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link.active::after {
    width: 100%;
}
.nav-link.active {
    color: #c5a059;
}

/*inquire fill effect*/
.nav-inquire {
    position: relative;
    overflow: hidden;
    transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.nav-inquire::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #c5a059;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.nav-inquire span,
.nav-inquire {
    position: relative;
    z-index: 1;
}

.nav-inquire:hover {
    color: #0f1115;
    border-color: #c5a059;
}

.nav-inquire:hover::before {
    transform: scaleX(1);
}

/*end of nav bar*/



/*footer related*/
.copy-link {
    position: relative;
    cursor: pointer;
}

.copy-link::after {
    content: attr(data-hover);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.copy-link:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}
.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: #c5a059;
}
/*end of footer*/

/*  Amenities Styling  */

.maroon-gradient {
    background:
        radial-gradient(
            circle at 25% 25%,
            rgba(255, 255, 255, 0.04),
            transparent 45%
        ),
        radial-gradient(
            circle at 75% 70%,
            rgba(0, 0, 0, 0.35),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            #5a100f 0%,
            #671311 40%,
            #3e0c0b 100%
        );
}

/* Feature Grid Animations */
.feature-item {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-image-container {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.feature-image-container::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    border-radius: inherit;
}

/* Hover Effect: Text triggers Image enlargement and glow */
.feature-item:hover .feature-image-container {
    transform: scale(1.1);
    z-index: 10;
}

.feature-item:hover .feature-image-container::after {
    opacity: 1;
}

/* Hover Effect: Image triggers Text gold and enlargement */
.feature-image-container:hover ~ .feature-text h3,
.feature-item:hover h3 {
    color: #c5a059;
    transform: scale(1.05);
    transform-origin: left;
}

/* Sustainability Card with Image */
.sustainability-card {
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sustainability-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sustainability-card:hover .sustainability-bg {
    transform: scale(1.1);
}

.sustainability-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.logo {
  height: 4rem;
  margin: 0 auto 2.5rem;
  opacity: 0.6;
  display: block;

  transition:
    transform 0.6s cubic-bezier(.2,.85,.2,1),
    opacity 0.6s cubic-bezier(.2,.85,.2,1),
    filter 0.6s cubic-bezier(.2,.85,.2,1);
}

.logo:hover {
  transform: scale(1.06);
  opacity: 0.85;
  filter:
    drop-shadow(0 0 12px rgba(216, 199, 160, 0.35))
    drop-shadow(0 0 28px rgba(216, 199, 160, 0.18));
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    
    /*get rid of the enlargement hover effect*/
    /*
    .feature-item:hover .feature-image-container {
        transform: none;
    }
    
    .feature-image-container::after {
        display: none;
    }
    */  
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    h1 {
        font-size: 3.5rem !important;
    }

    h2 {
        font-size: 2.25rem !important;
    }

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

    .py-32 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

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


    .sustainability-card {
        height: 280px;
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Section Reveal Effect */
.reveal-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Amenity Cards */
.amenity-card {
    transition: all 0.5s var(--ease);
}

/* Utility for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Placeholder image styling */
img[src*="placeholder"] {
    filter: grayscale(0.5);
    background-color: #f3f4f6;
}
