/* Marina Residency Highlight Cards CSS */

/* ===============================
   GLOBAL STYLES
=============================== */

html {
    -webkit-text-size-adjust: 100%;
}

body,
input,
button,
select,
textarea {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* ===============================
   GENERAL SECTIONS
=============================== */

.section {
    padding: 30px 0;
}

/* ===============================
   CARD BASE STYLE
=============================== */

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    transition: 0.3s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: contain !important;
    background: #f8f9fa;
}

/* ===============================
   BUTTONS
=============================== */

.btn-gold {
    background: #c9a96e;
    color: white;
}

/* ===============================
   FOOTER
=============================== */

footer {
    background: #111;
    color: #aaa;
    padding: 20px;
    text-align: center;
}

/* ===============================
   CTA BOX
=============================== */

.cta-box {
    text-align: center;
    padding: 30px 0;
}

/* ===============================
   HIGHLIGHT CARDS
=============================== */

.highlight-card {
    position: relative;
    border: 1px solid #e5e5e5;
    background: #fff;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #c9a96e, #e6c98c);
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 2;
}

.highlight-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 15px;
}

.brand-btn {
    background: linear-gradient(45deg, #c9a96e, #e6c98c);
    border: none;
    color: #000;
    font-weight: 600;
}

.brand-btn:hover {
    background: linear-gradient(45deg, #b89555, #d4b679);
    color: #000;
}

.brand-btn-outline {
    border: 2px solid #c9a96e;
    color: #c9a96e;
    font-weight: 600;
}

.brand-btn-outline:hover {
    background: #c9a96e;
    color: #000;
}

.highlight-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    pointer-events: none;
}

.highlight-card:hover::after {
    left: 120%;
    transition: 0.6s;
}
