/* Premium Bento Grid Styles - Full Screen Banner Revamp */
.custom-bento-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bento-card {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center vertically */
    padding: 0 10%;
    /* Left aligned with breathing room */
    text-decoration: none;
    background-color: #1a1a1a;
    transition: box-shadow 0.4s ease;
}

.bento-card:hover .bento-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: background 0.4s ease;
    pointer-events: none;
}

.bento-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Constrain text width for luxury feel */
}

/* Rest of the typography remains similar but updated for left alignment */
.bento-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 6px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.3);
}

.bento-badge i {
    color: #CAA05C;
    margin-right: 6px;
    font-size: 14px;
}

.bento-title {
    color: #CAA05C;
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 24px;
    margin-top: 0;
    line-height: 1.1;
    font-family: "Cal Sans", Serif;
}

.bento-description {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 32px;
    max-width: 600px;
    font-weight: 300;
}

.bento-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Ensure left alignment */
}

.bento-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    color: #000;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 1px solid #fff;
}

.bento-btn:hover {
    background: #CAA05C;
    color: #fff;
    border-color: #CAA05C;
}

.bento-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.bento-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Responsive constraints */
@media (max-width: 1199px) {
    .bento-title {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .bento-title {
        font-size: 48px;
    }

    .bento-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .bento-card {
        padding: 0 5%;
        height: 100vh;
        min-height: 480px;
    }

    .bento-title {
        font-size: 40px;
    }

    .bento-description {
        font-size: 15px;
    }

    .bento-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .bento-btn {
        width: 100%;
    }
}